aws-sdk-guardduty 1.131.0 → 1.132.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
  SHA256:
3
- metadata.gz: a4da201be0e65934042fa4612f70e57d8b09aa6e873cc00b630a77e359980017
4
- data.tar.gz: fdc302e48e089772bc1c5d4e62ab044533808fab65da3391bce4aeb6e7e338ba
3
+ metadata.gz: e0c134ec320e4a4734acac70160b65590d98de072e9a4cc6c3f822606ba0b67a
4
+ data.tar.gz: c24b41f7b666f932b34bd3f712892e4291de306ee174218df665b840e9311b65
5
5
  SHA512:
6
- metadata.gz: 725cc6805fca147ad3f66de4df049072ac1e43838f92f6d0a6e787c2df8e31fae24bf76a28f98b4ccdc9ae778bc519046ef87be7705baefb60d0766fdbca4c40
7
- data.tar.gz: a6632906aa37475ef0f3c44ea64f856837a9ebad4ab1c87f7bc940f9241bdf2814bb7883ed1352bcd87141d34c338c6db2c97dcf58bfd409351035edf02011fa
6
+ metadata.gz: b4d7a9d3382be5f405090d6c6f6cbcf70f23b476e453846e8a4bf2565fa4f130afcf508fced1c3826fc6bb17126c0d71845b6f54d8548fb882bb86cd0e91ebf2
7
+ data.tar.gz: 2fe2e23004adcc91d91eb8705140414cf5e9bc535aa9b1b74f7c90d84c80b35210ed7e2e20473211a215e152f61072f683f7cbc9378063f607911068fdafd661
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.132.0 (2025-11-10)
5
+ ------------------
6
+
7
+ * Feature - Include tags filed in CreatePublishingDestinationRequest and DescribePublishingDestinationResponse.
8
+
4
9
  1.131.0 (2025-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.131.0
1
+ 1.132.0
@@ -1287,6 +1287,9 @@ module Aws::GuardDuty
1287
1287
  # **A suitable default value is auto-generated.** You should normally
1288
1288
  # not need to pass this option.**
1289
1289
  #
1290
+ # @option params [Hash<String,String>] :tags
1291
+ # The tags to be added to a new publishing destination resource.
1292
+ #
1290
1293
  # @return [Types::CreatePublishingDestinationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1291
1294
  #
1292
1295
  # * {Types::CreatePublishingDestinationResponse#destination_id #destination_id} => String
@@ -1301,6 +1304,9 @@ module Aws::GuardDuty
1301
1304
  # kms_key_arn: "String",
1302
1305
  # },
1303
1306
  # client_token: "ClientToken",
1307
+ # tags: {
1308
+ # "TagKey" => "TagValue",
1309
+ # },
1304
1310
  # })
1305
1311
  #
1306
1312
  # @example Response structure
@@ -2200,6 +2206,7 @@ module Aws::GuardDuty
2200
2206
  # * {Types::DescribePublishingDestinationResponse#status #status} => String
2201
2207
  # * {Types::DescribePublishingDestinationResponse#publishing_failure_start_timestamp #publishing_failure_start_timestamp} => Integer
2202
2208
  # * {Types::DescribePublishingDestinationResponse#destination_properties #destination_properties} => Types::DestinationProperties
2209
+ # * {Types::DescribePublishingDestinationResponse#tags #tags} => Hash&lt;String,String&gt;
2203
2210
  #
2204
2211
  # @example Request syntax with placeholder values
2205
2212
  #
@@ -2216,6 +2223,8 @@ module Aws::GuardDuty
2216
2223
  # resp.publishing_failure_start_timestamp #=> Integer
2217
2224
  # resp.destination_properties.destination_arn #=> String
2218
2225
  # resp.destination_properties.kms_key_arn #=> String
2226
+ # resp.tags #=> Hash
2227
+ # resp.tags["TagKey"] #=> String
2219
2228
  #
2220
2229
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DescribePublishingDestination AWS API Documentation
2221
2230
  #
@@ -6209,7 +6218,7 @@ module Aws::GuardDuty
6209
6218
  tracer: tracer
6210
6219
  )
6211
6220
  context[:gem_name] = 'aws-sdk-guardduty'
6212
- context[:gem_version] = '1.131.0'
6221
+ context[:gem_version] = '1.132.0'
6213
6222
  Seahorse::Client::Request.new(handlers, context)
6214
6223
  end
6215
6224
 
@@ -978,6 +978,7 @@ module Aws::GuardDuty
978
978
  CreatePublishingDestinationRequest.add_member(:destination_type, Shapes::ShapeRef.new(shape: DestinationType, required: true, location_name: "destinationType"))
979
979
  CreatePublishingDestinationRequest.add_member(:destination_properties, Shapes::ShapeRef.new(shape: DestinationProperties, required: true, location_name: "destinationProperties"))
980
980
  CreatePublishingDestinationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
981
+ CreatePublishingDestinationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
981
982
  CreatePublishingDestinationRequest.struct_class = Types::CreatePublishingDestinationRequest
982
983
 
983
984
  CreatePublishingDestinationResponse.add_member(:destination_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "destinationId"))
@@ -1170,6 +1171,7 @@ module Aws::GuardDuty
1170
1171
  DescribePublishingDestinationResponse.add_member(:status, Shapes::ShapeRef.new(shape: PublishingStatus, required: true, location_name: "status"))
1171
1172
  DescribePublishingDestinationResponse.add_member(:publishing_failure_start_timestamp, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "publishingFailureStartTimestamp"))
1172
1173
  DescribePublishingDestinationResponse.add_member(:destination_properties, Shapes::ShapeRef.new(shape: DestinationProperties, required: true, location_name: "destinationProperties"))
1174
+ DescribePublishingDestinationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1173
1175
  DescribePublishingDestinationResponse.struct_class = Types::DescribePublishingDestinationResponse
1174
1176
 
1175
1177
  Destination.add_member(:destination_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "destinationId"))
@@ -1895,13 +1895,18 @@ module Aws::GuardDuty
1895
1895
  # not need to pass this option.
1896
1896
  # @return [String]
1897
1897
  #
1898
+ # @!attribute [rw] tags
1899
+ # The tags to be added to a new publishing destination resource.
1900
+ # @return [Hash<String,String>]
1901
+ #
1898
1902
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/CreatePublishingDestinationRequest AWS API Documentation
1899
1903
  #
1900
1904
  class CreatePublishingDestinationRequest < Struct.new(
1901
1905
  :detector_id,
1902
1906
  :destination_type,
1903
1907
  :destination_properties,
1904
- :client_token)
1908
+ :client_token,
1909
+ :tags)
1905
1910
  SENSITIVE = []
1906
1911
  include Aws::Structure
1907
1912
  end
@@ -2938,6 +2943,10 @@ module Aws::GuardDuty
2938
2943
  # and `KmsKeyArn` of the publishing destination.
2939
2944
  # @return [Types::DestinationProperties]
2940
2945
  #
2946
+ # @!attribute [rw] tags
2947
+ # The tags of the publishing destination resource.
2948
+ # @return [Hash<String,String>]
2949
+ #
2941
2950
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DescribePublishingDestinationResponse AWS API Documentation
2942
2951
  #
2943
2952
  class DescribePublishingDestinationResponse < Struct.new(
@@ -2945,7 +2954,8 @@ module Aws::GuardDuty
2945
2954
  :destination_type,
2946
2955
  :status,
2947
2956
  :publishing_failure_start_timestamp,
2948
- :destination_properties)
2957
+ :destination_properties,
2958
+ :tags)
2949
2959
  SENSITIVE = []
2950
2960
  include Aws::Structure
2951
2961
  end
@@ -54,7 +54,7 @@ module Aws::GuardDuty
54
54
  autoload :EndpointProvider, 'aws-sdk-guardduty/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-guardduty/endpoints'
56
56
 
57
- GEM_VERSION = '1.131.0'
57
+ GEM_VERSION = '1.132.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -251,7 +251,8 @@ module Aws
251
251
  destination_arn: ::String?,
252
252
  kms_key_arn: ::String?
253
253
  },
254
- ?client_token: ::String
254
+ ?client_token: ::String,
255
+ ?tags: Hash[::String, ::String]
255
256
  ) -> _CreatePublishingDestinationResponseSuccess
256
257
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePublishingDestinationResponseSuccess
257
258
 
@@ -475,6 +476,7 @@ module Aws
475
476
  def status: () -> ("PENDING_VERIFICATION" | "PUBLISHING" | "UNABLE_TO_PUBLISH_FIX_DESTINATION_PROPERTY" | "STOPPED")
476
477
  def publishing_failure_start_timestamp: () -> ::Integer
477
478
  def destination_properties: () -> Types::DestinationProperties
479
+ def tags: () -> ::Hash[::String, ::String]
478
480
  end
479
481
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#describe_publishing_destination-instance_method
480
482
  def describe_publishing_destination: (
data/sig/types.rbs CHANGED
@@ -432,6 +432,7 @@ module Aws::GuardDuty
432
432
  attr_accessor destination_type: ("S3")
433
433
  attr_accessor destination_properties: Types::DestinationProperties
434
434
  attr_accessor client_token: ::String
435
+ attr_accessor tags: ::Hash[::String, ::String]
435
436
  SENSITIVE: []
436
437
  end
437
438
 
@@ -699,6 +700,7 @@ module Aws::GuardDuty
699
700
  attr_accessor status: ("PENDING_VERIFICATION" | "PUBLISHING" | "UNABLE_TO_PUBLISH_FIX_DESTINATION_PROPERTY" | "STOPPED")
700
701
  attr_accessor publishing_failure_start_timestamp: ::Integer
701
702
  attr_accessor destination_properties: Types::DestinationProperties
703
+ attr_accessor tags: ::Hash[::String, ::String]
702
704
  SENSITIVE: []
703
705
  end
704
706
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-guardduty
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.131.0
4
+ version: 1.132.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services