aws-sdk-globalaccelerator 1.42.0 → 1.43.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: eab95de133dc13a40243709842f694407ab48cd97fb018d0f5bdf4efe40a4678
4
- data.tar.gz: 321eb698aebc7eb0c9b545f15439815939ea0191013c4b26c16d2541b81e7eb0
3
+ metadata.gz: 571f0debc2545b7950964f59be62695fc673f0e73d212161aaabae8c8b079d79
4
+ data.tar.gz: 43c37c10dd642f25509877ecd2440023fa2dd6e4a7b2e950a08f6f075dafee3b
5
5
  SHA512:
6
- metadata.gz: 157433e8eae9dd5392b53c83d7ae6b934ec5c9f8819c19680add06bbff98c2825ffe73b0e01e8d59a11760f3acb007781e122befd1a701fd4b94f4b2f3f7e828
7
- data.tar.gz: 8df8128678e864af421cbf7bbc9d9d944259906091c6579ed188ba7066e8647634deb9a08e17e926b9ca6749fd53c42c3845c5a0e3c0999a241871ee2f934d71
6
+ metadata.gz: f5d60a0079a5ff914e00231a7fe43f2b39d7bcae4c37988828785aff16c5a4f8bda40140dd74250df4cb490bec2af77b47202956c29097c45f0d2f4bf8d7de63
7
+ data.tar.gz: d0e0e27ce06815facc80f939a95fc8b8f8aa46501ac6d052ea018ccb47c8d603f239dab4cebf880e72c2010afc3e53490bc48305551f1ac1f99db1da50f1dce4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.42.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -226,4 +233,4 @@ Unreleased Changes
226
233
  1.0.0 (2018-11-27)
227
234
  ------------------
228
235
 
229
- * Feature - Initial release of `aws-sdk-globalaccelerator`.
236
+ * Feature - Initial release of `aws-sdk-globalaccelerator`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -3084,7 +3084,7 @@ module Aws::GlobalAccelerator
3084
3084
  params: params,
3085
3085
  config: config)
3086
3086
  context[:gem_name] = 'aws-sdk-globalaccelerator'
3087
- context[:gem_version] = '1.42.0'
3087
+ context[:gem_version] = '1.43.0'
3088
3088
  Seahorse::Client::Request.new(handlers, context)
3089
3089
  end
3090
3090
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::GlobalAccelerator
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://globalaccelerator-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://globalaccelerator-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://globalaccelerator.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://globalaccelerator.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2dsb2JhbGFjY2VsZXJhdG9yLWZpcHMue1Jl
77
- Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9Iiwi
78
- cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
79
- In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxT
80
- dGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
81
- IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
82
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
83
- IjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
84
- ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
85
- cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
86
- UmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJy
87
- dWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
88
- dHBzOi8vZ2xvYmFsYWNjZWxlcmF0b3ItZmlwcy57UmVnaW9ufS57UGFydGl0
89
- aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
90
- cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10s
91
- ImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBk
92
- b2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
93
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
94
- IjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxl
95
- cyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
96
- diI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0
97
- aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUi
98
- OiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6
99
- eyJ1cmwiOiJodHRwczovL2dsb2JhbGFjY2VsZXJhdG9yLntSZWdpb259LntQ
100
- YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
101
- ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
102
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBi
103
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2si
104
- LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50
105
- Ijp7InVybCI6Imh0dHBzOi8vZ2xvYmFsYWNjZWxlcmF0b3Iue1JlZ2lvbn0u
106
- e1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30s
107
- ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -229,18 +229,6 @@ module Aws::GlobalAccelerator
229
229
  include Aws::Structure
230
230
  end
231
231
 
232
- # @note When making an API call, you may pass AddCustomRoutingEndpointsRequest
233
- # data as a hash:
234
- #
235
- # {
236
- # endpoint_configurations: [ # required
237
- # {
238
- # endpoint_id: "GenericString",
239
- # },
240
- # ],
241
- # endpoint_group_arn: "GenericString", # required
242
- # }
243
- #
244
232
  # @!attribute [rw] endpoint_configurations
245
233
  # The list of endpoint objects to add to a custom routing accelerator.
246
234
  # @return [Array<Types::CustomRoutingEndpointConfiguration>]
@@ -277,20 +265,6 @@ module Aws::GlobalAccelerator
277
265
  include Aws::Structure
278
266
  end
279
267
 
280
- # @note When making an API call, you may pass AddEndpointsRequest
281
- # data as a hash:
282
- #
283
- # {
284
- # endpoint_configurations: [ # required
285
- # {
286
- # endpoint_id: "GenericString",
287
- # weight: 1,
288
- # client_ip_preservation_enabled: false,
289
- # },
290
- # ],
291
- # endpoint_group_arn: "GenericString", # required
292
- # }
293
- #
294
268
  # @!attribute [rw] endpoint_configurations
295
269
  # The list of endpoint objects.
296
270
  # @return [Array<Types::EndpointConfiguration>]
@@ -325,13 +299,6 @@ module Aws::GlobalAccelerator
325
299
  include Aws::Structure
326
300
  end
327
301
 
328
- # @note When making an API call, you may pass AdvertiseByoipCidrRequest
329
- # data as a hash:
330
- #
331
- # {
332
- # cidr: "GenericString", # required
333
- # }
334
- #
335
302
  # @!attribute [rw] cidr
336
303
  # The address range, in CIDR notation. This must be the exact range
337
304
  # that you provisioned. You can't advertise only a portion of the
@@ -358,17 +325,6 @@ module Aws::GlobalAccelerator
358
325
  include Aws::Structure
359
326
  end
360
327
 
361
- # @note When making an API call, you may pass AllowCustomRoutingTrafficRequest
362
- # data as a hash:
363
- #
364
- # {
365
- # endpoint_group_arn: "GenericString", # required
366
- # endpoint_id: "GenericString", # required
367
- # destination_addresses: ["IpAddress"],
368
- # destination_ports: [1],
369
- # allow_all_traffic_to_endpoint: false,
370
- # }
371
- #
372
328
  # @!attribute [rw] endpoint_group_arn
373
329
  # The Amazon Resource Name (ARN) of the endpoint group.
374
330
  # @return [String]
@@ -581,14 +537,6 @@ module Aws::GlobalAccelerator
581
537
  #
582
538
  # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
583
539
  #
584
- # @note When making an API call, you may pass CidrAuthorizationContext
585
- # data as a hash:
586
- #
587
- # {
588
- # message: "GenericString", # required
589
- # signature: "GenericString", # required
590
- # }
591
- #
592
540
  # @!attribute [rw] message
593
541
  # The plain-text authorization message for the prefix and account.
594
542
  # @return [String]
@@ -619,23 +567,6 @@ module Aws::GlobalAccelerator
619
567
  include Aws::Structure
620
568
  end
621
569
 
622
- # @note When making an API call, you may pass CreateAcceleratorRequest
623
- # data as a hash:
624
- #
625
- # {
626
- # name: "GenericString", # required
627
- # ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
628
- # ip_addresses: ["IpAddress"],
629
- # enabled: false,
630
- # idempotency_token: "IdempotencyToken", # required
631
- # tags: [
632
- # {
633
- # key: "TagKey", # required
634
- # value: "TagValue", # required
635
- # },
636
- # ],
637
- # }
638
- #
639
570
  # @!attribute [rw] name
640
571
  # The name of the accelerator. The name can have a maximum of 64
641
572
  # characters, must contain only alphanumeric characters, periods (.),
@@ -731,23 +662,6 @@ module Aws::GlobalAccelerator
731
662
  include Aws::Structure
732
663
  end
733
664
 
734
- # @note When making an API call, you may pass CreateCustomRoutingAcceleratorRequest
735
- # data as a hash:
736
- #
737
- # {
738
- # name: "GenericString", # required
739
- # ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
740
- # ip_addresses: ["IpAddress"],
741
- # enabled: false,
742
- # idempotency_token: "IdempotencyToken", # required
743
- # tags: [
744
- # {
745
- # key: "TagKey", # required
746
- # value: "TagValue", # required
747
- # },
748
- # ],
749
- # }
750
- #
751
665
  # @!attribute [rw] name
752
666
  # The name of a custom routing accelerator. The name can have a
753
667
  # maximum of 64 characters, must contain only alphanumeric characters
@@ -842,22 +756,6 @@ module Aws::GlobalAccelerator
842
756
  include Aws::Structure
843
757
  end
844
758
 
845
- # @note When making an API call, you may pass CreateCustomRoutingEndpointGroupRequest
846
- # data as a hash:
847
- #
848
- # {
849
- # listener_arn: "GenericString", # required
850
- # endpoint_group_region: "GenericString", # required
851
- # destination_configurations: [ # required
852
- # {
853
- # from_port: 1, # required
854
- # to_port: 1, # required
855
- # protocols: ["TCP"], # required, accepts TCP, UDP
856
- # },
857
- # ],
858
- # idempotency_token: "IdempotencyToken", # required
859
- # }
860
- #
861
759
  # @!attribute [rw] listener_arn
862
760
  # The Amazon Resource Name (ARN) of the listener for a custom routing
863
761
  # endpoint.
@@ -906,20 +804,6 @@ module Aws::GlobalAccelerator
906
804
  include Aws::Structure
907
805
  end
908
806
 
909
- # @note When making an API call, you may pass CreateCustomRoutingListenerRequest
910
- # data as a hash:
911
- #
912
- # {
913
- # accelerator_arn: "GenericString", # required
914
- # port_ranges: [ # required
915
- # {
916
- # from_port: 1,
917
- # to_port: 1,
918
- # },
919
- # ],
920
- # idempotency_token: "IdempotencyToken", # required
921
- # }
922
- #
923
807
  # @!attribute [rw] accelerator_arn
924
808
  # The Amazon Resource Name (ARN) of the accelerator for a custom
925
809
  # routing listener.
@@ -967,34 +851,6 @@ module Aws::GlobalAccelerator
967
851
  include Aws::Structure
968
852
  end
969
853
 
970
- # @note When making an API call, you may pass CreateEndpointGroupRequest
971
- # data as a hash:
972
- #
973
- # {
974
- # listener_arn: "GenericString", # required
975
- # endpoint_group_region: "GenericString", # required
976
- # endpoint_configurations: [
977
- # {
978
- # endpoint_id: "GenericString",
979
- # weight: 1,
980
- # client_ip_preservation_enabled: false,
981
- # },
982
- # ],
983
- # traffic_dial_percentage: 1.0,
984
- # health_check_port: 1,
985
- # health_check_protocol: "TCP", # accepts TCP, HTTP, HTTPS
986
- # health_check_path: "HealthCheckPath",
987
- # health_check_interval_seconds: 1,
988
- # threshold_count: 1,
989
- # idempotency_token: "IdempotencyToken", # required
990
- # port_overrides: [
991
- # {
992
- # listener_port: 1,
993
- # endpoint_port: 1,
994
- # },
995
- # ],
996
- # }
997
- #
998
854
  # @!attribute [rw] listener_arn
999
855
  # The Amazon Resource Name (ARN) of the listener.
1000
856
  # @return [String]
@@ -1105,22 +961,6 @@ module Aws::GlobalAccelerator
1105
961
  include Aws::Structure
1106
962
  end
1107
963
 
1108
- # @note When making an API call, you may pass CreateListenerRequest
1109
- # data as a hash:
1110
- #
1111
- # {
1112
- # accelerator_arn: "GenericString", # required
1113
- # port_ranges: [ # required
1114
- # {
1115
- # from_port: 1,
1116
- # to_port: 1,
1117
- # },
1118
- # ],
1119
- # protocol: "TCP", # required, accepts TCP, UDP
1120
- # client_affinity: "NONE", # accepts NONE, SOURCE_IP
1121
- # idempotency_token: "IdempotencyToken", # required
1122
- # }
1123
- #
1124
964
  # @!attribute [rw] accelerator_arn
1125
965
  # The Amazon Resource Name (ARN) of your accelerator.
1126
966
  # @return [String]
@@ -1320,15 +1160,6 @@ module Aws::GlobalAccelerator
1320
1160
  # all endpoints (virtual private cloud subnets) in an endpoint group to
1321
1161
  # accept client traffic on.
1322
1162
  #
1323
- # @note When making an API call, you may pass CustomRoutingDestinationConfiguration
1324
- # data as a hash:
1325
- #
1326
- # {
1327
- # from_port: 1, # required
1328
- # to_port: 1, # required
1329
- # protocols: ["TCP"], # required, accepts TCP, UDP
1330
- # }
1331
- #
1332
1163
  # @!attribute [rw] from_port
1333
1164
  # The first port, inclusive, in the range of ports for the endpoint
1334
1165
  # group that is associated with a custom routing accelerator.
@@ -1386,13 +1217,6 @@ module Aws::GlobalAccelerator
1386
1217
  # The list of endpoint objects. For custom routing, this is a list of
1387
1218
  # virtual private cloud (VPC) subnet IDs.
1388
1219
  #
1389
- # @note When making an API call, you may pass CustomRoutingEndpointConfiguration
1390
- # data as a hash:
1391
- #
1392
- # {
1393
- # endpoint_id: "GenericString",
1394
- # }
1395
- #
1396
1220
  # @!attribute [rw] endpoint_id
1397
1221
  # An ID for the endpoint. For custom routing accelerators, this is the
1398
1222
  # virtual private cloud (VPC) subnet ID.
@@ -1485,13 +1309,6 @@ module Aws::GlobalAccelerator
1485
1309
  include Aws::Structure
1486
1310
  end
1487
1311
 
1488
- # @note When making an API call, you may pass DeleteAcceleratorRequest
1489
- # data as a hash:
1490
- #
1491
- # {
1492
- # accelerator_arn: "GenericString", # required
1493
- # }
1494
- #
1495
1312
  # @!attribute [rw] accelerator_arn
1496
1313
  # The Amazon Resource Name (ARN) of an accelerator.
1497
1314
  # @return [String]
@@ -1504,13 +1321,6 @@ module Aws::GlobalAccelerator
1504
1321
  include Aws::Structure
1505
1322
  end
1506
1323
 
1507
- # @note When making an API call, you may pass DeleteCustomRoutingAcceleratorRequest
1508
- # data as a hash:
1509
- #
1510
- # {
1511
- # accelerator_arn: "GenericString", # required
1512
- # }
1513
- #
1514
1324
  # @!attribute [rw] accelerator_arn
1515
1325
  # The Amazon Resource Name (ARN) of the custom routing accelerator to
1516
1326
  # delete.
@@ -1524,13 +1334,6 @@ module Aws::GlobalAccelerator
1524
1334
  include Aws::Structure
1525
1335
  end
1526
1336
 
1527
- # @note When making an API call, you may pass DeleteCustomRoutingEndpointGroupRequest
1528
- # data as a hash:
1529
- #
1530
- # {
1531
- # endpoint_group_arn: "GenericString", # required
1532
- # }
1533
- #
1534
1337
  # @!attribute [rw] endpoint_group_arn
1535
1338
  # The Amazon Resource Name (ARN) of the endpoint group to delete.
1536
1339
  # @return [String]
@@ -1543,13 +1346,6 @@ module Aws::GlobalAccelerator
1543
1346
  include Aws::Structure
1544
1347
  end
1545
1348
 
1546
- # @note When making an API call, you may pass DeleteCustomRoutingListenerRequest
1547
- # data as a hash:
1548
- #
1549
- # {
1550
- # listener_arn: "GenericString", # required
1551
- # }
1552
- #
1553
1349
  # @!attribute [rw] listener_arn
1554
1350
  # The Amazon Resource Name (ARN) of the listener to delete.
1555
1351
  # @return [String]
@@ -1562,13 +1358,6 @@ module Aws::GlobalAccelerator
1562
1358
  include Aws::Structure
1563
1359
  end
1564
1360
 
1565
- # @note When making an API call, you may pass DeleteEndpointGroupRequest
1566
- # data as a hash:
1567
- #
1568
- # {
1569
- # endpoint_group_arn: "GenericString", # required
1570
- # }
1571
- #
1572
1361
  # @!attribute [rw] endpoint_group_arn
1573
1362
  # The Amazon Resource Name (ARN) of the endpoint group to delete.
1574
1363
  # @return [String]
@@ -1581,13 +1370,6 @@ module Aws::GlobalAccelerator
1581
1370
  include Aws::Structure
1582
1371
  end
1583
1372
 
1584
- # @note When making an API call, you may pass DeleteListenerRequest
1585
- # data as a hash:
1586
- #
1587
- # {
1588
- # listener_arn: "GenericString", # required
1589
- # }
1590
- #
1591
1373
  # @!attribute [rw] listener_arn
1592
1374
  # The Amazon Resource Name (ARN) of the listener.
1593
1375
  # @return [String]
@@ -1600,17 +1382,6 @@ module Aws::GlobalAccelerator
1600
1382
  include Aws::Structure
1601
1383
  end
1602
1384
 
1603
- # @note When making an API call, you may pass DenyCustomRoutingTrafficRequest
1604
- # data as a hash:
1605
- #
1606
- # {
1607
- # endpoint_group_arn: "GenericString", # required
1608
- # endpoint_id: "GenericString", # required
1609
- # destination_addresses: ["IpAddress"],
1610
- # destination_ports: [1],
1611
- # deny_all_traffic_to_endpoint: false,
1612
- # }
1613
- #
1614
1385
  # @!attribute [rw] endpoint_group_arn
1615
1386
  # The Amazon Resource Name (ARN) of the endpoint group.
1616
1387
  # @return [String]
@@ -1662,13 +1433,6 @@ module Aws::GlobalAccelerator
1662
1433
  include Aws::Structure
1663
1434
  end
1664
1435
 
1665
- # @note When making an API call, you may pass DeprovisionByoipCidrRequest
1666
- # data as a hash:
1667
- #
1668
- # {
1669
- # cidr: "GenericString", # required
1670
- # }
1671
- #
1672
1436
  # @!attribute [rw] cidr
1673
1437
  # The address range, in CIDR notation. The prefix must be the same
1674
1438
  # prefix that you specified when you provisioned the address range.
@@ -1694,13 +1458,6 @@ module Aws::GlobalAccelerator
1694
1458
  include Aws::Structure
1695
1459
  end
1696
1460
 
1697
- # @note When making an API call, you may pass DescribeAcceleratorAttributesRequest
1698
- # data as a hash:
1699
- #
1700
- # {
1701
- # accelerator_arn: "GenericString", # required
1702
- # }
1703
- #
1704
1461
  # @!attribute [rw] accelerator_arn
1705
1462
  # The Amazon Resource Name (ARN) of the accelerator with the
1706
1463
  # attributes that you want to describe.
@@ -1726,13 +1483,6 @@ module Aws::GlobalAccelerator
1726
1483
  include Aws::Structure
1727
1484
  end
1728
1485
 
1729
- # @note When making an API call, you may pass DescribeAcceleratorRequest
1730
- # data as a hash:
1731
- #
1732
- # {
1733
- # accelerator_arn: "GenericString", # required
1734
- # }
1735
- #
1736
1486
  # @!attribute [rw] accelerator_arn
1737
1487
  # The Amazon Resource Name (ARN) of the accelerator to describe.
1738
1488
  # @return [String]
@@ -1757,13 +1507,6 @@ module Aws::GlobalAccelerator
1757
1507
  include Aws::Structure
1758
1508
  end
1759
1509
 
1760
- # @note When making an API call, you may pass DescribeCustomRoutingAcceleratorAttributesRequest
1761
- # data as a hash:
1762
- #
1763
- # {
1764
- # accelerator_arn: "GenericString", # required
1765
- # }
1766
- #
1767
1510
  # @!attribute [rw] accelerator_arn
1768
1511
  # The Amazon Resource Name (ARN) of the custom routing accelerator to
1769
1512
  # describe the attributes for.
@@ -1789,13 +1532,6 @@ module Aws::GlobalAccelerator
1789
1532
  include Aws::Structure
1790
1533
  end
1791
1534
 
1792
- # @note When making an API call, you may pass DescribeCustomRoutingAcceleratorRequest
1793
- # data as a hash:
1794
- #
1795
- # {
1796
- # accelerator_arn: "GenericString", # required
1797
- # }
1798
- #
1799
1535
  # @!attribute [rw] accelerator_arn
1800
1536
  # The Amazon Resource Name (ARN) of the accelerator to describe.
1801
1537
  # @return [String]
@@ -1820,13 +1556,6 @@ module Aws::GlobalAccelerator
1820
1556
  include Aws::Structure
1821
1557
  end
1822
1558
 
1823
- # @note When making an API call, you may pass DescribeCustomRoutingEndpointGroupRequest
1824
- # data as a hash:
1825
- #
1826
- # {
1827
- # endpoint_group_arn: "GenericString", # required
1828
- # }
1829
- #
1830
1559
  # @!attribute [rw] endpoint_group_arn
1831
1560
  # The Amazon Resource Name (ARN) of the endpoint group to describe.
1832
1561
  # @return [String]
@@ -1852,13 +1581,6 @@ module Aws::GlobalAccelerator
1852
1581
  include Aws::Structure
1853
1582
  end
1854
1583
 
1855
- # @note When making an API call, you may pass DescribeCustomRoutingListenerRequest
1856
- # data as a hash:
1857
- #
1858
- # {
1859
- # listener_arn: "GenericString", # required
1860
- # }
1861
- #
1862
1584
  # @!attribute [rw] listener_arn
1863
1585
  # The Amazon Resource Name (ARN) of the listener to describe.
1864
1586
  # @return [String]
@@ -1883,13 +1605,6 @@ module Aws::GlobalAccelerator
1883
1605
  include Aws::Structure
1884
1606
  end
1885
1607
 
1886
- # @note When making an API call, you may pass DescribeEndpointGroupRequest
1887
- # data as a hash:
1888
- #
1889
- # {
1890
- # endpoint_group_arn: "GenericString", # required
1891
- # }
1892
- #
1893
1608
  # @!attribute [rw] endpoint_group_arn
1894
1609
  # The Amazon Resource Name (ARN) of the endpoint group to describe.
1895
1610
  # @return [String]
@@ -1914,13 +1629,6 @@ module Aws::GlobalAccelerator
1914
1629
  include Aws::Structure
1915
1630
  end
1916
1631
 
1917
- # @note When making an API call, you may pass DescribeListenerRequest
1918
- # data as a hash:
1919
- #
1920
- # {
1921
- # listener_arn: "GenericString", # required
1922
- # }
1923
- #
1924
1632
  # @!attribute [rw] listener_arn
1925
1633
  # The Amazon Resource Name (ARN) of the listener to describe.
1926
1634
  # @return [String]
@@ -2016,15 +1724,6 @@ module Aws::GlobalAccelerator
2016
1724
  # A complex type for endpoints. A resource must be valid and active when
2017
1725
  # you add it as an endpoint.
2018
1726
  #
2019
- # @note When making an API call, you may pass EndpointConfiguration
2020
- # data as a hash:
2021
- #
2022
- # {
2023
- # endpoint_id: "GenericString",
2024
- # weight: 1,
2025
- # client_ip_preservation_enabled: false,
2026
- # }
2027
- #
2028
1727
  # @!attribute [rw] endpoint_id
2029
1728
  # An ID for the endpoint. If the endpoint is a Network Load Balancer
2030
1729
  # or Application Load Balancer, this is the Amazon Resource Name (ARN)
@@ -2267,14 +1966,6 @@ module Aws::GlobalAccelerator
2267
1966
  # A complex type for an endpoint. Specifies information about the
2268
1967
  # endpoint to remove from the endpoint group.
2269
1968
  #
2270
- # @note When making an API call, you may pass EndpointIdentifier
2271
- # data as a hash:
2272
- #
2273
- # {
2274
- # endpoint_id: "GenericString", # required
2275
- # client_ip_preservation_enabled: false,
2276
- # }
2277
- #
2278
1969
  # @!attribute [rw] endpoint_id
2279
1970
  # An ID for the endpoint. If the endpoint is a Network Load Balancer
2280
1971
  # or Application Load Balancer, this is the Amazon Resource Name (ARN)
@@ -2423,14 +2114,6 @@ module Aws::GlobalAccelerator
2423
2114
  include Aws::Structure
2424
2115
  end
2425
2116
 
2426
- # @note When making an API call, you may pass ListAcceleratorsRequest
2427
- # data as a hash:
2428
- #
2429
- # {
2430
- # max_results: 1,
2431
- # next_token: "GenericString",
2432
- # }
2433
- #
2434
2117
  # @!attribute [rw] max_results
2435
2118
  # The number of Global Accelerator objects that you want to return
2436
2119
  # with this call. The default value is 10.
@@ -2468,14 +2151,6 @@ module Aws::GlobalAccelerator
2468
2151
  include Aws::Structure
2469
2152
  end
2470
2153
 
2471
- # @note When making an API call, you may pass ListByoipCidrsRequest
2472
- # data as a hash:
2473
- #
2474
- # {
2475
- # max_results: 1,
2476
- # next_token: "GenericString",
2477
- # }
2478
- #
2479
2154
  # @!attribute [rw] max_results
2480
2155
  # The maximum number of results to return with a single call. To
2481
2156
  # retrieve the remaining results, make another call with the returned
@@ -2512,14 +2187,6 @@ module Aws::GlobalAccelerator
2512
2187
  include Aws::Structure
2513
2188
  end
2514
2189
 
2515
- # @note When making an API call, you may pass ListCustomRoutingAcceleratorsRequest
2516
- # data as a hash:
2517
- #
2518
- # {
2519
- # max_results: 1,
2520
- # next_token: "GenericString",
2521
- # }
2522
- #
2523
2190
  # @!attribute [rw] max_results
2524
2191
  # The number of custom routing Global Accelerator objects that you
2525
2192
  # want to return with this call. The default value is 10.
@@ -2557,15 +2224,6 @@ module Aws::GlobalAccelerator
2557
2224
  include Aws::Structure
2558
2225
  end
2559
2226
 
2560
- # @note When making an API call, you may pass ListCustomRoutingEndpointGroupsRequest
2561
- # data as a hash:
2562
- #
2563
- # {
2564
- # listener_arn: "GenericString", # required
2565
- # max_results: 1,
2566
- # next_token: "GenericString",
2567
- # }
2568
- #
2569
2227
  # @!attribute [rw] listener_arn
2570
2228
  # The Amazon Resource Name (ARN) of the listener to list endpoint
2571
2229
  # groups for.
@@ -2610,15 +2268,6 @@ module Aws::GlobalAccelerator
2610
2268
  include Aws::Structure
2611
2269
  end
2612
2270
 
2613
- # @note When making an API call, you may pass ListCustomRoutingListenersRequest
2614
- # data as a hash:
2615
- #
2616
- # {
2617
- # accelerator_arn: "GenericString", # required
2618
- # max_results: 1,
2619
- # next_token: "GenericString",
2620
- # }
2621
- #
2622
2271
  # @!attribute [rw] accelerator_arn
2623
2272
  # The Amazon Resource Name (ARN) of the accelerator to list listeners
2624
2273
  # for.
@@ -2662,16 +2311,6 @@ module Aws::GlobalAccelerator
2662
2311
  include Aws::Structure
2663
2312
  end
2664
2313
 
2665
- # @note When making an API call, you may pass ListCustomRoutingPortMappingsByDestinationRequest
2666
- # data as a hash:
2667
- #
2668
- # {
2669
- # endpoint_id: "GenericString", # required
2670
- # destination_address: "GenericString", # required
2671
- # max_results: 1,
2672
- # next_token: "GenericString",
2673
- # }
2674
- #
2675
2314
  # @!attribute [rw] endpoint_id
2676
2315
  # The ID for the virtual private cloud (VPC) subnet.
2677
2316
  # @return [String]
@@ -2721,16 +2360,6 @@ module Aws::GlobalAccelerator
2721
2360
  include Aws::Structure
2722
2361
  end
2723
2362
 
2724
- # @note When making an API call, you may pass ListCustomRoutingPortMappingsRequest
2725
- # data as a hash:
2726
- #
2727
- # {
2728
- # accelerator_arn: "GenericString", # required
2729
- # endpoint_group_arn: "GenericString",
2730
- # max_results: 1,
2731
- # next_token: "GenericString",
2732
- # }
2733
- #
2734
2363
  # @!attribute [rw] accelerator_arn
2735
2364
  # The Amazon Resource Name (ARN) of the accelerator to list the custom
2736
2365
  # routing port mappings for.
@@ -2780,15 +2409,6 @@ module Aws::GlobalAccelerator
2780
2409
  include Aws::Structure
2781
2410
  end
2782
2411
 
2783
- # @note When making an API call, you may pass ListEndpointGroupsRequest
2784
- # data as a hash:
2785
- #
2786
- # {
2787
- # listener_arn: "GenericString", # required
2788
- # max_results: 1,
2789
- # next_token: "GenericString",
2790
- # }
2791
- #
2792
2412
  # @!attribute [rw] listener_arn
2793
2413
  # The Amazon Resource Name (ARN) of the listener.
2794
2414
  # @return [String]
@@ -2831,15 +2451,6 @@ module Aws::GlobalAccelerator
2831
2451
  include Aws::Structure
2832
2452
  end
2833
2453
 
2834
- # @note When making an API call, you may pass ListListenersRequest
2835
- # data as a hash:
2836
- #
2837
- # {
2838
- # accelerator_arn: "GenericString", # required
2839
- # max_results: 1,
2840
- # next_token: "GenericString",
2841
- # }
2842
- #
2843
2454
  # @!attribute [rw] accelerator_arn
2844
2455
  # The Amazon Resource Name (ARN) of the accelerator for which you want
2845
2456
  # to list listener objects.
@@ -2883,13 +2494,6 @@ module Aws::GlobalAccelerator
2883
2494
  include Aws::Structure
2884
2495
  end
2885
2496
 
2886
- # @note When making an API call, you may pass ListTagsForResourceRequest
2887
- # data as a hash:
2888
- #
2889
- # {
2890
- # resource_arn: "ResourceArn", # required
2891
- # }
2892
- #
2893
2497
  # @!attribute [rw] resource_arn
2894
2498
  # The Amazon Resource Name (ARN) of the accelerator to list tags for.
2895
2499
  # An ARN uniquely identifies an accelerator.
@@ -3040,14 +2644,6 @@ module Aws::GlobalAccelerator
3040
2644
  #
3041
2645
  # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/about-endpoint-groups-port-override.html
3042
2646
  #
3043
- # @note When making an API call, you may pass PortOverride
3044
- # data as a hash:
3045
- #
3046
- # {
3047
- # listener_port: 1,
3048
- # endpoint_port: 1,
3049
- # }
3050
- #
3051
2647
  # @!attribute [rw] listener_port
3052
2648
  # The listener port that you want to map to a specific endpoint port.
3053
2649
  # This is the port that user traffic arrives to the Global Accelerator
@@ -3071,14 +2667,6 @@ module Aws::GlobalAccelerator
3071
2667
 
3072
2668
  # A complex type for a range of ports for a listener.
3073
2669
  #
3074
- # @note When making an API call, you may pass PortRange
3075
- # data as a hash:
3076
- #
3077
- # {
3078
- # from_port: 1,
3079
- # to_port: 1,
3080
- # }
3081
- #
3082
2670
  # @!attribute [rw] from_port
3083
2671
  # The first port in the range of ports, inclusive.
3084
2672
  # @return [Integer]
@@ -3096,17 +2684,6 @@ module Aws::GlobalAccelerator
3096
2684
  include Aws::Structure
3097
2685
  end
3098
2686
 
3099
- # @note When making an API call, you may pass ProvisionByoipCidrRequest
3100
- # data as a hash:
3101
- #
3102
- # {
3103
- # cidr: "GenericString", # required
3104
- # cidr_authorization_context: { # required
3105
- # message: "GenericString", # required
3106
- # signature: "GenericString", # required
3107
- # },
3108
- # }
3109
- #
3110
2687
  # @!attribute [rw] cidr
3111
2688
  # The public IPv4 address range, in CIDR notation. The most specific
3112
2689
  # IP prefix that you can specify is /24. The address range cannot
@@ -3140,14 +2717,6 @@ module Aws::GlobalAccelerator
3140
2717
  include Aws::Structure
3141
2718
  end
3142
2719
 
3143
- # @note When making an API call, you may pass RemoveCustomRoutingEndpointsRequest
3144
- # data as a hash:
3145
- #
3146
- # {
3147
- # endpoint_ids: ["GenericString"], # required
3148
- # endpoint_group_arn: "GenericString", # required
3149
- # }
3150
- #
3151
2720
  # @!attribute [rw] endpoint_ids
3152
2721
  # The IDs for the endpoints. For custom routing accelerators, endpoint
3153
2722
  # IDs are the virtual private cloud (VPC) subnet IDs.
@@ -3167,19 +2736,6 @@ module Aws::GlobalAccelerator
3167
2736
  include Aws::Structure
3168
2737
  end
3169
2738
 
3170
- # @note When making an API call, you may pass RemoveEndpointsRequest
3171
- # data as a hash:
3172
- #
3173
- # {
3174
- # endpoint_identifiers: [ # required
3175
- # {
3176
- # endpoint_id: "GenericString", # required
3177
- # client_ip_preservation_enabled: false,
3178
- # },
3179
- # ],
3180
- # endpoint_group_arn: "GenericString", # required
3181
- # }
3182
- #
3183
2739
  # @!attribute [rw] endpoint_identifiers
3184
2740
  # The identifiers of the endpoints that you want to remove.
3185
2741
  # @return [Array<Types::EndpointIdentifier>]
@@ -3218,14 +2774,6 @@ module Aws::GlobalAccelerator
3218
2774
 
3219
2775
  # A complex type that contains a `Tag` key and `Tag` value.
3220
2776
  #
3221
- # @note When making an API call, you may pass Tag
3222
- # data as a hash:
3223
- #
3224
- # {
3225
- # key: "TagKey", # required
3226
- # value: "TagValue", # required
3227
- # }
3228
- #
3229
2777
  # @!attribute [rw] key
3230
2778
  # A string that contains a `Tag` key.
3231
2779
  # @return [String]
@@ -3243,19 +2791,6 @@ module Aws::GlobalAccelerator
3243
2791
  include Aws::Structure
3244
2792
  end
3245
2793
 
3246
- # @note When making an API call, you may pass TagResourceRequest
3247
- # data as a hash:
3248
- #
3249
- # {
3250
- # resource_arn: "ResourceArn", # required
3251
- # tags: [ # required
3252
- # {
3253
- # key: "TagKey", # required
3254
- # value: "TagValue", # required
3255
- # },
3256
- # ],
3257
- # }
3258
- #
3259
2794
  # @!attribute [rw] resource_arn
3260
2795
  # The Amazon Resource Name (ARN) of the Global Accelerator resource to
3261
2796
  # add tags to. An ARN uniquely identifies a resource.
@@ -3293,14 +2828,6 @@ module Aws::GlobalAccelerator
3293
2828
  include Aws::Structure
3294
2829
  end
3295
2830
 
3296
- # @note When making an API call, you may pass UntagResourceRequest
3297
- # data as a hash:
3298
- #
3299
- # {
3300
- # resource_arn: "ResourceArn", # required
3301
- # tag_keys: ["TagKey"], # required
3302
- # }
3303
- #
3304
2831
  # @!attribute [rw] resource_arn
3305
2832
  # The Amazon Resource Name (ARN) of the Global Accelerator resource to
3306
2833
  # remove tags from. An ARN uniquely identifies a resource.
@@ -3324,16 +2851,6 @@ module Aws::GlobalAccelerator
3324
2851
  #
3325
2852
  class UntagResourceResponse < Aws::EmptyStructure; end
3326
2853
 
3327
- # @note When making an API call, you may pass UpdateAcceleratorAttributesRequest
3328
- # data as a hash:
3329
- #
3330
- # {
3331
- # accelerator_arn: "GenericString", # required
3332
- # flow_logs_enabled: false,
3333
- # flow_logs_s3_bucket: "GenericString",
3334
- # flow_logs_s3_prefix: "GenericString",
3335
- # }
3336
- #
3337
2854
  # @!attribute [rw] accelerator_arn
3338
2855
  # The Amazon Resource Name (ARN) of the accelerator that you want to
3339
2856
  # update.
@@ -3393,16 +2910,6 @@ module Aws::GlobalAccelerator
3393
2910
  include Aws::Structure
3394
2911
  end
3395
2912
 
3396
- # @note When making an API call, you may pass UpdateAcceleratorRequest
3397
- # data as a hash:
3398
- #
3399
- # {
3400
- # accelerator_arn: "GenericString", # required
3401
- # name: "GenericString",
3402
- # ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
3403
- # enabled: false,
3404
- # }
3405
- #
3406
2913
  # @!attribute [rw] accelerator_arn
3407
2914
  # The Amazon Resource Name (ARN) of the accelerator to update.
3408
2915
  # @return [String]
@@ -3449,16 +2956,6 @@ module Aws::GlobalAccelerator
3449
2956
  include Aws::Structure
3450
2957
  end
3451
2958
 
3452
- # @note When making an API call, you may pass UpdateCustomRoutingAcceleratorAttributesRequest
3453
- # data as a hash:
3454
- #
3455
- # {
3456
- # accelerator_arn: "GenericString", # required
3457
- # flow_logs_enabled: false,
3458
- # flow_logs_s3_bucket: "GenericString",
3459
- # flow_logs_s3_prefix: "GenericString",
3460
- # }
3461
- #
3462
2959
  # @!attribute [rw] accelerator_arn
3463
2960
  # The Amazon Resource Name (ARN) of the custom routing accelerator to
3464
2961
  # update attributes for.
@@ -3519,16 +3016,6 @@ module Aws::GlobalAccelerator
3519
3016
  include Aws::Structure
3520
3017
  end
3521
3018
 
3522
- # @note When making an API call, you may pass UpdateCustomRoutingAcceleratorRequest
3523
- # data as a hash:
3524
- #
3525
- # {
3526
- # accelerator_arn: "GenericString", # required
3527
- # name: "GenericString",
3528
- # ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
3529
- # enabled: false,
3530
- # }
3531
- #
3532
3019
  # @!attribute [rw] accelerator_arn
3533
3020
  # The Amazon Resource Name (ARN) of the accelerator to update.
3534
3021
  # @return [String]
@@ -3575,19 +3062,6 @@ module Aws::GlobalAccelerator
3575
3062
  include Aws::Structure
3576
3063
  end
3577
3064
 
3578
- # @note When making an API call, you may pass UpdateCustomRoutingListenerRequest
3579
- # data as a hash:
3580
- #
3581
- # {
3582
- # listener_arn: "GenericString", # required
3583
- # port_ranges: [ # required
3584
- # {
3585
- # from_port: 1,
3586
- # to_port: 1,
3587
- # },
3588
- # ],
3589
- # }
3590
- #
3591
3065
  # @!attribute [rw] listener_arn
3592
3066
  # The Amazon Resource Name (ARN) of the listener to update.
3593
3067
  # @return [String]
@@ -3627,32 +3101,6 @@ module Aws::GlobalAccelerator
3627
3101
  include Aws::Structure
3628
3102
  end
3629
3103
 
3630
- # @note When making an API call, you may pass UpdateEndpointGroupRequest
3631
- # data as a hash:
3632
- #
3633
- # {
3634
- # endpoint_group_arn: "GenericString", # required
3635
- # endpoint_configurations: [
3636
- # {
3637
- # endpoint_id: "GenericString",
3638
- # weight: 1,
3639
- # client_ip_preservation_enabled: false,
3640
- # },
3641
- # ],
3642
- # traffic_dial_percentage: 1.0,
3643
- # health_check_port: 1,
3644
- # health_check_protocol: "TCP", # accepts TCP, HTTP, HTTPS
3645
- # health_check_path: "HealthCheckPath",
3646
- # health_check_interval_seconds: 1,
3647
- # threshold_count: 1,
3648
- # port_overrides: [
3649
- # {
3650
- # listener_port: 1,
3651
- # endpoint_port: 1,
3652
- # },
3653
- # ],
3654
- # }
3655
- #
3656
3104
  # @!attribute [rw] endpoint_group_arn
3657
3105
  # The Amazon Resource Name (ARN) of the endpoint group.
3658
3106
  # @return [String]
@@ -3749,21 +3197,6 @@ module Aws::GlobalAccelerator
3749
3197
  include Aws::Structure
3750
3198
  end
3751
3199
 
3752
- # @note When making an API call, you may pass UpdateListenerRequest
3753
- # data as a hash:
3754
- #
3755
- # {
3756
- # listener_arn: "GenericString", # required
3757
- # port_ranges: [
3758
- # {
3759
- # from_port: 1,
3760
- # to_port: 1,
3761
- # },
3762
- # ],
3763
- # protocol: "TCP", # accepts TCP, UDP
3764
- # client_affinity: "NONE", # accepts NONE, SOURCE_IP
3765
- # }
3766
- #
3767
3200
  # @!attribute [rw] listener_arn
3768
3201
  # The Amazon Resource Name (ARN) of the listener to update.
3769
3202
  # @return [String]
@@ -3827,13 +3260,6 @@ module Aws::GlobalAccelerator
3827
3260
  include Aws::Structure
3828
3261
  end
3829
3262
 
3830
- # @note When making an API call, you may pass WithdrawByoipCidrRequest
3831
- # data as a hash:
3832
- #
3833
- # {
3834
- # cidr: "GenericString", # required
3835
- # }
3836
- #
3837
3263
  # @!attribute [rw] cidr
3838
3264
  # The address range, in CIDR notation.
3839
3265
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-globalaccelerator/customizations'
52
52
  # @!group service
53
53
  module Aws::GlobalAccelerator
54
54
 
55
- GEM_VERSION = '1.42.0'
55
+ GEM_VERSION = '1.43.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-globalaccelerator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.42.0
4
+ version: 1.43.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core