aws-sdk-route53profiles 1.0.0 → 1.2.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: c7a4a8d5d1d59d5d48d8f5637199c1eafc821910aea6961ff3cf0a4358ce5d5a
4
- data.tar.gz: c79e60f496e82e629aa23e4dede2e7cf297705491d5071156ec975a9e6733248
3
+ metadata.gz: 86ff0d306dda1cbef5f749993454abb3ae726a60fe40c83a4f01792ad1dcae6f
4
+ data.tar.gz: a6b2de7f8288d9050458b97e0fbad449c8f2c839ce523ae417a2a9c6fd50ed7a
5
5
  SHA512:
6
- metadata.gz: e9092cb35db0d14f1400ea7837a252dc83c66e31cbc0453e4e9fdfea17a7ca12ab23dd8878a2982d4842b9db097e92db2ac58bc75d8faab93fa71b0425c1ea2b
7
- data.tar.gz: 105fbd7cd32c61be700e7430a8fc25c3cb6b49a19a32506545f9d0e1805e8e3ed2decac9ee093d9589b4537df0b44bb088cb8b50ecc6b5e9f489cc09fa4c8615
6
+ metadata.gz: 7d9100a399aa2f79b05eb5bcc819c5cfae321f3fc2033fc5f0122d69a28b7eadd79450cb770e636c49f1f6bd1cb9bfdc92d9917db26611ff5d9676f08e3e17ca
7
+ data.tar.gz: cb9df7ffe4f32dc742a312a4d30ec3c063714bedd10667d719ba6c89b2c4a194afbab6135d83daaa60878dad09eb53174310f2a0bde66b4f66bf95e6eb048a7d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.2.0 (2024-05-07)
5
+ ------------------
6
+
7
+ * Feature - Doc only update for Route 53 profiles that fixes some link issues
8
+
9
+ 1.1.0 (2024-04-25)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.0.0 (2024-04-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.2.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::Route53Profiles
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::Route53Profiles
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::Route53Profiles
337
346
  # @option options [Aws::Route53Profiles::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Route53Profiles::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -390,7 +414,13 @@ module Aws::Route53Profiles
390
414
 
391
415
  # Associates a Route 53 Profiles profile with a VPC. A VPC can have only
392
416
  # one Profile associated with it, but a Profile can be associated with
393
- # up to 5000 VPCs.
417
+ # 1000 of VPCs (and you can request a higher quota). For more
418
+ # information, see
419
+ # [https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html#limits-api-entities][1].
420
+ #
421
+ #
422
+ #
423
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html#limits-api-entities
394
424
  #
395
425
  # @option params [required, String] :name
396
426
  # A name for the association.
@@ -456,10 +486,11 @@ module Aws::Route53Profiles
456
486
  # Amazon resource number, ARN, of the DNS resource.
457
487
  #
458
488
  # @option params [String] :resource_properties
459
- # If you are adding a DNS Firewall rule group, include also a priority
460
- # in this format:
489
+ # If you are adding a DNS Firewall rule group, include also a priority.
490
+ # The priority indicates the processing order for the rule groups,
491
+ # starting with the priority assinged the lowest value.
461
492
  #
462
- # `Key=FirewallRuleGroupPriority,Value=100`
493
+ # The allowed values for priority are between 100 and 9900.
463
494
  #
464
495
  # @return [Types::AssociateResourceToProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
465
496
  #
@@ -1074,10 +1105,11 @@ module Aws::Route53Profiles
1074
1105
  # ID of the resource association.
1075
1106
  #
1076
1107
  # @option params [String] :resource_properties
1077
- # If you are adding a DNS Firewall rule group, include also a priority
1078
- # in this format:
1108
+ # If you are adding a DNS Firewall rule group, include also a priority.
1109
+ # The priority indicates the processing order for the rule groups,
1110
+ # starting with the priority assinged the lowest value.
1079
1111
  #
1080
- # `Key=FirewallRuleGroupPriority,Value=100`.
1112
+ # The allowed values for priority are between 100 and 9900.
1081
1113
  #
1082
1114
  # @return [Types::UpdateProfileResourceAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1083
1115
  #
@@ -1127,7 +1159,7 @@ module Aws::Route53Profiles
1127
1159
  params: params,
1128
1160
  config: config)
1129
1161
  context[:gem_name] = 'aws-sdk-route53profiles'
1130
- context[:gem_version] = '1.0.0'
1162
+ context[:gem_version] = '1.2.0'
1131
1163
  Seahorse::Client::Request.new(handlers, context)
1132
1164
  end
1133
1165
 
@@ -304,6 +304,7 @@ module Aws::Route53Profiles
304
304
  "endpointPrefix" => "route53profiles",
305
305
  "jsonVersion" => "1.1",
306
306
  "protocol" => "rest-json",
307
+ "protocols" => ["rest-json"],
307
308
  "serviceFullName" => "Route 53 Profiles",
308
309
  "serviceId" => "Route53Profiles",
309
310
  "signatureVersion" => "v4",
@@ -79,10 +79,11 @@ module Aws::Route53Profiles
79
79
  # @return [String]
80
80
  #
81
81
  # @!attribute [rw] resource_properties
82
- # If you are adding a DNS Firewall rule group, include also a priority
83
- # in this format:
82
+ # If you are adding a DNS Firewall rule group, include also a
83
+ # priority. The priority indicates the processing order for the rule
84
+ # groups, starting with the priority assinged the lowest value.
84
85
  #
85
- # `Key=FirewallRuleGroupPriority,Value=100`
86
+ # The allowed values for priority are between 100 and 9900.
86
87
  # @return [String]
87
88
  #
88
89
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/AssociateResourceToProfileRequest AWS API Documentation
@@ -918,10 +919,11 @@ module Aws::Route53Profiles
918
919
  # @return [String]
919
920
  #
920
921
  # @!attribute [rw] resource_properties
921
- # If you are adding a DNS Firewall rule group, include also a priority
922
- # in this format:
922
+ # If you are adding a DNS Firewall rule group, include also a
923
+ # priority. The priority indicates the processing order for the rule
924
+ # groups, starting with the priority assinged the lowest value.
923
925
  #
924
- # `Key=FirewallRuleGroupPriority,Value=100`.
926
+ # The allowed values for priority are between 100 and 9900.
925
927
  # @return [String]
926
928
  #
927
929
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/UpdateProfileResourceAssociationRequest AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-route53profiles/customizations'
52
52
  # @!group service
53
53
  module Aws::Route53Profiles
54
54
 
55
- GEM_VERSION = '1.0.0'
55
+ GEM_VERSION = '1.2.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53profiles
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.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: 2024-04-22 00:00:00.000000000 Z
11
+ date: 2024-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement