Class: Google::Apis::RequestOptions

Inherits:
Struct
  • Object
show all
Defined in:
lib/google/apis/options.rb,
lib/google/apis/options.rb

Overview

Request options

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#api_format_versionFixnum

Returns Version of the error format to request/expect.

Returns:

  • (Fixnum)

    Version of the error format to request/expect.



63
64
65
# File 'lib/google/apis/options.rb', line 63

def api_format_version
  @api_format_version
end

#authorizationSignet::OAuth2::Client, #apply(Hash)

Returns OAuth2 credentials.

Returns:

  • (Signet::OAuth2::Client, #apply(Hash))

    OAuth2 credentials



63
64
65
# File 'lib/google/apis/options.rb', line 63

def authorization
  @authorization
end

#headerHash<String,String] Additional HTTP headers to include in requests

Returns Hash<String,String] Additional HTTP headers to include in requests.

Returns:

  • (Hash<String,String] Additional HTTP headers to include in requests)

    Hash<String,String] Additional HTTP headers to include in requests



63
64
65
# File 'lib/google/apis/options.rb', line 63

def header
  @header
end

#normalize_unicodeBoolean

Returns True if unicode strings should be normalized in path parameters.

Returns:

  • (Boolean)

    True if unicode strings should be normalized in path parameters



63
64
65
# File 'lib/google/apis/options.rb', line 63

def normalize_unicode
  @normalize_unicode
end

#retriesFixnum

Returns Number of times to retry requests on server error.

Returns:

  • (Fixnum)

    Number of times to retry requests on server error



63
64
65
# File 'lib/google/apis/options.rb', line 63

def retries
  @retries
end

#skip_deserializationBoolean

Returns True if response should be returned in raw form instead of deserialized.

Returns:

  • (Boolean)

    True if response should be returned in raw form instead of deserialized.



63
64
65
# File 'lib/google/apis/options.rb', line 63

def skip_deserialization
  @skip_deserialization
end

#skip_serializationBoolean

Returns True if body object should be treated as raw text instead of an object.

Returns:

  • (Boolean)

    True if body object should be treated as raw text instead of an object.



63
64
65
# File 'lib/google/apis/options.rb', line 63

def skip_serialization
  @skip_serialization
end

#use_opencensusBoolean

Returns Whether OpenCensus spans should be generated for requests. Default is true.

Returns:

  • (Boolean)

    Whether OpenCensus spans should be generated for requests. Default is true.



63
64
65
# File 'lib/google/apis/options.rb', line 63

def use_opencensus
  @use_opencensus
end

Class Method Details

.defaultGoogle::Apis::RequestOptions

Get the default options



82
83
84
# File 'lib/google/apis/options.rb', line 82

def self.default
  @options ||= RequestOptions.new
end

Instance Method Details

#merge(options) ⇒ Object



86
87
88
89
90
91
92
93
94
95
# File 'lib/google/apis/options.rb', line 86

def merge(options)
  return self if options.nil?

  new_options = dup
  members.each do |opt|
    opt = opt.to_sym
    new_options[opt] = options[opt] unless options[opt].nil?
  end
  new_options
end