Class: Google::Apis::AdminDatatransferV1::DataTransferService

Inherits:
Core::BaseService
  • Object
show all
Defined in:
generated/google/apis/admin_datatransfer_v1/service.rb

Overview

Admin SDK API

Admin SDK lets administrators of enterprise domains to view and manage resources like user, groups etc. It also provides audit and usage reports of domain.

Examples:

require 'google/apis/admin_datatransfer_v1'

Admin = Google::Apis::AdminDatatransferV1 # Alias the module
service = Admin::DataTransferService.new

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDataTransferService

Returns a new instance of DataTransferService.



47
48
49
50
# File 'generated/google/apis/admin_datatransfer_v1/service.rb', line 47

def initialize
  super('https://admin.googleapis.com/', '')
  @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.



40
41
42
# File 'generated/google/apis/admin_datatransfer_v1/service.rb', line 40

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.

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.



45
46
47
# File 'generated/google/apis/admin_datatransfer_v1/service.rb', line 45

def quota_user
  @quota_user
end

Instance Method Details

#get_application(application_id, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::AdminDatatransferV1::Application

Retrieves information about an application for the given application ID.

Parameters:

  • application_id (Fixnum)

    ID of the application resource to be retrieved.

  • fields (String) (defaults to: nil)

    Selector specifying which fields to include in a partial response.

  • quota_user (String) (defaults to: nil)

    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.

  • options (Google::Apis::RequestOptions) (defaults to: nil)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:

  • (Google::Apis::ServerError)

    An error occurred on the server and the request can be retried

  • (Google::Apis::ClientError)

    The request is invalid and should not be retried without modification

  • (Google::Apis::AuthorizationError)

    Authorization is required



72
73
74
75
76
77
78
79
80
# File 'generated/google/apis/admin_datatransfer_v1/service.rb', line 72

def get_application(application_id, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'admin/datatransfer/v1/applications/{applicationId}', options)
  command.response_representation = Google::Apis::AdminDatatransferV1::Application::Representation
  command.response_class = Google::Apis::AdminDatatransferV1::Application
  command.params['applicationId'] = application_id unless application_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end

#get_transfer(data_transfer_id, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::AdminDatatransferV1::DataTransfer

Retrieves a data transfer request by its resource ID.

Parameters:

  • data_transfer_id (String)

    ID of the resource to be retrieved. This is returned in the response from the insert method.

  • fields (String) (defaults to: nil)

    Selector specifying which fields to include in a partial response.

  • quota_user (String) (defaults to: nil)

    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.

  • options (Google::Apis::RequestOptions) (defaults to: nil)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:

  • (Google::Apis::ServerError)

    An error occurred on the server and the request can be retried

  • (Google::Apis::ClientError)

    The request is invalid and should not be retried without modification

  • (Google::Apis::AuthorizationError)

    Authorization is required



139
140
141
142
143
144
145
146
147
# File 'generated/google/apis/admin_datatransfer_v1/service.rb', line 139

def get_transfer(data_transfer_id, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'admin/datatransfer/v1/transfers/{dataTransferId}', options)
  command.response_representation = Google::Apis::AdminDatatransferV1::DataTransfer::Representation
  command.response_class = Google::Apis::AdminDatatransferV1::DataTransfer
  command.params['dataTransferId'] = data_transfer_id unless data_transfer_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end

#insert_transfer(data_transfer_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::AdminDatatransferV1::DataTransfer

Inserts a data transfer request.

Parameters:

  • data_transfer_object (Google::Apis::AdminDatatransferV1::DataTransfer) (defaults to: nil)
  • fields (String) (defaults to: nil)

    Selector specifying which fields to include in a partial response.

  • quota_user (String) (defaults to: nil)

    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.

  • options (Google::Apis::RequestOptions) (defaults to: nil)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:

  • (Google::Apis::ServerError)

    An error occurred on the server and the request can be retried

  • (Google::Apis::ClientError)

    The request is invalid and should not be retried without modification

  • (Google::Apis::AuthorizationError)

    Authorization is required



168
169
170
171
172
173
174
175
176
177
# File 'generated/google/apis/admin_datatransfer_v1/service.rb', line 168

def insert_transfer(data_transfer_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'admin/datatransfer/v1/transfers', options)
  command.request_representation = Google::Apis::AdminDatatransferV1::DataTransfer::Representation
  command.request_object = data_transfer_object
  command.response_representation = Google::Apis::AdminDatatransferV1::DataTransfer::Representation
  command.response_class = Google::Apis::AdminDatatransferV1::DataTransfer
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end

#list_applications(customer_id: nil, max_results: nil, page_token: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::AdminDatatransferV1::ApplicationsListResponse

Lists the applications available for data transfer for a customer.

Parameters:

  • customer_id (String) (defaults to: nil)

    Immutable ID of the Google Apps account.

  • max_results (Fixnum) (defaults to: nil)

    Maximum number of results to return. Default is 100.

  • page_token (String) (defaults to: nil)

    Token to specify next page in the list.

  • fields (String) (defaults to: nil)

    Selector specifying which fields to include in a partial response.

  • quota_user (String) (defaults to: nil)

    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.

  • options (Google::Apis::RequestOptions) (defaults to: nil)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:

  • (Google::Apis::ServerError)

    An error occurred on the server and the request can be retried

  • (Google::Apis::ClientError)

    The request is invalid and should not be retried without modification

  • (Google::Apis::AuthorizationError)

    Authorization is required



106
107
108
109
110
111
112
113
114
115
116
# File 'generated/google/apis/admin_datatransfer_v1/service.rb', line 106

def list_applications(customer_id: nil, max_results: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'admin/datatransfer/v1/applications', options)
  command.response_representation = Google::Apis::AdminDatatransferV1::ApplicationsListResponse::Representation
  command.response_class = Google::Apis::AdminDatatransferV1::ApplicationsListResponse
  command.query['customerId'] = customer_id unless customer_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?
  execute_or_queue_command(command, &block)
end

#list_transfers(customer_id: nil, max_results: nil, new_owner_user_id: nil, old_owner_user_id: nil, page_token: nil, status: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::AdminDatatransferV1::DataTransfersListResponse

Lists the transfers for a customer by source user, destination user, or status.

Parameters:

  • customer_id (String) (defaults to: nil)

    Immutable ID of the Google Apps account.

  • max_results (Fixnum) (defaults to: nil)

    Maximum number of results to return. Default is 100.

  • new_owner_user_id (String) (defaults to: nil)

    Destination user's profile ID.

  • old_owner_user_id (String) (defaults to: nil)

    Source user's profile ID.

  • page_token (String) (defaults to: nil)

    Token to specify the next page in the list.

  • status (String) (defaults to: nil)

    Status of the transfer.

  • fields (String) (defaults to: nil)

    Selector specifying which fields to include in a partial response.

  • quota_user (String) (defaults to: nil)

    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.

  • options (Google::Apis::RequestOptions) (defaults to: nil)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:

  • (Google::Apis::ServerError)

    An error occurred on the server and the request can be retried

  • (Google::Apis::ClientError)

    The request is invalid and should not be retried without modification

  • (Google::Apis::AuthorizationError)

    Authorization is required



209
210
211
212
213
214
215
216
217
218
219
220
221
222
# File 'generated/google/apis/admin_datatransfer_v1/service.rb', line 209

def list_transfers(customer_id: nil, max_results: nil, new_owner_user_id: nil, old_owner_user_id: nil, page_token: nil, status: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'admin/datatransfer/v1/transfers', options)
  command.response_representation = Google::Apis::AdminDatatransferV1::DataTransfersListResponse::Representation
  command.response_class = Google::Apis::AdminDatatransferV1::DataTransfersListResponse
  command.query['customerId'] = customer_id unless customer_id.nil?
  command.query['maxResults'] = max_results unless max_results.nil?
  command.query['newOwnerUserId'] = new_owner_user_id unless new_owner_user_id.nil?
  command.query['oldOwnerUserId'] = old_owner_user_id unless old_owner_user_id.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['status'] = status unless status.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end