aws-sdk-detective 1.16.0 → 1.17.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
  SHA256:
3
- metadata.gz: 93c0013c2fc91b9504c0c3c9b7a797f75c5251563dbcf9af64112d5464dafcab
4
- data.tar.gz: 8ef57dbff24554d9f0bf1ece899ea7d373a1e632d0d0c72a335c4020307b8ccb
3
+ metadata.gz: 19f3f223e64029f4db45b7e0f8628bc20e99e941ca13c870fd9a58f75fd20ae4
4
+ data.tar.gz: f70911eee261e0106367f4ba015ae6a2b581daaae443b34636ea195bf5721de3
5
5
  SHA512:
6
- metadata.gz: 498c5ec2140afe2fc97ef945872337fc0ec3683ebaaec131497d90b2dd236051befd7af7f5b1737fbbd19de7a12ac20fbd0274f85187ec4d1bdaca10973db971
7
- data.tar.gz: c4d25c8249eb20ff1d8d0933bf42644f8f99cbb47296fb4cb2a1553660e6a80c5b581f2b84270da816dfba6171c6d1edefd165aa319266ae22139c8d333a8eff
6
+ metadata.gz: 2a7011c9fb2cb8651ded5ee843217730d1ebe73330cca0d6979c8a35e1e9547480286b3df49a12383ddd124c5b90967474ce6deb676ac0acc891f896d1a3285d
7
+ data.tar.gz: df0df2259f2514381c715937a4c89e77d889da4a8484e14aa39c3eb86afe20e086b70ece386c36607fd3af42198223e996d4caa331c76dd553761713ce3fc075
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.17.0 (2021-04-21)
5
+ ------------------
6
+
7
+ * Feature - Added parameters to track the data volume in bytes for a member account. Deprecated the existing parameters that tracked the volume as a percentage of the allowed volume for a behavior graph. Changes reflected in MemberDetails object.
8
+
4
9
  1.16.0 (2021-03-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.17.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-detective/customizations'
48
48
  # @!group service
49
49
  module Aws::Detective
50
50
 
51
- GEM_VERSION = '1.16.0'
51
+ GEM_VERSION = '1.17.0'
52
52
 
53
53
  end
@@ -482,6 +482,8 @@ module Aws::Detective
482
482
  # resp.members[0].disabled_reason #=> String, one of "VOLUME_TOO_HIGH", "VOLUME_UNKNOWN"
483
483
  # resp.members[0].invited_time #=> Time
484
484
  # resp.members[0].updated_time #=> Time
485
+ # resp.members[0].volume_usage_in_bytes #=> Integer
486
+ # resp.members[0].volume_usage_updated_time #=> Time
485
487
  # resp.members[0].percent_of_graph_utilization #=> Float
486
488
  # resp.members[0].percent_of_graph_utilization_updated_time #=> Time
487
489
  # resp.unprocessed_accounts #=> Array
@@ -631,6 +633,8 @@ module Aws::Detective
631
633
  # resp.member_details[0].disabled_reason #=> String, one of "VOLUME_TOO_HIGH", "VOLUME_UNKNOWN"
632
634
  # resp.member_details[0].invited_time #=> Time
633
635
  # resp.member_details[0].updated_time #=> Time
636
+ # resp.member_details[0].volume_usage_in_bytes #=> Integer
637
+ # resp.member_details[0].volume_usage_updated_time #=> Time
634
638
  # resp.member_details[0].percent_of_graph_utilization #=> Float
635
639
  # resp.member_details[0].percent_of_graph_utilization_updated_time #=> Time
636
640
  # resp.unprocessed_accounts #=> Array
@@ -742,6 +746,8 @@ module Aws::Detective
742
746
  # resp.invitations[0].disabled_reason #=> String, one of "VOLUME_TOO_HIGH", "VOLUME_UNKNOWN"
743
747
  # resp.invitations[0].invited_time #=> Time
744
748
  # resp.invitations[0].updated_time #=> Time
749
+ # resp.invitations[0].volume_usage_in_bytes #=> Integer
750
+ # resp.invitations[0].volume_usage_updated_time #=> Time
745
751
  # resp.invitations[0].percent_of_graph_utilization #=> Float
746
752
  # resp.invitations[0].percent_of_graph_utilization_updated_time #=> Time
747
753
  # resp.next_token #=> String
@@ -799,6 +805,8 @@ module Aws::Detective
799
805
  # resp.member_details[0].disabled_reason #=> String, one of "VOLUME_TOO_HIGH", "VOLUME_UNKNOWN"
800
806
  # resp.member_details[0].invited_time #=> Time
801
807
  # resp.member_details[0].updated_time #=> Time
808
+ # resp.member_details[0].volume_usage_in_bytes #=> Integer
809
+ # resp.member_details[0].volume_usage_updated_time #=> Time
802
810
  # resp.member_details[0].percent_of_graph_utilization #=> Float
803
811
  # resp.member_details[0].percent_of_graph_utilization_updated_time #=> Time
804
812
  # resp.next_token #=> String
@@ -973,7 +981,7 @@ module Aws::Detective
973
981
  params: params,
974
982
  config: config)
975
983
  context[:gem_name] = 'aws-sdk-detective'
976
- context[:gem_version] = '1.16.0'
984
+ context[:gem_version] = '1.17.0'
977
985
  Seahorse::Client::Request.new(handlers, context)
978
986
  end
979
987
 
@@ -19,6 +19,7 @@ module Aws::Detective
19
19
  AccountIdList = Shapes::ListShape.new(name: 'AccountIdList')
20
20
  AccountList = Shapes::ListShape.new(name: 'AccountList')
21
21
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
22
+ ByteValue = Shapes::IntegerShape.new(name: 'ByteValue')
22
23
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
23
24
  CreateGraphRequest = Shapes::StructureShape.new(name: 'CreateGraphRequest')
24
25
  CreateGraphResponse = Shapes::StructureShape.new(name: 'CreateGraphResponse')
@@ -165,14 +166,16 @@ module Aws::Detective
165
166
  MemberDetail.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
166
167
  MemberDetail.add_member(:email_address, Shapes::ShapeRef.new(shape: EmailAddress, location_name: "EmailAddress"))
167
168
  MemberDetail.add_member(:graph_arn, Shapes::ShapeRef.new(shape: GraphArn, location_name: "GraphArn"))
168
- MemberDetail.add_member(:master_id, Shapes::ShapeRef.new(shape: AccountId, deprecated: true, location_name: "MasterId", metadata: {"deprecatedMessage"=>"This property is deprecated, use AdministratorId instead."}))
169
+ MemberDetail.add_member(:master_id, Shapes::ShapeRef.new(shape: AccountId, deprecated: true, location_name: "MasterId", metadata: {"deprecatedMessage"=>"This property is deprecated. Use AdministratorId instead."}))
169
170
  MemberDetail.add_member(:administrator_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AdministratorId"))
170
171
  MemberDetail.add_member(:status, Shapes::ShapeRef.new(shape: MemberStatus, location_name: "Status"))
171
172
  MemberDetail.add_member(:disabled_reason, Shapes::ShapeRef.new(shape: MemberDisabledReason, location_name: "DisabledReason"))
172
173
  MemberDetail.add_member(:invited_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "InvitedTime"))
173
174
  MemberDetail.add_member(:updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedTime"))
174
- MemberDetail.add_member(:percent_of_graph_utilization, Shapes::ShapeRef.new(shape: Percentage, location_name: "PercentOfGraphUtilization"))
175
- MemberDetail.add_member(:percent_of_graph_utilization_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "PercentOfGraphUtilizationUpdatedTime"))
175
+ MemberDetail.add_member(:volume_usage_in_bytes, Shapes::ShapeRef.new(shape: ByteValue, location_name: "VolumeUsageInBytes"))
176
+ MemberDetail.add_member(:volume_usage_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "VolumeUsageUpdatedTime"))
177
+ MemberDetail.add_member(:percent_of_graph_utilization, Shapes::ShapeRef.new(shape: Percentage, deprecated: true, location_name: "PercentOfGraphUtilization", metadata: {"deprecatedMessage"=>"This property is deprecated. Use VolumeUsageInBytes instead."}))
178
+ MemberDetail.add_member(:percent_of_graph_utilization_updated_time, Shapes::ShapeRef.new(shape: Timestamp, deprecated: true, location_name: "PercentOfGraphUtilizationUpdatedTime", metadata: {"deprecatedMessage"=>"This property is deprecated. Use VolumeUsageUpdatedTime instead."}))
176
179
  MemberDetail.struct_class = Types::MemberDetail
177
180
 
178
181
  MemberDetailList.member = Shapes::ShapeRef.new(shape: MemberDetail)
@@ -557,8 +557,6 @@ module Aws::Detective
557
557
  # @return [String]
558
558
  #
559
559
  # @!attribute [rw] master_id
560
- # Deprecated. Instead of `MasterId`, use `AdministratorId`.
561
- #
562
560
  # The AWS account identifier of the administrator account for the
563
561
  # behavior graph.
564
562
  # @return [String]
@@ -621,6 +619,15 @@ module Aws::Detective
621
619
  # value is in milliseconds since the epoch.
622
620
  # @return [Time]
623
621
  #
622
+ # @!attribute [rw] volume_usage_in_bytes
623
+ # The data volume in bytes per day for the member account.
624
+ # @return [Integer]
625
+ #
626
+ # @!attribute [rw] volume_usage_updated_time
627
+ # The data and time when the member account data volume was last
628
+ # updated.
629
+ # @return [Time]
630
+ #
624
631
  # @!attribute [rw] percent_of_graph_utilization
625
632
  # The member account data volume as a percentage of the maximum
626
633
  # allowed data volume. 0 indicates 0 percent, and 100 indicates 100
@@ -653,6 +660,8 @@ module Aws::Detective
653
660
  :disabled_reason,
654
661
  :invited_time,
655
662
  :updated_time,
663
+ :volume_usage_in_bytes,
664
+ :volume_usage_updated_time,
656
665
  :percent_of_graph_utilization,
657
666
  :percent_of_graph_utilization_updated_time)
658
667
  SENSITIVE = []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-detective
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.17.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: 2021-03-31 00:00:00.000000000 Z
11
+ date: 2021-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  version: '0'
85
85
  requirements: []
86
86
  rubyforge_project:
87
- rubygems_version: 2.7.6.2
87
+ rubygems_version: 2.7.6.3
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: AWS SDK for Ruby - Amazon Detective