aws-sdk-core 3.34.0 → 3.35.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 236152fa904df3686cb7c43f3d923c6a760af4a3
4
- data.tar.gz: 3847219002f33e411a7b3c2f2c0460fc06ac3908
3
+ metadata.gz: e4afea58d46f712c01380a1c423e00979b5fe44c
4
+ data.tar.gz: 0450123445b78c5342e8abd9a775525a3e431a54
5
5
  SHA512:
6
- metadata.gz: fff418ddea283e1aa808e51a4d282062874aa4156c79eb902987c9916fcb7e2a99c9c307c6f6c7ca897744bb280c1900eb8b5298f643546964089165c187e97d
7
- data.tar.gz: e810010eedb77e628fc2e46c972ad7751e098c8fe02148d43f1f18f718880b6cc8e719389c21027b2fc5896ec75f40ca0d81701ff8dfa934f294937d7d9f21c1
6
+ metadata.gz: 2fee5885c4add1d590651ede13be0958d72a58436e37839e1258908a47efb73f6f014fd257b77d9ac1fd52d5dde31480c56e344f9f6b7725876207fb69a8bf4a
7
+ data.tar.gz: 250e674a319d99891c8600bc3242d12159a7d326c66eace99a16cb5ff126183738dce3f4d5af77c663b8b980ac05949e0d0628c3df773c58c33bd597f8913bc1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.34.0
1
+ 3.35.0
@@ -11,7 +11,7 @@ module Aws
11
11
  #
12
12
  # @api private
13
13
  # begin
14
- SENSITIVE = [:access_token, :account_name, :account_password, :admin_contact, :artifact_credentials, :auth_code, :authentication_token, :base_32_string_seed, :body, :bot_configuration, :client_id, :client_secret, :configuration, :copy_source_sse_customer_key, :credentials, :custom_attributes, :db_password, :description, :display_name, :email, :email_address, :email_message, :feedback_token, :first_name, :id, :id_token, :input, :input_text, :key_id, :kms_key_id, :kms_master_key_id, :last_name, :local_console_password, :master_account_email, :master_user_password, :message, :name, :new_password, :notes, :old_password, :owner_information, :parameters, :passphrase, :password, :payload, :plaintext, :previous_password, :private_key, :proposed_password, :public_key, :qr_code_png, :query, :refresh_token, :registrant_contact, :request_attributes, :search_query, :secret_access_key, :secret_binary, :secret_code, :secret_hash, :secret_string, :service_password, :session_attributes, :share_notes, :shared_secret, :slots, :sse_customer_key, :ssekms_key_id, :status_message, :task_parameters, :tech_contact, :temporary_password, :text, :trust_password, :upload_credentials, :upload_url, :user_name, :username, :value, :values, :variables, :zip_file]
14
+ SENSITIVE = [:access_token, :account_name, :account_password, :admin_contact, :artifact_credentials, :auth_code, :authentication_token, :authorization_result, :base_32_string_seed, :body, :bot_configuration, :client_id, :client_secret, :configuration, :copy_source_sse_customer_key, :credentials, :custom_attributes, :db_password, :description, :display_name, :email, :email_address, :email_message, :feedback_token, :first_name, :id, :id_token, :input, :input_text, :key_id, :kms_key_id, :kms_master_key_id, :last_name, :local_console_password, :master_account_email, :master_user_password, :message, :name, :new_password, :notes, :old_password, :owner_information, :parameters, :passphrase, :password, :payload, :plaintext, :previous_password, :private_key, :proposed_password, :public_key, :qr_code_png, :query, :refresh_token, :registrant_contact, :request_attributes, :search_query, :secret_access_key, :secret_binary, :secret_code, :secret_hash, :secret_string, :service_password, :session_attributes, :share_notes, :shared_secret, :slots, :sse_customer_key, :ssekms_key_id, :status_message, :task_parameters, :tech_contact, :temporary_password, :text, :token, :trust_password, :upload_credentials, :upload_url, :user_name, :username, :value, :values, :variables, :zip_file]
15
15
  # end
16
16
 
17
17
  def initialize(options = {})
@@ -40,6 +40,6 @@ require_relative 'aws-sdk-sts/customizations'
40
40
  # @service
41
41
  module Aws::STS
42
42
 
43
- GEM_VERSION = '3.34.0'
43
+ GEM_VERSION = '3.35.0'
44
44
 
45
45
  end
@@ -54,121 +54,123 @@ module Aws::STS
54
54
  add_plugin(Aws::Plugins::SignatureV4)
55
55
  add_plugin(Aws::Plugins::Protocols::Query)
56
56
 
57
- # @option options [required, Aws::CredentialProvider] :credentials
58
- # Your AWS credentials. This can be an instance of any one of the
59
- # following classes:
57
+ # @overload initialize(options)
58
+ # @param [Hash] options
59
+ # @option options [required, Aws::CredentialProvider] :credentials
60
+ # Your AWS credentials. This can be an instance of any one of the
61
+ # following classes:
60
62
  #
61
- # * `Aws::Credentials` - Used for configuring static, non-refreshing
62
- # credentials.
63
+ # * `Aws::Credentials` - Used for configuring static, non-refreshing
64
+ # credentials.
63
65
  #
64
- # * `Aws::InstanceProfileCredentials` - Used for loading credentials
65
- # from an EC2 IMDS on an EC2 instance.
66
+ # * `Aws::InstanceProfileCredentials` - Used for loading credentials
67
+ # from an EC2 IMDS on an EC2 instance.
66
68
  #
67
- # * `Aws::SharedCredentials` - Used for loading credentials from a
68
- # shared file, such as `~/.aws/config`.
69
+ # * `Aws::SharedCredentials` - Used for loading credentials from a
70
+ # shared file, such as `~/.aws/config`.
69
71
  #
70
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
72
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
71
73
  #
72
- # When `:credentials` are not configured directly, the following
73
- # locations will be searched for credentials:
74
+ # When `:credentials` are not configured directly, the following
75
+ # locations will be searched for credentials:
74
76
  #
75
- # * `Aws.config[:credentials]`
76
- # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
77
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
78
- # * `~/.aws/credentials`
79
- # * `~/.aws/config`
80
- # * EC2 IMDS instance profile - When used by default, the timeouts are
81
- # very aggressive. Construct and pass an instance of
82
- # `Aws::InstanceProfileCredentails` to enable retries and extended
83
- # timeouts.
77
+ # * `Aws.config[:credentials]`
78
+ # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
79
+ # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
80
+ # * `~/.aws/credentials`
81
+ # * `~/.aws/config`
82
+ # * EC2 IMDS instance profile - When used by default, the timeouts are
83
+ # very aggressive. Construct and pass an instance of
84
+ # `Aws::InstanceProfileCredentails` to enable retries and extended
85
+ # timeouts.
84
86
  #
85
- # @option options [required, String] :region
86
- # The AWS region to connect to. The configured `:region` is
87
- # used to determine the service `:endpoint`. When not passed,
88
- # a default `:region` is search for in the following locations:
87
+ # @option options [required, String] :region
88
+ # The AWS region to connect to. The configured `:region` is
89
+ # used to determine the service `:endpoint`. When not passed,
90
+ # a default `:region` is search for in the following locations:
89
91
  #
90
- # * `Aws.config[:region]`
91
- # * `ENV['AWS_REGION']`
92
- # * `ENV['AMAZON_REGION']`
93
- # * `ENV['AWS_DEFAULT_REGION']`
94
- # * `~/.aws/credentials`
95
- # * `~/.aws/config`
92
+ # * `Aws.config[:region]`
93
+ # * `ENV['AWS_REGION']`
94
+ # * `ENV['AMAZON_REGION']`
95
+ # * `ENV['AWS_DEFAULT_REGION']`
96
+ # * `~/.aws/credentials`
97
+ # * `~/.aws/config`
96
98
  #
97
- # @option options [String] :access_key_id
99
+ # @option options [String] :access_key_id
98
100
  #
99
- # @option options [Boolean] :client_side_monitoring (false)
100
- # When `true`, client-side metrics will be collected for all API requests from
101
- # this client.
101
+ # @option options [Boolean] :client_side_monitoring (false)
102
+ # When `true`, client-side metrics will be collected for all API requests from
103
+ # this client.
102
104
  #
103
- # @option options [String] :client_side_monitoring_client_id ("")
104
- # Allows you to provide an identifier for this client which will be attached to
105
- # all generated client side metrics. Defaults to an empty string.
105
+ # @option options [String] :client_side_monitoring_client_id ("")
106
+ # Allows you to provide an identifier for this client which will be attached to
107
+ # all generated client side metrics. Defaults to an empty string.
106
108
  #
107
- # @option options [Integer] :client_side_monitoring_port (31000)
108
- # Required for publishing client metrics. The port that the client side monitoring
109
- # agent is running on, where client metrics will be published via UDP.
109
+ # @option options [Integer] :client_side_monitoring_port (31000)
110
+ # Required for publishing client metrics. The port that the client side monitoring
111
+ # agent is running on, where client metrics will be published via UDP.
110
112
  #
111
- # @option options [Aws::ClientSideMonitoring::Publisher] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher)
112
- # Allows you to provide a custom client-side monitoring publisher class. By default,
113
- # will use the Client Side Monitoring Agent Publisher.
113
+ # @option options [Aws::ClientSideMonitoring::Publisher] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher)
114
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
115
+ # will use the Client Side Monitoring Agent Publisher.
114
116
  #
115
- # @option options [Boolean] :convert_params (true)
116
- # When `true`, an attempt is made to coerce request parameters into
117
- # the required types.
117
+ # @option options [Boolean] :convert_params (true)
118
+ # When `true`, an attempt is made to coerce request parameters into
119
+ # the required types.
118
120
  #
119
- # @option options [String] :endpoint
120
- # The client endpoint is normally constructed from the `:region`
121
- # option. You should only configure an `:endpoint` when connecting
122
- # to test endpoints. This should be avalid HTTP(S) URI.
121
+ # @option options [String] :endpoint
122
+ # The client endpoint is normally constructed from the `:region`
123
+ # option. You should only configure an `:endpoint` when connecting
124
+ # to test endpoints. This should be avalid HTTP(S) URI.
123
125
  #
124
- # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
125
- # The log formatter.
126
+ # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
127
+ # The log formatter.
126
128
  #
127
- # @option options [Symbol] :log_level (:info)
128
- # The log level to send messages to the `:logger` at.
129
+ # @option options [Symbol] :log_level (:info)
130
+ # The log level to send messages to the `:logger` at.
129
131
  #
130
- # @option options [Logger] :logger
131
- # The Logger instance to send log messages to. If this option
132
- # is not set, logging will be disabled.
132
+ # @option options [Logger] :logger
133
+ # The Logger instance to send log messages to. If this option
134
+ # is not set, logging will be disabled.
133
135
  #
134
- # @option options [String] :profile ("default")
135
- # Used when loading credentials from the shared credentials file
136
- # at HOME/.aws/credentials. When not specified, 'default' is used.
136
+ # @option options [String] :profile ("default")
137
+ # Used when loading credentials from the shared credentials file
138
+ # at HOME/.aws/credentials. When not specified, 'default' is used.
137
139
  #
138
- # @option options [Float] :retry_base_delay (0.3)
139
- # The base delay in seconds used by the default backoff function.
140
+ # @option options [Float] :retry_base_delay (0.3)
141
+ # The base delay in seconds used by the default backoff function.
140
142
  #
141
- # @option options [Symbol] :retry_jitter (:none)
142
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
143
+ # @option options [Symbol] :retry_jitter (:none)
144
+ # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
143
145
  #
144
- # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
146
+ # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
145
147
  #
146
- # @option options [Integer] :retry_limit (3)
147
- # The maximum number of times to retry failed requests. Only
148
- # ~ 500 level server errors and certain ~ 400 level client errors
149
- # are retried. Generally, these are throttling errors, data
150
- # checksum errors, networking errors, timeout errors and auth
151
- # errors from expired credentials.
148
+ # @option options [Integer] :retry_limit (3)
149
+ # The maximum number of times to retry failed requests. Only
150
+ # ~ 500 level server errors and certain ~ 400 level client errors
151
+ # are retried. Generally, these are throttling errors, data
152
+ # checksum errors, networking errors, timeout errors and auth
153
+ # errors from expired credentials.
152
154
  #
153
- # @option options [Integer] :retry_max_delay (0)
154
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
155
+ # @option options [Integer] :retry_max_delay (0)
156
+ # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
155
157
  #
156
- # @option options [String] :secret_access_key
158
+ # @option options [String] :secret_access_key
157
159
  #
158
- # @option options [String] :session_token
160
+ # @option options [String] :session_token
159
161
  #
160
- # @option options [Boolean] :stub_responses (false)
161
- # Causes the client to return stubbed responses. By default
162
- # fake responses are generated and returned. You can specify
163
- # the response data to return or errors to raise by calling
164
- # {ClientStubs#stub_responses}. See {ClientStubs} for more information.
162
+ # @option options [Boolean] :stub_responses (false)
163
+ # Causes the client to return stubbed responses. By default
164
+ # fake responses are generated and returned. You can specify
165
+ # the response data to return or errors to raise by calling
166
+ # {ClientStubs#stub_responses}. See {ClientStubs} for more information.
165
167
  #
166
- # ** Please note ** When response stubbing is enabled, no HTTP
167
- # requests are made, and retries are disabled.
168
+ # ** Please note ** When response stubbing is enabled, no HTTP
169
+ # requests are made, and retries are disabled.
168
170
  #
169
- # @option options [Boolean] :validate_params (true)
170
- # When `true`, request parameters are validated before
171
- # sending the request.
171
+ # @option options [Boolean] :validate_params (true)
172
+ # When `true`, request parameters are validated before
173
+ # sending the request.
172
174
  #
173
175
  def initialize(*args)
174
176
  super
@@ -1506,7 +1508,7 @@ module Aws::STS
1506
1508
  params: params,
1507
1509
  config: config)
1508
1510
  context[:gem_name] = 'aws-sdk-core'
1509
- context[:gem_version] = '3.34.0'
1511
+ context[:gem_version] = '3.35.0'
1510
1512
  Seahorse::Client::Request.new(handlers, context)
1511
1513
  end
1512
1514
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.34.0
4
+ version: 3.35.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-23 00:00:00.000000000 Z
11
+ date: 2018-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath