aws-sdk-cloudtrail 1.0.0.rc3 → 1.0.0.rc4

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: d7ba278e1fe0eb554bf86f3f91a8bc8263c7e396
4
- data.tar.gz: 6456dc29c146d4277dc603e857e31dea6605438a
3
+ metadata.gz: 45772348164925437dd7a4225db73d087b982734
4
+ data.tar.gz: e861b786ee15a23b164b54097d1125b4c03ca8b8
5
5
  SHA512:
6
- metadata.gz: e96b7ea6a865e52104f3280e2b3186b9b963210f5d9eafb920fe8042e3201f7f9e98d1b3d7d6164d98c6768b86972896ac1aa10ab7240517b640de64502ac6fe
7
- data.tar.gz: 04cf8a5793084a158be9a61e2fbaa646eb16b0aed1694bed7eae82c47022c53b1f089351ece0fc71f02f4f6348f729752415afecf882808aea1fb98a75f20b73
6
+ metadata.gz: 01b94a3707f020b6e66aef66764530d120e526b169207a6a149250072c209d9b7feccc5c8747d56fb66505b17aa3a41fc6405a78e09f386c3129b1f4edd3182a
7
+ data.tar.gz: c74d0ffaf4119a012f64d0e6f8f1fa7543c868ee13c1e549ba12f78590cc133bbaf28b079532189eb146ad12d50826b6129ab2b380d2c3df45569c9e2cc108e4
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-cloudtrail/customizations'
42
42
  # @service
43
43
  module Aws::CloudTrail
44
44
 
45
- GEM_VERSION = '1.0.0.rc3'
45
+ GEM_VERSION = '1.0.0.rc4'
46
46
 
47
47
  end
@@ -18,6 +18,7 @@ require 'aws-sdk-core/plugins/regional_endpoint.rb'
18
18
  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
+ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
21
22
  require 'aws-sdk-core/plugins/signature_v4.rb'
22
23
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
23
24
 
@@ -45,6 +46,7 @@ module Aws::CloudTrail
45
46
  add_plugin(Aws::Plugins::ResponsePaging)
46
47
  add_plugin(Aws::Plugins::StubResponses)
47
48
  add_plugin(Aws::Plugins::IdempotencyToken)
49
+ add_plugin(Aws::Plugins::JsonvalueConverter)
48
50
  add_plugin(Aws::Plugins::SignatureV4)
49
51
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
50
52
 
@@ -452,7 +454,7 @@ module Aws::CloudTrail
452
454
  #
453
455
  # [1]: http://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html
454
456
  #
455
- # @option params [String] :trail_name
457
+ # @option params [required, String] :trail_name
456
458
  # Specifies the name of the trail or trail ARN. If you specify a trail
457
459
  # name, the string must meet the following requirements:
458
460
  #
@@ -480,7 +482,7 @@ module Aws::CloudTrail
480
482
  # @example Request syntax with placeholder values
481
483
  #
482
484
  # resp = client.get_event_selectors({
483
- # trail_name: "String",
485
+ # trail_name: "String", # required
484
486
  # })
485
487
  #
486
488
  # @example Response structure
@@ -804,7 +806,7 @@ module Aws::CloudTrail
804
806
  #
805
807
  # [1]: http://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html
806
808
  #
807
- # @option params [String] :trail_name
809
+ # @option params [required, String] :trail_name
808
810
  # Specifies the name of the trail or trail ARN. If you specify a trail
809
811
  # name, the string must meet the following requirements:
810
812
  #
@@ -824,7 +826,7 @@ module Aws::CloudTrail
824
826
  #
825
827
  # `arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail`
826
828
  #
827
- # @option params [Array<Types::EventSelector>] :event_selectors
829
+ # @option params [required, Array<Types::EventSelector>] :event_selectors
828
830
  # Specifies the settings for your event selectors. You can configure up
829
831
  # to five event selectors for a trail.
830
832
  #
@@ -836,8 +838,8 @@ module Aws::CloudTrail
836
838
  # @example Request syntax with placeholder values
837
839
  #
838
840
  # resp = client.put_event_selectors({
839
- # trail_name: "String",
840
- # event_selectors: [
841
+ # trail_name: "String", # required
842
+ # event_selectors: [ # required
841
843
  # {
842
844
  # read_write_type: "ReadOnly", # accepts ReadOnly, WriteOnly, All
843
845
  # include_management_events: false,
@@ -1139,7 +1141,7 @@ module Aws::CloudTrail
1139
1141
  params: params,
1140
1142
  config: config)
1141
1143
  context[:gem_name] = 'aws-sdk-cloudtrail'
1142
- context[:gem_version] = '1.0.0.rc3'
1144
+ context[:gem_version] = '1.0.0.rc4'
1143
1145
  Seahorse::Client::Request.new(handlers, context)
1144
1146
  end
1145
1147
 
@@ -173,7 +173,7 @@ module Aws::CloudTrail
173
173
 
174
174
  EventsList.member = Shapes::ShapeRef.new(shape: Event)
175
175
 
176
- GetEventSelectorsRequest.add_member(:trail_name, Shapes::ShapeRef.new(shape: String, location_name: "TrailName"))
176
+ GetEventSelectorsRequest.add_member(:trail_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TrailName"))
177
177
  GetEventSelectorsRequest.struct_class = Types::GetEventSelectorsRequest
178
178
 
179
179
  GetEventSelectorsResponse.add_member(:trail_arn, Shapes::ShapeRef.new(shape: String, location_name: "TrailARN"))
@@ -244,8 +244,8 @@ module Aws::CloudTrail
244
244
 
245
245
  PublicKeyList.member = Shapes::ShapeRef.new(shape: PublicKey)
246
246
 
247
- PutEventSelectorsRequest.add_member(:trail_name, Shapes::ShapeRef.new(shape: String, location_name: "TrailName"))
248
- PutEventSelectorsRequest.add_member(:event_selectors, Shapes::ShapeRef.new(shape: EventSelectors, location_name: "EventSelectors"))
247
+ PutEventSelectorsRequest.add_member(:trail_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TrailName"))
248
+ PutEventSelectorsRequest.add_member(:event_selectors, Shapes::ShapeRef.new(shape: EventSelectors, required: true, location_name: "EventSelectors"))
249
249
  PutEventSelectorsRequest.struct_class = Types::PutEventSelectorsRequest
250
250
 
251
251
  PutEventSelectorsResponse.add_member(:trail_arn, Shapes::ShapeRef.new(shape: String, location_name: "TrailARN"))
@@ -535,7 +535,7 @@ module Aws::CloudTrail
535
535
  # data as a hash:
536
536
  #
537
537
  # {
538
- # trail_name: "String",
538
+ # trail_name: "String", # required
539
539
  # }
540
540
  #
541
541
  # @!attribute [rw] trail_name
@@ -995,8 +995,8 @@ module Aws::CloudTrail
995
995
  # data as a hash:
996
996
  #
997
997
  # {
998
- # trail_name: "String",
999
- # event_selectors: [
998
+ # trail_name: "String", # required
999
+ # event_selectors: [ # required
1000
1000
  # {
1001
1001
  # read_write_type: "ReadOnly", # accepts ReadOnly, WriteOnly, All
1002
1002
  # include_management_events: false,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudtrail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc3
4
+ version: 1.0.0.rc4
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: 2017-03-07 00:00:00.000000000 Z
11
+ date: 2017-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core