aws-sdk-guardduty 1.105.0 → 1.107.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-guardduty/client.rb +362 -4
- data/lib/aws-sdk-guardduty/client_api.rb +11 -0
- data/lib/aws-sdk-guardduty/types.rb +424 -8
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/types.rbs +12 -0
- metadata +2 -2
@@ -407,6 +407,7 @@ module Aws::GuardDuty
|
|
407
407
|
PublishingStatus = Shapes::StringShape.new(name: 'PublishingStatus')
|
408
408
|
RdsDbInstanceDetails = Shapes::StructureShape.new(name: 'RdsDbInstanceDetails')
|
409
409
|
RdsDbUserDetails = Shapes::StructureShape.new(name: 'RdsDbUserDetails')
|
410
|
+
RdsLimitlessDbDetails = Shapes::StructureShape.new(name: 'RdsLimitlessDbDetails')
|
410
411
|
RdsLoginAttemptAction = Shapes::StructureShape.new(name: 'RdsLoginAttemptAction')
|
411
412
|
RemoteAccountDetails = Shapes::StructureShape.new(name: 'RemoteAccountDetails')
|
412
413
|
RemoteIpDetails = Shapes::StructureShape.new(name: 'RemoteIpDetails')
|
@@ -1953,6 +1954,15 @@ module Aws::GuardDuty
|
|
1953
1954
|
RdsDbUserDetails.add_member(:auth_method, Shapes::ShapeRef.new(shape: String, location_name: "authMethod"))
|
1954
1955
|
RdsDbUserDetails.struct_class = Types::RdsDbUserDetails
|
1955
1956
|
|
1957
|
+
RdsLimitlessDbDetails.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: String, location_name: "dbShardGroupIdentifier"))
|
1958
|
+
RdsLimitlessDbDetails.add_member(:db_shard_group_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "dbShardGroupResourceId"))
|
1959
|
+
RdsLimitlessDbDetails.add_member(:db_shard_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "dbShardGroupArn"))
|
1960
|
+
RdsLimitlessDbDetails.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "engine"))
|
1961
|
+
RdsLimitlessDbDetails.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "engineVersion"))
|
1962
|
+
RdsLimitlessDbDetails.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "dbClusterIdentifier"))
|
1963
|
+
RdsLimitlessDbDetails.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1964
|
+
RdsLimitlessDbDetails.struct_class = Types::RdsLimitlessDbDetails
|
1965
|
+
|
1956
1966
|
RdsLoginAttemptAction.add_member(:remote_ip_details, Shapes::ShapeRef.new(shape: RemoteIpDetails, location_name: "remoteIpDetails"))
|
1957
1967
|
RdsLoginAttemptAction.add_member(:login_attributes, Shapes::ShapeRef.new(shape: LoginAttributes, location_name: "LoginAttributes"))
|
1958
1968
|
RdsLoginAttemptAction.struct_class = Types::RdsLoginAttemptAction
|
@@ -1983,6 +1993,7 @@ module Aws::GuardDuty
|
|
1983
1993
|
Resource.add_member(:ecs_cluster_details, Shapes::ShapeRef.new(shape: EcsClusterDetails, location_name: "ecsClusterDetails"))
|
1984
1994
|
Resource.add_member(:container_details, Shapes::ShapeRef.new(shape: Container, location_name: "containerDetails"))
|
1985
1995
|
Resource.add_member(:rds_db_instance_details, Shapes::ShapeRef.new(shape: RdsDbInstanceDetails, location_name: "rdsDbInstanceDetails"))
|
1996
|
+
Resource.add_member(:rds_limitless_db_details, Shapes::ShapeRef.new(shape: RdsLimitlessDbDetails, location_name: "rdsLimitlessDbDetails"))
|
1986
1997
|
Resource.add_member(:rds_db_user_details, Shapes::ShapeRef.new(shape: RdsDbUserDetails, location_name: "rdsDbUserDetails"))
|
1987
1998
|
Resource.add_member(:lambda_details, Shapes::ShapeRef.new(shape: LambdaDetails, location_name: "lambdaDetails"))
|
1988
1999
|
Resource.struct_class = Types::Resource
|