Class: Google::Apis::FusiontablesV2::FusiontablesService

Inherits:
Core::BaseService show all
Defined in:
generated/google/apis/fusiontables_v2/service.rb

Overview

Fusion Tables API

API for working with Fusion Tables data.

Examples:

require 'google/apis/fusiontables_v2'

Fusiontables = Google::Apis::FusiontablesV2 # Alias the module
service = Fusiontables::FusiontablesService.new

See Also:

Instance Attribute Summary collapse

Attributes inherited from Core::BaseService

#authorization, #base_path, #batch_path, #client, #client_options, #request_options, #root_url, #upload_path

Instance Method Summary collapse

Methods inherited from Core::BaseService

#batch, #batch_upload, #fetch_all, #http

Methods included from Core::Logging

#logger

Constructor Details

#initializeFusiontablesService

Returns a new instance of FusiontablesService



51
52
53
54
# File 'generated/google/apis/fusiontables_v2/service.rb', line 51

def initialize
  super('https://www.googleapis.com/', 'fusiontables/v2/')
  @batch_path = 'batch'
end

Instance Attribute Details

#keyString

Returns API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.

Returns:

  • (String)

    API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.



38
39
40
# File 'generated/google/apis/fusiontables_v2/service.rb', line 38

def key
  @key
end

#quota_userString

Returns Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

Returns:

  • (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.



44
45
46
# File 'generated/google/apis/fusiontables_v2/service.rb', line 44

def quota_user
  @quota_user
end

#user_ipString

Returns IP address of the site where the request originates. Use this if you want to enforce per-user limits.

Returns:

  • (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.



49
50
51
# File 'generated/google/apis/fusiontables_v2/service.rb', line 49

def user_ip
  @user_ip
end

Instance Method Details

#copy_table(table_id, copy_presentation: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Table

Copies a table.

Parameters:

  • table_id (String)

    ID of the table that is being copied.

  • copy_presentation (Boolean)

    Whether to also copy tabs, styles, and templates. Default is false.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



671
672
673
674
675
676
677
678
679
680
681
# File 'generated/google/apis/fusiontables_v2/service.rb', line 671

def copy_table(table_id, copy_presentation: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:post, 'tables/{tableId}/copy', options)
  command.response_representation = Google::Apis::FusiontablesV2::Table::Representation
  command.response_class = Google::Apis::FusiontablesV2::Table
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['copyPresentation'] = copy_presentation unless copy_presentation.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#delete_column(table_id, column_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... }

This method returns an undefined value.

Deletes the specified column.

Parameters:

  • table_id (String)

    Table from which the column is being deleted.

  • column_id (String)

    Name or identifier for the column being deleted.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

  • result (NilClass)

    No result returned for this method

  • err (StandardError)

    error object if request failed

Raises:



82
83
84
85
86
87
88
89
90
# File 'generated/google/apis/fusiontables_v2/service.rb', line 82

def delete_column(table_id, column_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:delete, 'tables/{tableId}/columns/{columnId}', options)
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['columnId'] = column_id unless column_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#delete_style(table_id, style_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... }

This method returns an undefined value.

Deletes a style.

Parameters:

  • table_id (String)

    Table from which the style is being deleted

  • style_id (Fixnum)

    Identifier (within a table) for the style being deleted

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

  • result (NilClass)

    No result returned for this method

  • err (StandardError)

    error object if request failed

Raises:



436
437
438
439
440
441
442
443
444
# File 'generated/google/apis/fusiontables_v2/service.rb', line 436

def delete_style(table_id, style_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:delete, 'tables/{tableId}/styles/{styleId}', options)
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['styleId'] = style_id unless style_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#delete_table(table_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... }

This method returns an undefined value.

Deletes a table.

Parameters:

  • table_id (String)

    ID of the table to be deleted.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

  • result (NilClass)

    No result returned for this method

  • err (StandardError)

    error object if request failed

Raises:



707
708
709
710
711
712
713
714
# File 'generated/google/apis/fusiontables_v2/service.rb', line 707

def delete_table(table_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:delete, 'tables/{tableId}', options)
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#delete_task(table_id, task_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... }

This method returns an undefined value.

Deletes a specific task by its ID, unless that task has already started running.

Parameters:

  • table_id (String)

    Table from which the task is being deleted.

  • task_id (String)

    The identifier of the task to delete.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

  • result (NilClass)

    No result returned for this method

  • err (StandardError)

    error object if request failed

Raises:



1127
1128
1129
1130
1131
1132
1133
1134
1135
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1127

def delete_task(table_id, task_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:delete, 'tables/{tableId}/tasks/{taskId}', options)
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['taskId'] = task_id unless task_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#delete_template(table_id, template_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... }

This method returns an undefined value.

Deletes a template

Parameters:

  • table_id (String)

    Table from which the template is being deleted

  • template_id (Fixnum)

    Identifier for the template which is being deleted

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

  • result (NilClass)

    No result returned for this method

  • err (StandardError)

    error object if request failed

Raises:



1245
1246
1247
1248
1249
1250
1251
1252
1253
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1245

def delete_template(table_id, template_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:delete, 'tables/{tableId}/templates/{templateId}', options)
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['templateId'] = template_id unless template_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#get_column(table_id, column_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Column

Retrieves a specific column by its ID.

Parameters:

  • table_id (String)

    Table to which the column belongs.

  • column_id (String)

    Name or identifier for the column that is being requested.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



118
119
120
121
122
123
124
125
126
127
128
# File 'generated/google/apis/fusiontables_v2/service.rb', line 118

def get_column(table_id, column_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables/{tableId}/columns/{columnId}', options)
  command.response_representation = Google::Apis::FusiontablesV2::Column::Representation
  command.response_class = Google::Apis::FusiontablesV2::Column
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['columnId'] = column_id unless column_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#get_style(table_id, style_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::StyleSetting

Gets a specific style.

Parameters:

  • table_id (String)

    Table to which the requested style belongs

  • style_id (Fixnum)

    Identifier (integer) for a specific style in a table

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



472
473
474
475
476
477
478
479
480
481
482
# File 'generated/google/apis/fusiontables_v2/service.rb', line 472

def get_style(table_id, style_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables/{tableId}/styles/{styleId}', options)
  command.response_representation = Google::Apis::FusiontablesV2::StyleSetting::Representation
  command.response_class = Google::Apis::FusiontablesV2::StyleSetting
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['styleId'] = style_id unless style_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#get_table(table_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Table

Retrieves a specific table by its ID.

Parameters:

  • table_id (String)

    Identifier for the table being requested.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



740
741
742
743
744
745
746
747
748
749
# File 'generated/google/apis/fusiontables_v2/service.rb', line 740

def get_table(table_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables/{tableId}', options)
  command.response_representation = Google::Apis::FusiontablesV2::Table::Representation
  command.response_class = Google::Apis::FusiontablesV2::Table
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#get_task(table_id, task_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Task

Retrieves a specific task by its ID.

Parameters:

  • table_id (String)

    Table to which the task belongs.

  • task_id (String)

    The identifier of the task to get.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1163

def get_task(table_id, task_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables/{tableId}/tasks/{taskId}', options)
  command.response_representation = Google::Apis::FusiontablesV2::Task::Representation
  command.response_class = Google::Apis::FusiontablesV2::Task
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['taskId'] = task_id unless task_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#get_template(table_id, template_id, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Template

Retrieves a specific template by its id

Parameters:

  • table_id (String)

    Table to which the template belongs

  • template_id (Fixnum)

    Identifier for the template that is being requested

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1281

def get_template(table_id, template_id, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables/{tableId}/templates/{templateId}', options)
  command.response_representation = Google::Apis::FusiontablesV2::Template::Representation
  command.response_class = Google::Apis::FusiontablesV2::Template
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['templateId'] = template_id unless template_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#import_rows(table_id, delimiter: nil, encoding: nil, end_line: nil, is_strict: nil, start_line: nil, fields: nil, quota_user: nil, user_ip: nil, upload_source: nil, content_type: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Import

Imports more rows into a table.

Parameters:

  • table_id (String)

    The table into which new rows are being imported.

  • delimiter (String)

    The delimiter used to separate cell values. This can only consist of a single character. Default is ,.

  • encoding (String)

    The encoding of the content. Default is UTF-8. Use auto-detect if you are unsure of the encoding.

  • end_line (Fixnum)

    The index of the line up to which data will be imported. Default is to import the entire file. If endLine is negative, it is an offset from the end of the file; the imported content will exclude the last endLine lines.

  • is_strict (Boolean)

    Whether the imported CSV must have the same number of values for each row. If false, rows with fewer values will be padded with empty values. Default is true.

  • start_line (Fixnum)

    The index of the first line from which to start importing, inclusive. Default is 0.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • upload_source (IO, String)

    IO stream or filename containing content to upload

  • content_type (String)

    Content type of the uploaded content.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
# File 'generated/google/apis/fusiontables_v2/service.rb', line 796

def import_rows(table_id, delimiter: nil, encoding: nil, end_line: nil, is_strict: nil, start_line: nil, fields: nil, quota_user: nil, user_ip: nil, upload_source: nil, content_type: nil, options: nil, &block)
  if upload_source.nil?
    command =  make_simple_command(:post, 'tables/{tableId}/import', options)
  else
    command = make_upload_command(:post, 'tables/{tableId}/import', options)
    command.upload_source = upload_source
    command.upload_content_type = content_type
  end
  command.response_representation = Google::Apis::FusiontablesV2::Import::Representation
  command.response_class = Google::Apis::FusiontablesV2::Import
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['delimiter'] = delimiter unless delimiter.nil?
  command.query['encoding'] = encoding unless encoding.nil?
  command.query['endLine'] = end_line unless end_line.nil?
  command.query['isStrict'] = is_strict unless is_strict.nil?
  command.query['startLine'] = start_line unless start_line.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#import_table(name, delimiter: nil, encoding: nil, fields: nil, quota_user: nil, user_ip: nil, upload_source: nil, content_type: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Table

Imports a new table.

Parameters:

  • name (String)

    The name to be assigned to the new table.

  • delimiter (String)

    The delimiter used to separate cell values. This can only consist of a single character. Default is ,.

  • encoding (String)

    The encoding of the content. Default is UTF-8. Use auto-detect if you are unsure of the encoding.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • upload_source (IO, String)

    IO stream or filename containing content to upload

  • content_type (String)

    Content type of the uploaded content.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
# File 'generated/google/apis/fusiontables_v2/service.rb', line 852

def import_table(name, delimiter: nil, encoding: nil, fields: nil, quota_user: nil, user_ip: nil, upload_source: nil, content_type: nil, options: nil, &block)
  if upload_source.nil?
    command =  make_simple_command(:post, 'tables/import', options)
  else
    command = make_upload_command(:post, 'tables/import', options)
    command.upload_source = upload_source
    command.upload_content_type = content_type
  end
  command.response_representation = Google::Apis::FusiontablesV2::Table::Representation
  command.response_class = Google::Apis::FusiontablesV2::Table
  command.query['delimiter'] = delimiter unless delimiter.nil?
  command.query['encoding'] = encoding unless encoding.nil?
  command.query['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#insert_column(table_id, column_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Column

Adds a new column to the table.

Parameters:

  • table_id (String)

    Table for which a new column is being added.

  • column_object (Google::Apis::FusiontablesV2::Column) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



155
156
157
158
159
160
161
162
163
164
165
166
# File 'generated/google/apis/fusiontables_v2/service.rb', line 155

def insert_column(table_id, column_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:post, 'tables/{tableId}/columns', options)
  command.request_representation = Google::Apis::FusiontablesV2::Column::Representation
  command.request_object = column_object
  command.response_representation = Google::Apis::FusiontablesV2::Column::Representation
  command.response_class = Google::Apis::FusiontablesV2::Column
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#insert_style(table_id, style_setting_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::StyleSetting

Adds a new style for the table.

Parameters:

  • table_id (String)

    Table for which a new style is being added

  • style_setting_object (Google::Apis::FusiontablesV2::StyleSetting) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



509
510
511
512
513
514
515
516
517
518
519
520
# File 'generated/google/apis/fusiontables_v2/service.rb', line 509

def insert_style(table_id, style_setting_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:post, 'tables/{tableId}/styles', options)
  command.request_representation = Google::Apis::FusiontablesV2::StyleSetting::Representation
  command.request_object = style_setting_object
  command.response_representation = Google::Apis::FusiontablesV2::StyleSetting::Representation
  command.response_class = Google::Apis::FusiontablesV2::StyleSetting
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#insert_table(table_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Table

Creates a new table.

Parameters:

  • table_object (Google::Apis::FusiontablesV2::Table) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



894
895
896
897
898
899
900
901
902
903
904
# File 'generated/google/apis/fusiontables_v2/service.rb', line 894

def insert_table(table_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:post, 'tables', options)
  command.request_representation = Google::Apis::FusiontablesV2::Table::Representation
  command.request_object = table_object
  command.response_representation = Google::Apis::FusiontablesV2::Table::Representation
  command.response_class = Google::Apis::FusiontablesV2::Table
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#insert_template(table_id, template_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Template

Creates a new template for the table.

Parameters:

  • table_id (String)

    Table for which a new template is being created

  • template_object (Google::Apis::FusiontablesV2::Template) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1318

def insert_template(table_id, template_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:post, 'tables/{tableId}/templates', options)
  command.request_representation = Google::Apis::FusiontablesV2::Template::Representation
  command.request_object = template_object
  command.response_representation = Google::Apis::FusiontablesV2::Template::Representation
  command.response_class = Google::Apis::FusiontablesV2::Template
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#list_columns(table_id, max_results: nil, page_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::ColumnList

Retrieves a list of columns.

Parameters:

  • table_id (String)

    Table whose columns are being listed.

  • max_results (Fixnum)

    Maximum number of columns to return. Default is 5.

  • page_token (String)

    Continuation token specifying which result page to return.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



196
197
198
199
200
201
202
203
204
205
206
207
# File 'generated/google/apis/fusiontables_v2/service.rb', line 196

def list_columns(table_id, max_results: nil, page_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables/{tableId}/columns', options)
  command.response_representation = Google::Apis::FusiontablesV2::ColumnList::Representation
  command.response_class = Google::Apis::FusiontablesV2::ColumnList
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['maxResults'] = max_results unless max_results.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#list_styles(table_id, max_results: nil, page_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::StyleSettingList

Retrieves a list of styles.

Parameters:

  • table_id (String)

    Table whose styles are being listed

  • max_results (Fixnum)

    Maximum number of styles to return. Optional. Default is 5.

  • page_token (String)

    Continuation token specifying which result page to return. Optional.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



550
551
552
553
554
555
556
557
558
559
560
561
# File 'generated/google/apis/fusiontables_v2/service.rb', line 550

def list_styles(table_id, max_results: nil, page_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables/{tableId}/styles', options)
  command.response_representation = Google::Apis::FusiontablesV2::StyleSettingList::Representation
  command.response_class = Google::Apis::FusiontablesV2::StyleSettingList
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['maxResults'] = max_results unless max_results.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#list_tables(max_results: nil, page_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::TableList

Retrieves a list of tables a user owns.

Parameters:

  • max_results (Fixnum)

    Maximum number of tables to return. Default is 5.

  • page_token (String)

    Continuation token specifying which result page to return.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



932
933
934
935
936
937
938
939
940
941
942
# File 'generated/google/apis/fusiontables_v2/service.rb', line 932

def list_tables(max_results: nil, page_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables', options)
  command.response_representation = Google::Apis::FusiontablesV2::TableList::Representation
  command.response_class = Google::Apis::FusiontablesV2::TableList
  command.query['maxResults'] = max_results unless max_results.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#list_tasks(table_id, max_results: nil, page_token: nil, start_index: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::TaskList

Retrieves a list of tasks.

Parameters:

  • table_id (String)

    Table whose tasks are being listed.

  • max_results (Fixnum)

    Maximum number of tasks to return. Default is 5.

  • page_token (String)

    Continuation token specifying which result page to return.

  • start_index (Fixnum)

    Index of the first result returned in the current page.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1205

def list_tasks(table_id, max_results: nil, page_token: nil, start_index: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables/{tableId}/tasks', options)
  command.response_representation = Google::Apis::FusiontablesV2::TaskList::Representation
  command.response_class = Google::Apis::FusiontablesV2::TaskList
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['maxResults'] = max_results unless max_results.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['startIndex'] = start_index unless start_index.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#list_templates(table_id, max_results: nil, page_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::TemplateList

Retrieves a list of templates.

Parameters:

  • table_id (String)

    Identifier for the table whose templates are being requested

  • max_results (Fixnum)

    Maximum number of templates to return. Optional. Default is 5.

  • page_token (String)

    Continuation token specifying which results page to return. Optional.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1359

def list_templates(table_id, max_results: nil, page_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'tables/{tableId}/templates', options)
  command.response_representation = Google::Apis::FusiontablesV2::TemplateList::Representation
  command.response_class = Google::Apis::FusiontablesV2::TemplateList
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['maxResults'] = max_results unless max_results.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#patch_column(table_id, column_id, column_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Column

Updates the name or type of an existing column. This method supports patch semantics.

Parameters:

  • table_id (String)

    Table for which the column is being updated.

  • column_id (String)

    Name or identifier for the column that is being updated.

  • column_object (Google::Apis::FusiontablesV2::Column) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



237
238
239
240
241
242
243
244
245
246
247
248
249
# File 'generated/google/apis/fusiontables_v2/service.rb', line 237

def patch_column(table_id, column_id, column_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:patch, 'tables/{tableId}/columns/{columnId}', options)
  command.request_representation = Google::Apis::FusiontablesV2::Column::Representation
  command.request_object = column_object
  command.response_representation = Google::Apis::FusiontablesV2::Column::Representation
  command.response_class = Google::Apis::FusiontablesV2::Column
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['columnId'] = column_id unless column_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#patch_style(table_id, style_id, style_setting_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::StyleSetting

Updates an existing style. This method supports patch semantics.

Parameters:

  • table_id (String)

    Table whose style is being updated.

  • style_id (Fixnum)

    Identifier (within a table) for the style being updated.

  • style_setting_object (Google::Apis::FusiontablesV2::StyleSetting) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



590
591
592
593
594
595
596
597
598
599
600
601
602
# File 'generated/google/apis/fusiontables_v2/service.rb', line 590

def patch_style(table_id, style_id, style_setting_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:patch, 'tables/{tableId}/styles/{styleId}', options)
  command.request_representation = Google::Apis::FusiontablesV2::StyleSetting::Representation
  command.request_object = style_setting_object
  command.response_representation = Google::Apis::FusiontablesV2::StyleSetting::Representation
  command.response_class = Google::Apis::FusiontablesV2::StyleSetting
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['styleId'] = style_id unless style_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#patch_table(table_id, table_object = nil, replace_view_definition: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Table

Updates an existing table. Unless explicitly requested, only the name, description, and attribution will be updated. This method supports patch semantics.

Parameters:

  • table_id (String)

    ID of the table that is being updated.

  • table_object (Google::Apis::FusiontablesV2::Table) (defaults to: nil)
  • replace_view_definition (Boolean)

    Whether the view definition is also updated. The specified view definition replaces the existing one. Only a view can be updated with a new definition.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



974
975
976
977
978
979
980
981
982
983
984
985
986
# File 'generated/google/apis/fusiontables_v2/service.rb', line 974

def patch_table(table_id, table_object = nil, replace_view_definition: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:patch, 'tables/{tableId}', options)
  command.request_representation = Google::Apis::FusiontablesV2::Table::Representation
  command.request_object = table_object
  command.response_representation = Google::Apis::FusiontablesV2::Table::Representation
  command.response_class = Google::Apis::FusiontablesV2::Table
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['replaceViewDefinition'] = replace_view_definition unless replace_view_definition.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#patch_template(table_id, template_id, template_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Template

Updates an existing template. This method supports patch semantics.

Parameters:

  • table_id (String)

    Table to which the updated template belongs

  • template_id (Fixnum)

    Identifier for the template that is being updated

  • template_object (Google::Apis::FusiontablesV2::Template) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1399

def patch_template(table_id, template_id, template_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:patch, 'tables/{tableId}/templates/{templateId}', options)
  command.request_representation = Google::Apis::FusiontablesV2::Template::Representation
  command.request_object = template_object
  command.response_representation = Google::Apis::FusiontablesV2::Template::Representation
  command.response_class = Google::Apis::FusiontablesV2::Template
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['templateId'] = template_id unless template_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#replace_table_rows(table_id, delimiter: nil, encoding: nil, end_line: nil, is_strict: nil, start_line: nil, fields: nil, quota_user: nil, user_ip: nil, upload_source: nil, content_type: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Task

Replaces rows of an existing table. Current rows remain visible until all replacement rows are ready.

Parameters:

  • table_id (String)

    Table whose rows will be replaced.

  • delimiter (String)

    The delimiter used to separate cell values. This can only consist of a single character. Default is ,.

  • encoding (String)

    The encoding of the content. Default is UTF-8. Use 'auto-detect' if you are unsure of the encoding.

  • end_line (Fixnum)

    The index of the line up to which data will be imported. Default is to import the entire file. If endLine is negative, it is an offset from the end of the file; the imported content will exclude the last endLine lines.

  • is_strict (Boolean)

    Whether the imported CSV must have the same number of column values for each row. If true, throws an exception if the CSV does not have the same number of columns. If false, rows with fewer column values will be padded with empty values. Default is true.

  • start_line (Fixnum)

    The index of the first line from which to start importing, inclusive. Default is 0.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • upload_source (IO, String)

    IO stream or filename containing content to upload

  • content_type (String)

    Content type of the uploaded content.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1035

def replace_table_rows(table_id, delimiter: nil, encoding: nil, end_line: nil, is_strict: nil, start_line: nil, fields: nil, quota_user: nil, user_ip: nil, upload_source: nil, content_type: nil, options: nil, &block)
  if upload_source.nil?
    command =  make_simple_command(:post, 'tables/{tableId}/replace', options)
  else
    command = make_upload_command(:post, 'tables/{tableId}/replace', options)
    command.upload_source = upload_source
    command.upload_content_type = content_type
  end
  command.response_representation = Google::Apis::FusiontablesV2::Task::Representation
  command.response_class = Google::Apis::FusiontablesV2::Task
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['delimiter'] = delimiter unless delimiter.nil?
  command.query['encoding'] = encoding unless encoding.nil?
  command.query['endLine'] = end_line unless end_line.nil?
  command.query['isStrict'] = is_strict unless is_strict.nil?
  command.query['startLine'] = start_line unless start_line.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#sql_query(sql, hdrs: nil, typed: nil, fields: nil, quota_user: nil, user_ip: nil, download_dest: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Sqlresponse

Executes a Fusion Tables SQL statement, which can be any of

  • SELECT
  • INSERT
  • UPDATE
  • DELETE
  • SHOW
  • DESCRIBE
  • CREATE statement.

Parameters:

  • sql (String)

    A Fusion Tables SQL statement, which can be any of

    • SELECT
    • INSERT
    • UPDATE
    • DELETE
    • SHOW
    • DESCRIBE
    • CREATE
  • hdrs (Boolean)

    Whether column names are included in the first row. Default is true.

  • typed (Boolean)

    Whether typed values are returned in the (JSON) response: numbers for numeric values and parsed geometries for KML values. Default is true.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • download_dest (IO, String)

    IO stream or filename to receive content download

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
# File 'generated/google/apis/fusiontables_v2/service.rb', line 337

def sql_query(sql, hdrs: nil, typed: nil, fields: nil, quota_user: nil, user_ip: nil, download_dest: nil, options: nil, &block)
  if download_dest.nil?
    command =  make_simple_command(:post, 'query', options)
  else
    command = make_download_command(:post, 'query', options)
    command.download_dest = download_dest
  end
  command.response_representation = Google::Apis::FusiontablesV2::Sqlresponse::Representation
  command.response_class = Google::Apis::FusiontablesV2::Sqlresponse
  command.query['hdrs'] = hdrs unless hdrs.nil?
  command.query['sql'] = sql unless sql.nil?
  command.query['typed'] = typed unless typed.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#sql_query_get(sql, hdrs: nil, typed: nil, fields: nil, quota_user: nil, user_ip: nil, download_dest: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Sqlresponse

Executes a SQL statement which can be any of

  • SELECT
  • SHOW
  • DESCRIBE

Parameters:

  • sql (String)

    A SQL statement which can be any of

    • SELECT
    • SHOW
    • DESCRIBE
  • hdrs (Boolean)

    Whether column names are included (in the first row). Default is true.

  • typed (Boolean)

    Whether typed values are returned in the (JSON) response: numbers for numeric values and parsed geometries for KML values. Default is true.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • download_dest (IO, String)

    IO stream or filename to receive content download

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
# File 'generated/google/apis/fusiontables_v2/service.rb', line 392

def sql_query_get(sql, hdrs: nil, typed: nil, fields: nil, quota_user: nil, user_ip: nil, download_dest: nil, options: nil, &block)
  if download_dest.nil?
    command =  make_simple_command(:get, 'query', options)
  else
    command = make_download_command(:get, 'query', options)
    command.download_dest = download_dest
  end
  command.response_representation = Google::Apis::FusiontablesV2::Sqlresponse::Representation
  command.response_class = Google::Apis::FusiontablesV2::Sqlresponse
  command.query['hdrs'] = hdrs unless hdrs.nil?
  command.query['sql'] = sql unless sql.nil?
  command.query['typed'] = typed unless typed.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#update_column(table_id, column_id, column_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Column

Updates the name or type of an existing column.

Parameters:

  • table_id (String)

    Table for which the column is being updated.

  • column_id (String)

    Name or identifier for the column that is being updated.

  • column_object (Google::Apis::FusiontablesV2::Column) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'generated/google/apis/fusiontables_v2/service.rb', line 278

def update_column(table_id, column_id, column_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:put, 'tables/{tableId}/columns/{columnId}', options)
  command.request_representation = Google::Apis::FusiontablesV2::Column::Representation
  command.request_object = column_object
  command.response_representation = Google::Apis::FusiontablesV2::Column::Representation
  command.response_class = Google::Apis::FusiontablesV2::Column
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['columnId'] = column_id unless column_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#update_style(table_id, style_id, style_setting_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::StyleSetting

Updates an existing style.

Parameters:

  • table_id (String)

    Table whose style is being updated.

  • style_id (Fixnum)

    Identifier (within a table) for the style being updated.

  • style_setting_object (Google::Apis::FusiontablesV2::StyleSetting) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



631
632
633
634
635
636
637
638
639
640
641
642
643
# File 'generated/google/apis/fusiontables_v2/service.rb', line 631

def update_style(table_id, style_id, style_setting_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:put, 'tables/{tableId}/styles/{styleId}', options)
  command.request_representation = Google::Apis::FusiontablesV2::StyleSetting::Representation
  command.request_object = style_setting_object
  command.response_representation = Google::Apis::FusiontablesV2::StyleSetting::Representation
  command.response_class = Google::Apis::FusiontablesV2::StyleSetting
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['styleId'] = style_id unless style_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#update_table(table_id, table_object = nil, replace_view_definition: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Table

Updates an existing table. Unless explicitly requested, only the name, description, and attribution will be updated.

Parameters:

  • table_id (String)

    ID of the table that is being updated.

  • table_object (Google::Apis::FusiontablesV2::Table) (defaults to: nil)
  • replace_view_definition (Boolean)

    Whether the view definition is also updated. The specified view definition replaces the existing one. Only a view can be updated with a new definition.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1086

def update_table(table_id, table_object = nil, replace_view_definition: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:put, 'tables/{tableId}', options)
  command.request_representation = Google::Apis::FusiontablesV2::Table::Representation
  command.request_object = table_object
  command.response_representation = Google::Apis::FusiontablesV2::Table::Representation
  command.response_class = Google::Apis::FusiontablesV2::Table
  command.params['tableId'] = table_id unless table_id.nil?
  command.query['replaceViewDefinition'] = replace_view_definition unless replace_view_definition.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#update_template(table_id, template_id, template_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::FusiontablesV2::Template

Updates an existing template

Parameters:

  • table_id (String)

    Table to which the updated template belongs

  • template_id (Fixnum)

    Identifier for the template that is being updated

  • template_object (Google::Apis::FusiontablesV2::Template) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
# File 'generated/google/apis/fusiontables_v2/service.rb', line 1440

def update_template(table_id, template_id, template_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:put, 'tables/{tableId}/templates/{templateId}', options)
  command.request_representation = Google::Apis::FusiontablesV2::Template::Representation
  command.request_object = template_object
  command.response_representation = Google::Apis::FusiontablesV2::Template::Representation
  command.response_class = Google::Apis::FusiontablesV2::Template
  command.params['tableId'] = table_id unless table_id.nil?
  command.params['templateId'] = template_id unless template_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end