aws-sdk-machinelearning 1.4.0 → 1.5.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: 046e00ac9f0130ec554b5bd7dca96f52c17bed87
4
- data.tar.gz: 9ee68d9b9acd4888f74c452959390cb6a41b35e5
3
+ metadata.gz: a654ae35b82d82dfc843d768a3f11c86ae05ba6a
4
+ data.tar.gz: 9232a44a1526a0a158b05c13924b3a400ea24d5a
5
5
  SHA512:
6
- metadata.gz: 2903fc086cc0a83982a6d1c856569e2445559e23eef89cb47294b6bd768317e9dc39f3452d43f4bc2e38d935ee32e8b5d723b6d12d8abdb037dc44d202b36c86
7
- data.tar.gz: 30ef97aec80c0e0815d22782510ebe1befd188aed44b8bdf2ee689a080cd7cf8cae9d41611668df137011895c8697fa8eae5408d1d5bae1428110b77122b2d2f
6
+ metadata.gz: ccfcad43a380d5f5f2b93fe24964fb3d004383a2a978e7a64fcae4b5bbf4be842e11b0a35ca4ec6f8d008d4fea6048751611f25ae473192f7370b358b2bec83a
7
+ data.tar.gz: fa5c24aa97503055318879c54c754963a6d2f645788134a2fd91bf4fb8bf5535d9e1b7134dee54135357a813b78b76ae23f86f218255a63ae1872bdf309e49bf
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-machinelearning/customizations'
43
43
  # @service
44
44
  module Aws::MachineLearning
45
45
 
46
- GEM_VERSION = '1.4.0'
46
+ GEM_VERSION = '1.5.0'
47
47
 
48
48
  end
@@ -56,131 +56,133 @@ module Aws::MachineLearning
56
56
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
57
57
  add_plugin(Aws::MachineLearning::Plugins::PredictEndpoint)
58
58
 
59
- # @option options [required, Aws::CredentialProvider] :credentials
60
- # Your AWS credentials. This can be an instance of any one of the
61
- # following classes:
59
+ # @overload initialize(options)
60
+ # @param [Hash] options
61
+ # @option options [required, Aws::CredentialProvider] :credentials
62
+ # Your AWS credentials. This can be an instance of any one of the
63
+ # following classes:
62
64
  #
63
- # * `Aws::Credentials` - Used for configuring static, non-refreshing
64
- # credentials.
65
+ # * `Aws::Credentials` - Used for configuring static, non-refreshing
66
+ # credentials.
65
67
  #
66
- # * `Aws::InstanceProfileCredentials` - Used for loading credentials
67
- # from an EC2 IMDS on an EC2 instance.
68
+ # * `Aws::InstanceProfileCredentials` - Used for loading credentials
69
+ # from an EC2 IMDS on an EC2 instance.
68
70
  #
69
- # * `Aws::SharedCredentials` - Used for loading credentials from a
70
- # shared file, such as `~/.aws/config`.
71
+ # * `Aws::SharedCredentials` - Used for loading credentials from a
72
+ # shared file, such as `~/.aws/config`.
71
73
  #
72
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
74
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
73
75
  #
74
- # When `:credentials` are not configured directly, the following
75
- # locations will be searched for credentials:
76
+ # When `:credentials` are not configured directly, the following
77
+ # locations will be searched for credentials:
78
+ #
79
+ # * `Aws.config[:credentials]`
80
+ # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
81
+ # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
82
+ # * `~/.aws/credentials`
83
+ # * `~/.aws/config`
84
+ # * EC2 IMDS instance profile - When used by default, the timeouts are
85
+ # very aggressive. Construct and pass an instance of
86
+ # `Aws::InstanceProfileCredentails` to enable retries and extended
87
+ # timeouts.
76
88
  #
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.
89
+ # @option options [required, String] :region
90
+ # The AWS region to connect to. The configured `:region` is
91
+ # used to determine the service `:endpoint`. When not passed,
92
+ # a default `:region` is search for in the following locations:
86
93
  #
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:
94
+ # * `Aws.config[:region]`
95
+ # * `ENV['AWS_REGION']`
96
+ # * `ENV['AMAZON_REGION']`
97
+ # * `ENV['AWS_DEFAULT_REGION']`
98
+ # * `~/.aws/credentials`
99
+ # * `~/.aws/config`
91
100
  #
92
- # * `Aws.config[:region]`
93
- # * `ENV['AWS_REGION']`
94
- # * `ENV['AMAZON_REGION']`
95
- # * `ENV['AWS_DEFAULT_REGION']`
96
- # * `~/.aws/credentials`
97
- # * `~/.aws/config`
101
+ # @option options [String] :access_key_id
98
102
  #
99
- # @option options [String] :access_key_id
103
+ # @option options [Boolean] :client_side_monitoring (false)
104
+ # When `true`, client-side metrics will be collected for all API requests from
105
+ # this client.
100
106
  #
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.
107
+ # @option options [String] :client_side_monitoring_client_id ("")
108
+ # Allows you to provide an identifier for this client which will be attached to
109
+ # all generated client side metrics. Defaults to an empty string.
104
110
  #
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.
111
+ # @option options [Integer] :client_side_monitoring_port (31000)
112
+ # Required for publishing client metrics. The port that the client side monitoring
113
+ # agent is running on, where client metrics will be published via UDP.
108
114
  #
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.
115
+ # @option options [Aws::ClientSideMonitoring::Publisher] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher)
116
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
117
+ # will use the Client Side Monitoring Agent Publisher.
112
118
  #
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.
119
+ # @option options [Boolean] :convert_params (true)
120
+ # When `true`, an attempt is made to coerce request parameters into
121
+ # the required types.
116
122
  #
117
- # @option options [Boolean] :convert_params (true)
118
- # When `true`, an attempt is made to coerce request parameters into
119
- # the required types.
123
+ # @option options [String] :endpoint
124
+ # The client endpoint is normally constructed from the `:region`
125
+ # option. You should only configure an `:endpoint` when connecting
126
+ # to test endpoints. This should be avalid HTTP(S) URI.
120
127
  #
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.
128
+ # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
129
+ # The log formatter.
125
130
  #
126
- # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
127
- # The log formatter.
131
+ # @option options [Symbol] :log_level (:info)
132
+ # The log level to send messages to the `:logger` at.
128
133
  #
129
- # @option options [Symbol] :log_level (:info)
130
- # The log level to send messages to the `:logger` at.
134
+ # @option options [Logger] :logger
135
+ # The Logger instance to send log messages to. If this option
136
+ # is not set, logging will be disabled.
131
137
  #
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.
138
+ # @option options [String] :profile ("default")
139
+ # Used when loading credentials from the shared credentials file
140
+ # at HOME/.aws/credentials. When not specified, 'default' is used.
135
141
  #
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.
142
+ # @option options [Float] :retry_base_delay (0.3)
143
+ # The base delay in seconds used by the default backoff function.
139
144
  #
140
- # @option options [Float] :retry_base_delay (0.3)
141
- # The base delay in seconds used by the default backoff function.
145
+ # @option options [Symbol] :retry_jitter (:none)
146
+ # 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.
142
147
  #
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.
148
+ # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
145
149
  #
146
- # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
150
+ # @option options [Integer] :retry_limit (3)
151
+ # The maximum number of times to retry failed requests. Only
152
+ # ~ 500 level server errors and certain ~ 400 level client errors
153
+ # are retried. Generally, these are throttling errors, data
154
+ # checksum errors, networking errors, timeout errors and auth
155
+ # errors from expired credentials.
147
156
  #
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.
157
+ # @option options [Integer] :retry_max_delay (0)
158
+ # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
154
159
  #
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.
160
+ # @option options [String] :secret_access_key
157
161
  #
158
- # @option options [String] :secret_access_key
162
+ # @option options [String] :session_token
159
163
  #
160
- # @option options [String] :session_token
164
+ # @option options [Boolean] :simple_json (false)
165
+ # Disables request parameter conversion, validation, and formatting.
166
+ # Also disable response data type conversions. This option is useful
167
+ # when you want to ensure the highest level of performance by
168
+ # avoiding overhead of walking request parameters and response data
169
+ # structures.
161
170
  #
162
- # @option options [Boolean] :simple_json (false)
163
- # Disables request parameter conversion, validation, and formatting.
164
- # Also disable response data type conversions. This option is useful
165
- # when you want to ensure the highest level of performance by
166
- # avoiding overhead of walking request parameters and response data
167
- # structures.
171
+ # When `:simple_json` is enabled, the request parameters hash must
172
+ # be formatted exactly as the DynamoDB API expects.
168
173
  #
169
- # When `:simple_json` is enabled, the request parameters hash must
170
- # be formatted exactly as the DynamoDB API expects.
174
+ # @option options [Boolean] :stub_responses (false)
175
+ # Causes the client to return stubbed responses. By default
176
+ # fake responses are generated and returned. You can specify
177
+ # the response data to return or errors to raise by calling
178
+ # {ClientStubs#stub_responses}. See {ClientStubs} for more information.
179
+ #
180
+ # ** Please note ** When response stubbing is enabled, no HTTP
181
+ # requests are made, and retries are disabled.
171
182
  #
172
- # @option options [Boolean] :stub_responses (false)
173
- # Causes the client to return stubbed responses. By default
174
- # fake responses are generated and returned. You can specify
175
- # the response data to return or errors to raise by calling
176
- # {ClientStubs#stub_responses}. See {ClientStubs} for more information.
177
- #
178
- # ** Please note ** When response stubbing is enabled, no HTTP
179
- # requests are made, and retries are disabled.
180
- #
181
- # @option options [Boolean] :validate_params (true)
182
- # When `true`, request parameters are validated before
183
- # sending the request.
183
+ # @option options [Boolean] :validate_params (true)
184
+ # When `true`, request parameters are validated before
185
+ # sending the request.
184
186
  #
185
187
  def initialize(*args)
186
188
  super
@@ -2157,7 +2159,7 @@ module Aws::MachineLearning
2157
2159
  params: params,
2158
2160
  config: config)
2159
2161
  context[:gem_name] = 'aws-sdk-machinelearning'
2160
- context[:gem_version] = '1.4.0'
2162
+ context[:gem_version] = '1.5.0'
2161
2163
  Seahorse::Client::Request.new(handlers, context)
2162
2164
  end
2163
2165
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-machinelearning
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.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: aws-sdk-core