aws-sdk-route53 1.39.0 → 1.44.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: 195d273ed353c13ebff20f02d15595768c327835df4bac4c4673bd8f96773585
4
- data.tar.gz: ad344a28d23c84d9398d04539b55f715d281c896b5260002a02ab7521a07fc89
3
+ metadata.gz: 5a32fd5ed6bd9a3bff3bc4a401f5e94c237ed8423ce066e1692d5fe065e7088c
4
+ data.tar.gz: d52d5311449fe2387396efc353d72916ab4fb5c456344cd29aabd325db9a7c95
5
5
  SHA512:
6
- metadata.gz: ce64576f720d8352572b752d866c7cfb93cf61f2b386da31376b3200f6ad9943aa20fcd573433ea025115433e57b6a7f34c6cc12e17ce27cb943bd68792cc154
7
- data.tar.gz: 75a19531c0f37b03c8eca25ba513221797bb36bb23441fdd7825d63e1f8bd6a783bb09ce9e7b53a064642feea6a884aebfcb8ca28e36d19b95174d7e1ffe2094
6
+ metadata.gz: e6f413f7e62170cf1edb45fad9b5ab8b45f2756d530d47a718b55f39ddb55c2017de2c663c6956f23b4ab59c5c183ebfbe447f6f5acccbd24f9fdeecfd4cd208
7
+ data.tar.gz: 7979ad689c8c6ac2b8a0cca3408939c2082aa3efc84262a458d2b27e68b8e57c9fec80b11dc5aa770cf02e647b086f705aa1f15edaafb982d12dde706682eb66
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -45,9 +46,9 @@ require_relative 'aws-sdk-route53/customizations'
45
46
  #
46
47
  # See {Errors} for more information.
47
48
  #
48
- # @service
49
+ # @!group service
49
50
  module Aws::Route53
50
51
 
51
- GEM_VERSION = '1.39.0'
52
+ GEM_VERSION = '1.44.0'
52
53
 
53
54
  end
@@ -87,13 +87,28 @@ module Aws::Route53
87
87
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
88
88
  # credentials.
89
89
  #
90
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
91
+ # shared file, such as `~/.aws/config`.
92
+ #
93
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
94
+ #
95
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
96
+ # assume a role after providing credentials via the web.
97
+ #
98
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
99
+ # access token generated from `aws login`.
100
+ #
101
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
102
+ # process that outputs to stdout.
103
+ #
90
104
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
91
105
  # from an EC2 IMDS on an EC2 instance.
92
106
  #
93
- # * `Aws::SharedCredentials` - Used for loading credentials from a
94
- # shared file, such as `~/.aws/config`.
107
+ # * `Aws::ECSCredentials` - Used for loading credentials from
108
+ # instances running in ECS.
95
109
  #
96
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
110
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
111
+ # from the Cognito Identity service.
97
112
  #
98
113
  # When `:credentials` are not configured directly, the following
99
114
  # locations will be searched for credentials:
@@ -103,10 +118,10 @@ module Aws::Route53
103
118
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
104
119
  # * `~/.aws/credentials`
105
120
  # * `~/.aws/config`
106
- # * EC2 IMDS instance profile - When used by default, the timeouts are
107
- # very aggressive. Construct and pass an instance of
108
- # `Aws::InstanceProfileCredentails` to enable retries and extended
109
- # timeouts.
121
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
+ # are very aggressive. Construct and pass an instance of
123
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
+ # enable retries and extended timeouts.
110
125
  #
111
126
  # @option options [required, String] :region
112
127
  # The AWS region to connect to. The configured `:region` is
@@ -316,30 +331,18 @@ module Aws::Route53
316
331
 
317
332
  # Associates an Amazon VPC with a private hosted zone.
318
333
  #
319
- # <note markdown="1"> To perform the association, the VPC and the private hosted zone must
320
- # already exist. Also, you can't convert a public hosted zone into a
321
- # private hosted zone.
322
- #
323
- # </note>
324
- #
325
- # If you want to associate a VPC that was created by one AWS account
326
- # with a private hosted zone that was created by a different account, do
327
- # one of the following:
328
- #
329
- # * Use the AWS account that created the private hosted zone to submit a
330
- # [CreateVPCAssociationAuthorization][1] request. Then use the account
331
- # that created the VPC to submit an `AssociateVPCWithHostedZone`
332
- # request.
333
- #
334
- # * If a subnet in the VPC was shared with another account, you can use
335
- # the account that the subnet was shared with to submit an
336
- # `AssociateVPCWithHostedZone` request. For more information about
337
- # sharing subnets, see [Working with Shared VPCs][2].
338
- #
334
+ # To perform the association, the VPC and the private hosted zone must
335
+ # already exist. You can't convert a public hosted zone into a private
336
+ # hosted zone.
339
337
  #
338
+ # <note markdown="1"> If you want to associate a VPC that was created by using one AWS
339
+ # account with a private hosted zone that was created by using a
340
+ # different account, the AWS account that created the private hosted
341
+ # zone must first submit a `CreateVPCAssociationAuthorization` request.
342
+ # Then the account that created the VPC must submit an
343
+ # `AssociateVPCWithHostedZone` request.
340
344
  #
341
- # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateVPCAssociationAuthorization.html
342
- # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html
345
+ # </note>
343
346
  #
344
347
  # @option params [required, String] :hosted_zone_id
345
348
  # The ID of the private hosted zone that you want to associate an Amazon
@@ -2246,6 +2249,24 @@ module Aws::Route53
2246
2249
 
2247
2250
  # Deletes a traffic policy.
2248
2251
  #
2252
+ # When you delete a traffic policy, Route 53 sets a flag on the policy
2253
+ # to indicate that it has been deleted. However, Route 53 never fully
2254
+ # deletes the traffic policy. Note the following:
2255
+ #
2256
+ # * Deleted traffic policies aren't listed if you run
2257
+ # [ListTrafficPolicies][1].
2258
+ #
2259
+ # * There's no way to get a list of deleted policies.
2260
+ #
2261
+ # * If you retain the ID of the policy, you can get information about
2262
+ # the policy, including the traffic policy document, by running
2263
+ # [GetTrafficPolicy][2].
2264
+ #
2265
+ #
2266
+ #
2267
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListTrafficPolicies.html
2268
+ # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetTrafficPolicy.html
2269
+ #
2249
2270
  # @option params [required, String] :id
2250
2271
  # The ID of the traffic policy that you want to delete.
2251
2272
  #
@@ -3079,6 +3100,13 @@ module Aws::Route53
3079
3100
 
3080
3101
  # Gets information about a specific traffic policy version.
3081
3102
  #
3103
+ # For information about how of deleting a traffic policy affects the
3104
+ # response from `GetTrafficPolicy`, see [DeleteTrafficPolicy][1].
3105
+ #
3106
+ #
3107
+ #
3108
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html
3109
+ #
3082
3110
  # @option params [required, String] :id
3083
3111
  # The ID of the traffic policy that you want to get information about.
3084
3112
  #
@@ -3602,8 +3630,8 @@ module Aws::Route53
3602
3630
  # (Optional) The maximum number of hosted zones that you want Amazon
3603
3631
  # Route 53 to return. If the specified VPC is associated with more than
3604
3632
  # `MaxItems` hosted zones, the response includes a `NextToken` element.
3605
- # `NextToken` contains the hosted zone ID of the first hosted zone that
3606
- # Route 53 will return if you submit another request.
3633
+ # `NextToken` contains an encrypted token that identifies the first
3634
+ # hosted zone that Route 53 will return if you submit another request.
3607
3635
  #
3608
3636
  # @option params [String] :next_token
3609
3637
  # If the previous response included a `NextToken` element, the specified
@@ -4072,6 +4100,13 @@ module Aws::Route53
4072
4100
  # that is associated with the current AWS account. Policies are listed
4073
4101
  # in the order that they were created in.
4074
4102
  #
4103
+ # For information about how of deleting a traffic policy affects the
4104
+ # response from `ListTrafficPolicies`, see [DeleteTrafficPolicy][1].
4105
+ #
4106
+ #
4107
+ #
4108
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html
4109
+ #
4075
4110
  # @option params [String] :traffic_policy_id_marker
4076
4111
  # (Conditional) For your first request to `ListTrafficPolicies`, don't
4077
4112
  # include the `TrafficPolicyIdMarker` parameter.
@@ -5229,7 +5264,7 @@ module Aws::Route53
5229
5264
  params: params,
5230
5265
  config: config)
5231
5266
  context[:gem_name] = 'aws-sdk-route53'
5232
- context[:gem_version] = '1.39.0'
5267
+ context[:gem_version] = '1.44.0'
5233
5268
  Seahorse::Client::Request.new(handlers, context)
5234
5269
  end
5235
5270
 
@@ -4209,8 +4209,9 @@ module Aws::Route53
4209
4209
  # (Optional) The maximum number of hosted zones that you want Amazon
4210
4210
  # Route 53 to return. If the specified VPC is associated with more
4211
4211
  # than `MaxItems` hosted zones, the response includes a `NextToken`
4212
- # element. `NextToken` contains the hosted zone ID of the first hosted
4213
- # zone that Route 53 will return if you submit another request.
4212
+ # element. `NextToken` contains an encrypted token that identifies the
4213
+ # first hosted zone that Route 53 will return if you submit another
4214
+ # request.
4214
4215
  # @return [Integer]
4215
4216
  #
4216
4217
  # @!attribute [rw] next_token
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.39.0
4
+ version: 1.44.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: 2020-06-23 00:00:00.000000000 Z
11
+ date: 2020-09-30 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.99.0
22
+ version: 3.109.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.99.0
32
+ version: 3.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement