aws-sdk-appsync 1.101.0 → 1.102.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: da070aafe31fcadba9c4220f3b572ba7416d2e8b31687c758c907c53dd52bcdd
4
- data.tar.gz: e683376a9272c908362dcf0eedf499c326fd280cf454ec3c5bc4d80fda4b7d9c
3
+ metadata.gz: f3d105a956c76ef0cde999127d8299250ed1796554dd75ff676d3ee6faca4a6b
4
+ data.tar.gz: '09eb1a2222398b69797aa426a75a8ed2d8584dd52d6ac6b3da2748527f23f075'
5
5
  SHA512:
6
- metadata.gz: 859216a4183ccb0ca56af3ff6c96a57a5477528ae91d86ddfba16ac391e1683413f26db31ae9893664756e6507b22cd1a4fd3823ce4ceee9adc6a4d7e8d95286
7
- data.tar.gz: ea5cf3b03137b8f4952113ecee8fe268a48d9cedf3aa6d61eb14f657208cc6ab785a4fa6aa8bd3db7c5fb844f49a90e2487d59baacf009888462f424ff40c88d
6
+ metadata.gz: d6e64bf7cdf9b703c0a056db50a3693cf8ee2fd2b368cbc8dac22629ecc615e1c46af19aa4d60deb207642f1cd8a82f4f55411c595b3eaf4761f63b67fb6729a
7
+ data.tar.gz: 20f9c698b85eb08ba58b60c59b856d5a11094645292af6a53eabf50589131a8344a1f3d399fe40c982915121024ce3d97923acf58501819e41f61e5498b1ff41
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.102.0 (2025-03-18)
5
+ ------------------
6
+
7
+ * Feature - Providing Tagging support for DomainName in AppSync
8
+
4
9
  1.101.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.101.0
1
+ 1.102.0
@@ -1153,6 +1153,9 @@ module Aws::AppSync
1153
1153
  # @option params [String] :description
1154
1154
  # A description of the `DomainName`.
1155
1155
  #
1156
+ # @option params [Hash<String,String>] :tags
1157
+ # A map with keys of `TagKey` objects and values of `TagValue` objects.
1158
+ #
1156
1159
  # @return [Types::CreateDomainNameResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1157
1160
  #
1158
1161
  # * {Types::CreateDomainNameResponse#domain_name_config #domain_name_config} => Types::DomainNameConfig
@@ -1163,6 +1166,9 @@ module Aws::AppSync
1163
1166
  # domain_name: "DomainName", # required
1164
1167
  # certificate_arn: "CertificateArn", # required
1165
1168
  # description: "Description",
1169
+ # tags: {
1170
+ # "TagKey" => "TagValue",
1171
+ # },
1166
1172
  # })
1167
1173
  #
1168
1174
  # @example Response structure
@@ -1172,6 +1178,9 @@ module Aws::AppSync
1172
1178
  # resp.domain_name_config.certificate_arn #=> String
1173
1179
  # resp.domain_name_config.appsync_domain_name #=> String
1174
1180
  # resp.domain_name_config.hosted_zone_id #=> String
1181
+ # resp.domain_name_config.tags #=> Hash
1182
+ # resp.domain_name_config.tags["TagKey"] #=> String
1183
+ # resp.domain_name_config.domain_name_arn #=> String
1175
1184
  #
1176
1185
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateDomainName AWS API Documentation
1177
1186
  #
@@ -2513,6 +2522,9 @@ module Aws::AppSync
2513
2522
  # resp.domain_name_config.certificate_arn #=> String
2514
2523
  # resp.domain_name_config.appsync_domain_name #=> String
2515
2524
  # resp.domain_name_config.hosted_zone_id #=> String
2525
+ # resp.domain_name_config.tags #=> Hash
2526
+ # resp.domain_name_config.tags["TagKey"] #=> String
2527
+ # resp.domain_name_config.domain_name_arn #=> String
2516
2528
  #
2517
2529
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetDomainName AWS API Documentation
2518
2530
  #
@@ -3171,6 +3183,9 @@ module Aws::AppSync
3171
3183
  # resp.domain_name_configs[0].certificate_arn #=> String
3172
3184
  # resp.domain_name_configs[0].appsync_domain_name #=> String
3173
3185
  # resp.domain_name_configs[0].hosted_zone_id #=> String
3186
+ # resp.domain_name_configs[0].tags #=> Hash
3187
+ # resp.domain_name_configs[0].tags["TagKey"] #=> String
3188
+ # resp.domain_name_configs[0].domain_name_arn #=> String
3174
3189
  # resp.next_token #=> String
3175
3190
  #
3176
3191
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/ListDomainNames AWS API Documentation
@@ -4436,6 +4451,9 @@ module Aws::AppSync
4436
4451
  # resp.domain_name_config.certificate_arn #=> String
4437
4452
  # resp.domain_name_config.appsync_domain_name #=> String
4438
4453
  # resp.domain_name_config.hosted_zone_id #=> String
4454
+ # resp.domain_name_config.tags #=> Hash
4455
+ # resp.domain_name_config.tags["TagKey"] #=> String
4456
+ # resp.domain_name_config.domain_name_arn #=> String
4439
4457
  #
4440
4458
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateDomainName AWS API Documentation
4441
4459
  #
@@ -5021,7 +5039,7 @@ module Aws::AppSync
5021
5039
  tracer: tracer
5022
5040
  )
5023
5041
  context[:gem_name] = 'aws-sdk-appsync'
5024
- context[:gem_version] = '1.101.0'
5042
+ context[:gem_version] = '1.102.0'
5025
5043
  Seahorse::Client::Request.new(handlers, context)
5026
5044
  end
5027
5045
 
@@ -549,6 +549,7 @@ module Aws::AppSync
549
549
  CreateDomainNameRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "domainName"))
550
550
  CreateDomainNameRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateArn, required: true, location_name: "certificateArn"))
551
551
  CreateDomainNameRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
552
+ CreateDomainNameRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
552
553
  CreateDomainNameRequest.struct_class = Types::CreateDomainNameRequest
553
554
 
554
555
  CreateDomainNameResponse.add_member(:domain_name_config, Shapes::ShapeRef.new(shape: DomainNameConfig, location_name: "domainNameConfig"))
@@ -758,6 +759,8 @@ module Aws::AppSync
758
759
  DomainNameConfig.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateArn, location_name: "certificateArn"))
759
760
  DomainNameConfig.add_member(:appsync_domain_name, Shapes::ShapeRef.new(shape: String, location_name: "appsyncDomainName"))
760
761
  DomainNameConfig.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "hostedZoneId"))
762
+ DomainNameConfig.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
763
+ DomainNameConfig.add_member(:domain_name_arn, Shapes::ShapeRef.new(shape: String, location_name: "domainNameArn"))
761
764
  DomainNameConfig.struct_class = Types::DomainNameConfig
762
765
 
763
766
  DomainNameConfigs.member = Shapes::ShapeRef.new(shape: DomainNameConfig)
@@ -1268,12 +1268,18 @@ module Aws::AppSync
1268
1268
  # A description of the `DomainName`.
1269
1269
  # @return [String]
1270
1270
  #
1271
+ # @!attribute [rw] tags
1272
+ # A map with keys of `TagKey` objects and values of `TagValue`
1273
+ # objects.
1274
+ # @return [Hash<String,String>]
1275
+ #
1271
1276
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateDomainNameRequest AWS API Documentation
1272
1277
  #
1273
1278
  class CreateDomainNameRequest < Struct.new(
1274
1279
  :domain_name,
1275
1280
  :certificate_arn,
1276
- :description)
1281
+ :description,
1282
+ :tags)
1277
1283
  SENSITIVE = []
1278
1284
  include Aws::Structure
1279
1285
  end
@@ -2271,6 +2277,15 @@ module Aws::AppSync
2271
2277
  # The ID of your Amazon Route 53 hosted zone.
2272
2278
  # @return [String]
2273
2279
  #
2280
+ # @!attribute [rw] tags
2281
+ # A map with keys of `TagKey` objects and values of `TagValue`
2282
+ # objects.
2283
+ # @return [Hash<String,String>]
2284
+ #
2285
+ # @!attribute [rw] domain_name_arn
2286
+ # The Amazon Resource Name (ARN) of the domain name.
2287
+ # @return [String]
2288
+ #
2274
2289
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DomainNameConfig AWS API Documentation
2275
2290
  #
2276
2291
  class DomainNameConfig < Struct.new(
@@ -2278,7 +2293,9 @@ module Aws::AppSync
2278
2293
  :description,
2279
2294
  :certificate_arn,
2280
2295
  :appsync_domain_name,
2281
- :hosted_zone_id)
2296
+ :hosted_zone_id,
2297
+ :tags,
2298
+ :domain_name_arn)
2282
2299
  SENSITIVE = []
2283
2300
  include Aws::Structure
2284
2301
  end
@@ -54,7 +54,7 @@ module Aws::AppSync
54
54
  autoload :EndpointProvider, 'aws-sdk-appsync/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-appsync/endpoints'
56
56
 
57
- GEM_VERSION = '1.101.0'
57
+ GEM_VERSION = '1.102.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -291,7 +291,8 @@ module Aws
291
291
  def create_domain_name: (
292
292
  domain_name: ::String,
293
293
  certificate_arn: ::String,
294
- ?description: ::String
294
+ ?description: ::String,
295
+ ?tags: Hash[::String, ::String]
295
296
  ) -> _CreateDomainNameResponseSuccess
296
297
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameResponseSuccess
297
298
 
data/sig/types.rbs CHANGED
@@ -296,6 +296,7 @@ module Aws::AppSync
296
296
  attr_accessor domain_name: ::String
297
297
  attr_accessor certificate_arn: ::String
298
298
  attr_accessor description: ::String
299
+ attr_accessor tags: ::Hash[::String, ::String]
299
300
  SENSITIVE: []
300
301
  end
301
302
 
@@ -568,6 +569,8 @@ module Aws::AppSync
568
569
  attr_accessor certificate_arn: ::String
569
570
  attr_accessor appsync_domain_name: ::String
570
571
  attr_accessor hosted_zone_id: ::String
572
+ attr_accessor tags: ::Hash[::String, ::String]
573
+ attr_accessor domain_name_arn: ::String
571
574
  SENSITIVE: []
572
575
  end
573
576
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appsync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.101.0
4
+ version: 1.102.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core