aws-sdk-machinelearning 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d3d53676f527d040f02ba37ae31d80c8e07e5bb
4
- data.tar.gz: 6f22cb5b4cebc0d6faa88b55092027fd84fd900f
3
+ metadata.gz: 6540dae4fbed9ea44ebfd95647aca3aaae3cf643
4
+ data.tar.gz: 329014dd7a711c49465610e39922cd44f7488ae4
5
5
  SHA512:
6
- metadata.gz: 771c81298d5caf0e43960092195e4c1eb0fff043d376a186f737c68963da28dc770c4dfb3978ba40f532e62a5466aa34dfda96d71862bd4fc0c12a48e3479ab8
7
- data.tar.gz: 8a768e9cd6b8d476d6bfb1fe0ae57e5781ef18c64bcd417f7cee2f39ac9efc09c061df50a93db3a9121bad5a0114c33d9400d6eb650dc7d799dffb4fe53871e3
6
+ metadata.gz: f7a9f3c085672caafc0c1f1158162a573a1439158c23cfb68e5efa4011158c2385fe45fc6a08db51cdc32a9c0823eefc350dbd421d8018db3fc3aa9fed2a1301
7
+ data.tar.gz: afb4277445b8d2146c77f3b4d0705614c18a60e82920e944f588349484f51fd6c99832aecdba815a02637a793c989fcbb98e4a73e9d5677b00f299ffced26411
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-machinelearning/customizations'
43
43
  # @service
44
44
  module Aws::MachineLearning
45
45
 
46
- GEM_VERSION = '1.1.0'
46
+ GEM_VERSION = '1.2.0'
47
47
 
48
48
  end
@@ -19,6 +19,8 @@ require 'aws-sdk-core/plugins/response_paging.rb'
19
19
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
20
  require 'aws-sdk-core/plugins/idempotency_token.rb'
21
21
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
22
+ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
23
+ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
22
24
  require 'aws-sdk-core/plugins/signature_v4.rb'
23
25
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
24
26
  require 'aws-sdk-machinelearning/plugins/predict_endpoint.rb'
@@ -48,6 +50,8 @@ module Aws::MachineLearning
48
50
  add_plugin(Aws::Plugins::StubResponses)
49
51
  add_plugin(Aws::Plugins::IdempotencyToken)
50
52
  add_plugin(Aws::Plugins::JsonvalueConverter)
53
+ add_plugin(Aws::Plugins::ClientMetricsPlugin)
54
+ add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
51
55
  add_plugin(Aws::Plugins::SignatureV4)
52
56
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
53
57
  add_plugin(Aws::MachineLearning::Plugins::PredictEndpoint)
@@ -94,6 +98,22 @@ module Aws::MachineLearning
94
98
  #
95
99
  # @option options [String] :access_key_id
96
100
  #
101
+ # @option options [] :client_side_monitoring (false)
102
+ # When `true`, client-side metrics will be collected for all API requests from
103
+ # this client.
104
+ #
105
+ # @option options [] :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.
108
+ #
109
+ # @option options [] :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.
112
+ #
113
+ # @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
114
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
115
+ # will use the Client Side Monitoring Agent Publisher.
116
+ #
97
117
  # @option options [Boolean] :convert_params (true)
98
118
  # When `true`, an attempt is made to coerce request parameters into
99
119
  # the required types.
@@ -2137,7 +2157,7 @@ module Aws::MachineLearning
2137
2157
  params: params,
2138
2158
  config: config)
2139
2159
  context[:gem_name] = 'aws-sdk-machinelearning'
2140
- context[:gem_version] = '1.1.0'
2160
+ context[:gem_version] = '1.2.0'
2141
2161
  Seahorse::Client::Request.new(handlers, context)
2142
2162
  end
2143
2163
 
@@ -676,12 +676,14 @@ module Aws::MachineLearning
676
676
  api.version = "2014-12-12"
677
677
 
678
678
  api.metadata = {
679
+ "apiVersion" => "2014-12-12",
679
680
  "endpointPrefix" => "machinelearning",
680
681
  "jsonVersion" => "1.1",
681
682
  "protocol" => "json",
682
683
  "serviceFullName" => "Amazon Machine Learning",
683
684
  "signatureVersion" => "v4",
684
685
  "targetPrefix" => "AmazonML_20141212",
686
+ "uid" => "machinelearning-2014-12-12",
685
687
  }
686
688
 
687
689
  api.add_operation(:add_tags, Seahorse::Model::Operation.new.tap do |o|
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.1.0
4
+ version: 1.2.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-06-26 00:00:00.000000000 Z
11
+ date: 2018-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core