aws-sdk-lightsail 1.70.0 → 1.72.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lightsail/client.rb +45 -28
- data/lib/aws-sdk-lightsail/client_api.rb +34 -0
- data/lib/aws-sdk-lightsail/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-lightsail/endpoint_provider.rb +74 -76
- data/lib/aws-sdk-lightsail/types.rb +252 -1890
- data/lib/aws-sdk-lightsail.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b038c59d011018043a5f3381e49c984eeb0d98c7948215f90a77ceb941fe9678
|
4
|
+
data.tar.gz: e4d76a7218029aefe0ec54d55fa1e2478f86422a0e091595f7f7d1c0a5156825
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a47277de38f21190d303d8f424552cc3ed4533c266bf6af98f4595b167d60288fb46d5ed269cc4a0375292cdab8dd312cab8f752cbab99c8264085abd5adce21
|
7
|
+
data.tar.gz: 98e43fb21eb46a432e0bdaed3de23bb39b0acc570d341f4eb061273aa266581511f1a0066bb354688d4b3135c1ba2f216d374482144e9d77d76c981ac82189a3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.72.0 (2023-01-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Amazon Lightsail.
|
8
|
+
|
9
|
+
1.71.0 (2022-11-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for Amazon Lightsail to automate the delegation of domains registered through Amazon Route 53 to Lightsail DNS management and to automate record creation for DNS validation of Lightsail SSL/TLS certificates.
|
13
|
+
|
4
14
|
1.70.0 (2022-10-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.72.0
|
@@ -1188,6 +1188,9 @@ module Aws::Lightsail
|
|
1188
1188
|
# resp.certificate.certificate_detail.domain_validation_records[0].resource_record.name #=> String
|
1189
1189
|
# resp.certificate.certificate_detail.domain_validation_records[0].resource_record.type #=> String
|
1190
1190
|
# resp.certificate.certificate_detail.domain_validation_records[0].resource_record.value #=> String
|
1191
|
+
# resp.certificate.certificate_detail.domain_validation_records[0].dns_record_creation_state.code #=> String, one of "SUCCEEDED", "STARTED", "FAILED"
|
1192
|
+
# resp.certificate.certificate_detail.domain_validation_records[0].dns_record_creation_state.message #=> String
|
1193
|
+
# resp.certificate.certificate_detail.domain_validation_records[0].validation_status #=> String, one of "PENDING_VALIDATION", "FAILED", "SUCCESS"
|
1191
1194
|
# resp.certificate.certificate_detail.request_failure_reason #=> String
|
1192
1195
|
# resp.certificate.certificate_detail.in_use_resource_count #=> Integer
|
1193
1196
|
# resp.certificate.certificate_detail.key_algorithm #=> String
|
@@ -1202,6 +1205,9 @@ module Aws::Lightsail
|
|
1202
1205
|
# resp.certificate.certificate_detail.renewal_summary.domain_validation_records[0].resource_record.name #=> String
|
1203
1206
|
# resp.certificate.certificate_detail.renewal_summary.domain_validation_records[0].resource_record.type #=> String
|
1204
1207
|
# resp.certificate.certificate_detail.renewal_summary.domain_validation_records[0].resource_record.value #=> String
|
1208
|
+
# resp.certificate.certificate_detail.renewal_summary.domain_validation_records[0].dns_record_creation_state.code #=> String, one of "SUCCEEDED", "STARTED", "FAILED"
|
1209
|
+
# resp.certificate.certificate_detail.renewal_summary.domain_validation_records[0].dns_record_creation_state.message #=> String
|
1210
|
+
# resp.certificate.certificate_detail.renewal_summary.domain_validation_records[0].validation_status #=> String, one of "PENDING_VALIDATION", "FAILED", "SUCCESS"
|
1205
1211
|
# resp.certificate.certificate_detail.renewal_summary.renewal_status #=> String, one of "PendingAutoRenewal", "PendingValidation", "Success", "Failed"
|
1206
1212
|
# resp.certificate.certificate_detail.renewal_summary.renewal_status_reason #=> String
|
1207
1213
|
# resp.certificate.certificate_detail.renewal_summary.updated_at #=> Time
|
@@ -1415,8 +1421,9 @@ module Aws::Lightsail
|
|
1415
1421
|
# typically
|
1416
1422
|
# `https://<ServiceName>.<RandomGUID>.<AWSRegion>.cs.amazonlightsail.com`.
|
1417
1423
|
# If the name of your container service is `container-service-1`, and
|
1418
|
-
# it's located in the US East (Ohio)
|
1419
|
-
# domain for your container service will be like
|
1424
|
+
# it's located in the US East (Ohio) Amazon Web Services Region
|
1425
|
+
# (`us-east-2`), then the domain for your container service will be like
|
1426
|
+
# the following example:
|
1420
1427
|
# `https://container-service-1.ur4EXAMPLE2uq.us-east-2.cs.amazonlightsail.com`
|
1421
1428
|
#
|
1422
1429
|
# The following are the requirements for container service names:
|
@@ -2369,14 +2376,6 @@ module Aws::Lightsail
|
|
2369
2376
|
# @option params [required, String] :domain_name
|
2370
2377
|
# The domain name to manage (e.g., `example.com`).
|
2371
2378
|
#
|
2372
|
-
# <note markdown="1"> You cannot register a new domain name using Lightsail. You must
|
2373
|
-
# register a domain name using Amazon Route 53 or another domain name
|
2374
|
-
# registrar. If you have already registered your domain, you can enter
|
2375
|
-
# its name in this parameter to manage the DNS records for that domain
|
2376
|
-
# using Lightsail.
|
2377
|
-
#
|
2378
|
-
# </note>
|
2379
|
-
#
|
2380
2379
|
# @option params [Array<Types::Tag>] :tags
|
2381
2380
|
# The tag keys and optional values to add to the resource during create.
|
2382
2381
|
#
|
@@ -3365,7 +3364,7 @@ module Aws::Lightsail
|
|
3365
3364
|
# block of time for each AWS Region. For more information about the
|
3366
3365
|
# preferred backup window time blocks for each region, see the [Working
|
3367
3366
|
# With Backups][1] guide in the Amazon Relational Database Service
|
3368
|
-
#
|
3367
|
+
# documentation.
|
3369
3368
|
#
|
3370
3369
|
# Constraints:
|
3371
3370
|
#
|
@@ -4108,8 +4107,8 @@ module Aws::Lightsail
|
|
4108
4107
|
# The unique name of the disk you want to delete (e.g., `my-disk`).
|
4109
4108
|
#
|
4110
4109
|
# @option params [Boolean] :force_delete_add_ons
|
4111
|
-
# A Boolean value to indicate whether to delete
|
4112
|
-
#
|
4110
|
+
# A Boolean value to indicate whether to delete all add-ons for the
|
4111
|
+
# disk.
|
4113
4112
|
#
|
4114
4113
|
# @return [Types::DeleteDiskResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4115
4114
|
#
|
@@ -4375,8 +4374,8 @@ module Aws::Lightsail
|
|
4375
4374
|
# The name of the instance to delete.
|
4376
4375
|
#
|
4377
4376
|
# @option params [Boolean] :force_delete_add_ons
|
4378
|
-
# A Boolean value to indicate whether to delete
|
4379
|
-
#
|
4377
|
+
# A Boolean value to indicate whether to delete all add-ons for the
|
4378
|
+
# instance.
|
4380
4379
|
#
|
4381
4380
|
# @return [Types::DeleteInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4382
4381
|
#
|
@@ -5888,6 +5887,9 @@ module Aws::Lightsail
|
|
5888
5887
|
# resp.certificates[0].certificate_detail.domain_validation_records[0].resource_record.name #=> String
|
5889
5888
|
# resp.certificates[0].certificate_detail.domain_validation_records[0].resource_record.type #=> String
|
5890
5889
|
# resp.certificates[0].certificate_detail.domain_validation_records[0].resource_record.value #=> String
|
5890
|
+
# resp.certificates[0].certificate_detail.domain_validation_records[0].dns_record_creation_state.code #=> String, one of "SUCCEEDED", "STARTED", "FAILED"
|
5891
|
+
# resp.certificates[0].certificate_detail.domain_validation_records[0].dns_record_creation_state.message #=> String
|
5892
|
+
# resp.certificates[0].certificate_detail.domain_validation_records[0].validation_status #=> String, one of "PENDING_VALIDATION", "FAILED", "SUCCESS"
|
5891
5893
|
# resp.certificates[0].certificate_detail.request_failure_reason #=> String
|
5892
5894
|
# resp.certificates[0].certificate_detail.in_use_resource_count #=> Integer
|
5893
5895
|
# resp.certificates[0].certificate_detail.key_algorithm #=> String
|
@@ -5902,6 +5904,9 @@ module Aws::Lightsail
|
|
5902
5904
|
# resp.certificates[0].certificate_detail.renewal_summary.domain_validation_records[0].resource_record.name #=> String
|
5903
5905
|
# resp.certificates[0].certificate_detail.renewal_summary.domain_validation_records[0].resource_record.type #=> String
|
5904
5906
|
# resp.certificates[0].certificate_detail.renewal_summary.domain_validation_records[0].resource_record.value #=> String
|
5907
|
+
# resp.certificates[0].certificate_detail.renewal_summary.domain_validation_records[0].dns_record_creation_state.code #=> String, one of "SUCCEEDED", "STARTED", "FAILED"
|
5908
|
+
# resp.certificates[0].certificate_detail.renewal_summary.domain_validation_records[0].dns_record_creation_state.message #=> String
|
5909
|
+
# resp.certificates[0].certificate_detail.renewal_summary.domain_validation_records[0].validation_status #=> String, one of "PENDING_VALIDATION", "FAILED", "SUCCESS"
|
5905
5910
|
# resp.certificates[0].certificate_detail.renewal_summary.renewal_status #=> String, one of "PendingAutoRenewal", "PendingValidation", "Success", "Failed"
|
5906
5911
|
# resp.certificates[0].certificate_detail.renewal_summary.renewal_status_reason #=> String
|
5907
5912
|
# resp.certificates[0].certificate_detail.renewal_summary.updated_at #=> Time
|
@@ -6104,7 +6109,7 @@ module Aws::Lightsail
|
|
6104
6109
|
#
|
6105
6110
|
# <note markdown="1"> Container logs are retained for a certain amount of time. For more
|
6106
6111
|
# information, see [Amazon Lightsail endpoints and quotas][1] in the
|
6107
|
-
# *
|
6112
|
+
# *Amazon Web Services General Reference*.
|
6108
6113
|
#
|
6109
6114
|
# </note>
|
6110
6115
|
#
|
@@ -6227,7 +6232,8 @@ module Aws::Lightsail
|
|
6227
6232
|
#
|
6228
6233
|
# <note markdown="1"> A set number of deployments are kept before the oldest one is replaced
|
6229
6234
|
# with the newest one. For more information, see [Amazon Lightsail
|
6230
|
-
# endpoints and quotas][1] in the *
|
6235
|
+
# endpoints and quotas][1] in the *Amazon Web Services General
|
6236
|
+
# Reference*.
|
6231
6237
|
#
|
6232
6238
|
# </note>
|
6233
6239
|
#
|
@@ -7091,6 +7097,10 @@ module Aws::Lightsail
|
|
7091
7097
|
# resp.domain.domain_entries[0].type #=> String
|
7092
7098
|
# resp.domain.domain_entries[0].options #=> Hash
|
7093
7099
|
# resp.domain.domain_entries[0].options["DomainEntryOptionsKeys"] #=> String
|
7100
|
+
# resp.domain.registered_domain_delegation_info.name_servers_update_state.code #=> String, one of "SUCCEEDED", "PENDING", "FAILED", "STARTED"
|
7101
|
+
# resp.domain.registered_domain_delegation_info.name_servers_update_state.message #=> String
|
7102
|
+
# resp.domain.registered_domain_delegation_info.r53_hosted_zone_deletion_state.code #=> String, one of "SUCCEEDED", "PENDING", "FAILED", "STARTED"
|
7103
|
+
# resp.domain.registered_domain_delegation_info.r53_hosted_zone_deletion_state.message #=> String
|
7094
7104
|
#
|
7095
7105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetDomain AWS API Documentation
|
7096
7106
|
#
|
@@ -7142,6 +7152,10 @@ module Aws::Lightsail
|
|
7142
7152
|
# resp.domains[0].domain_entries[0].type #=> String
|
7143
7153
|
# resp.domains[0].domain_entries[0].options #=> Hash
|
7144
7154
|
# resp.domains[0].domain_entries[0].options["DomainEntryOptionsKeys"] #=> String
|
7155
|
+
# resp.domains[0].registered_domain_delegation_info.name_servers_update_state.code #=> String, one of "SUCCEEDED", "PENDING", "FAILED", "STARTED"
|
7156
|
+
# resp.domains[0].registered_domain_delegation_info.name_servers_update_state.message #=> String
|
7157
|
+
# resp.domains[0].registered_domain_delegation_info.r53_hosted_zone_deletion_state.code #=> String, one of "SUCCEEDED", "PENDING", "FAILED", "STARTED"
|
7158
|
+
# resp.domains[0].registered_domain_delegation_info.r53_hosted_zone_deletion_state.message #=> String
|
7145
7159
|
# resp.next_page_token #=> String
|
7146
7160
|
#
|
7147
7161
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetDomains AWS API Documentation
|
@@ -8319,6 +8333,8 @@ module Aws::Lightsail
|
|
8319
8333
|
# resp.tls_certificates[0].domain_validation_records[0].value #=> String
|
8320
8334
|
# resp.tls_certificates[0].domain_validation_records[0].validation_status #=> String, one of "PENDING_VALIDATION", "FAILED", "SUCCESS"
|
8321
8335
|
# resp.tls_certificates[0].domain_validation_records[0].domain_name #=> String
|
8336
|
+
# resp.tls_certificates[0].domain_validation_records[0].dns_record_creation_state.code #=> String, one of "SUCCEEDED", "STARTED", "FAILED"
|
8337
|
+
# resp.tls_certificates[0].domain_validation_records[0].dns_record_creation_state.message #=> String
|
8322
8338
|
# resp.tls_certificates[0].failure_reason #=> String, one of "NO_AVAILABLE_CONTACTS", "ADDITIONAL_VERIFICATION_REQUIRED", "DOMAIN_NOT_ALLOWED", "INVALID_PUBLIC_DOMAIN", "OTHER"
|
8323
8339
|
# resp.tls_certificates[0].issued_at #=> Time
|
8324
8340
|
# resp.tls_certificates[0].issuer #=> String
|
@@ -10974,10 +10990,11 @@ module Aws::Lightsail
|
|
10974
10990
|
#
|
10975
10991
|
# A bucket bundle specifies the monthly cost, storage space, and data
|
10976
10992
|
# transfer quota for a bucket. You can update a bucket's bundle only
|
10977
|
-
# one time within a monthly
|
10978
|
-
# update a bucket's bundle, use the
|
10979
|
-
# `ableToUpdateBundle` parameter in the
|
10980
|
-
# you can currently update a bucket's
|
10993
|
+
# one time within a monthly Amazon Web Services billing cycle. To
|
10994
|
+
# determine if you can update a bucket's bundle, use the
|
10995
|
+
# [GetBuckets][1] action. The `ableToUpdateBundle` parameter in the
|
10996
|
+
# response will indicate whether you can currently update a bucket's
|
10997
|
+
# bundle.
|
10981
10998
|
#
|
10982
10999
|
# Update a bucket's bundle if it's consistently going over its storage
|
10983
11000
|
# space or data transfer quota, or if a bucket's usage is consistently
|
@@ -11318,10 +11335,10 @@ module Aws::Lightsail
|
|
11318
11335
|
# its monthly network transfer quota and is incurring an overage fee.
|
11319
11336
|
#
|
11320
11337
|
# You can update your distribution's bundle only one time within your
|
11321
|
-
# monthly
|
11322
|
-
# distribution's bundle, use the `GetDistributions` action.
|
11323
|
-
# `ableToUpdateBundle` parameter in the result will indicate whether
|
11324
|
-
# can currently update your distribution's bundle.
|
11338
|
+
# monthly Amazon Web Services billing cycle. To determine if you can
|
11339
|
+
# update your distribution's bundle, use the `GetDistributions` action.
|
11340
|
+
# The `ableToUpdateBundle` parameter in the result will indicate whether
|
11341
|
+
# you can currently update your distribution's bundle.
|
11325
11342
|
#
|
11326
11343
|
# @option params [String] :distribution_name
|
11327
11344
|
# The name of the distribution for which to update the bundle.
|
@@ -11681,8 +11698,8 @@ module Aws::Lightsail
|
|
11681
11698
|
# your database.
|
11682
11699
|
#
|
11683
11700
|
# The default is a 30-minute window selected at random from an 8-hour
|
11684
|
-
# block of time for each
|
11685
|
-
# week.
|
11701
|
+
# block of time for each Amazon Web Services Region, occurring on a
|
11702
|
+
# random day of the week.
|
11686
11703
|
#
|
11687
11704
|
# Constraints:
|
11688
11705
|
#
|
@@ -11862,7 +11879,7 @@ module Aws::Lightsail
|
|
11862
11879
|
params: params,
|
11863
11880
|
config: config)
|
11864
11881
|
context[:gem_name] = 'aws-sdk-lightsail'
|
11865
|
-
context[:gem_version] = '1.
|
11882
|
+
context[:gem_version] = '1.72.0'
|
11866
11883
|
Seahorse::Client::Request.new(handlers, context)
|
11867
11884
|
end
|
11868
11885
|
|
@@ -76,6 +76,7 @@ module Aws::Lightsail
|
|
76
76
|
CacheBehaviorPerPath = Shapes::StructureShape.new(name: 'CacheBehaviorPerPath')
|
77
77
|
CacheSettings = Shapes::StructureShape.new(name: 'CacheSettings')
|
78
78
|
Certificate = Shapes::StructureShape.new(name: 'Certificate')
|
79
|
+
CertificateDomainValidationStatus = Shapes::StringShape.new(name: 'CertificateDomainValidationStatus')
|
79
80
|
CertificateName = Shapes::StringShape.new(name: 'CertificateName')
|
80
81
|
CertificateStatus = Shapes::StringShape.new(name: 'CertificateStatus')
|
81
82
|
CertificateStatusList = Shapes::ListShape.new(name: 'CertificateStatusList')
|
@@ -246,6 +247,8 @@ module Aws::Lightsail
|
|
246
247
|
DistributionBundleList = Shapes::ListShape.new(name: 'DistributionBundleList')
|
247
248
|
DistributionList = Shapes::ListShape.new(name: 'DistributionList')
|
248
249
|
DistributionMetricName = Shapes::StringShape.new(name: 'DistributionMetricName')
|
250
|
+
DnsRecordCreationState = Shapes::StructureShape.new(name: 'DnsRecordCreationState')
|
251
|
+
DnsRecordCreationStateCode = Shapes::StringShape.new(name: 'DnsRecordCreationStateCode')
|
249
252
|
Domain = Shapes::StructureShape.new(name: 'Domain')
|
250
253
|
DomainEntry = Shapes::StructureShape.new(name: 'DomainEntry')
|
251
254
|
DomainEntryList = Shapes::ListShape.new(name: 'DomainEntryList')
|
@@ -457,6 +460,8 @@ module Aws::Lightsail
|
|
457
460
|
LoadBalancerProtocol = Shapes::StringShape.new(name: 'LoadBalancerProtocol')
|
458
461
|
LoadBalancerState = Shapes::StringShape.new(name: 'LoadBalancerState')
|
459
462
|
LoadBalancerTlsCertificate = Shapes::StructureShape.new(name: 'LoadBalancerTlsCertificate')
|
463
|
+
LoadBalancerTlsCertificateDnsRecordCreationState = Shapes::StructureShape.new(name: 'LoadBalancerTlsCertificateDnsRecordCreationState')
|
464
|
+
LoadBalancerTlsCertificateDnsRecordCreationStateCode = Shapes::StringShape.new(name: 'LoadBalancerTlsCertificateDnsRecordCreationStateCode')
|
460
465
|
LoadBalancerTlsCertificateDomainStatus = Shapes::StringShape.new(name: 'LoadBalancerTlsCertificateDomainStatus')
|
461
466
|
LoadBalancerTlsCertificateDomainValidationOption = Shapes::StructureShape.new(name: 'LoadBalancerTlsCertificateDomainValidationOption')
|
462
467
|
LoadBalancerTlsCertificateDomainValidationOptionList = Shapes::ListShape.new(name: 'LoadBalancerTlsCertificateDomainValidationOptionList')
|
@@ -483,6 +488,8 @@ module Aws::Lightsail
|
|
483
488
|
MetricUnit = Shapes::StringShape.new(name: 'MetricUnit')
|
484
489
|
MonitoredResourceInfo = Shapes::StructureShape.new(name: 'MonitoredResourceInfo')
|
485
490
|
MonthlyTransfer = Shapes::StructureShape.new(name: 'MonthlyTransfer')
|
491
|
+
NameServersUpdateState = Shapes::StructureShape.new(name: 'NameServersUpdateState')
|
492
|
+
NameServersUpdateStateCode = Shapes::StringShape.new(name: 'NameServersUpdateStateCode')
|
486
493
|
NetworkProtocol = Shapes::StringShape.new(name: 'NetworkProtocol')
|
487
494
|
NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
|
488
495
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
@@ -518,6 +525,8 @@ module Aws::Lightsail
|
|
518
525
|
PutInstancePublicPortsRequest = Shapes::StructureShape.new(name: 'PutInstancePublicPortsRequest')
|
519
526
|
PutInstancePublicPortsResult = Shapes::StructureShape.new(name: 'PutInstancePublicPortsResult')
|
520
527
|
QueryStringObject = Shapes::StructureShape.new(name: 'QueryStringObject')
|
528
|
+
R53HostedZoneDeletionState = Shapes::StructureShape.new(name: 'R53HostedZoneDeletionState')
|
529
|
+
R53HostedZoneDeletionStateCode = Shapes::StringShape.new(name: 'R53HostedZoneDeletionStateCode')
|
521
530
|
RebootInstanceRequest = Shapes::StructureShape.new(name: 'RebootInstanceRequest')
|
522
531
|
RebootInstanceResult = Shapes::StructureShape.new(name: 'RebootInstanceResult')
|
523
532
|
RebootRelationalDatabaseRequest = Shapes::StructureShape.new(name: 'RebootRelationalDatabaseRequest')
|
@@ -528,6 +537,7 @@ module Aws::Lightsail
|
|
528
537
|
RegionName = Shapes::StringShape.new(name: 'RegionName')
|
529
538
|
RegisterContainerImageRequest = Shapes::StructureShape.new(name: 'RegisterContainerImageRequest')
|
530
539
|
RegisterContainerImageResult = Shapes::StructureShape.new(name: 'RegisterContainerImageResult')
|
540
|
+
RegisteredDomainDelegationInfo = Shapes::StructureShape.new(name: 'RegisteredDomainDelegationInfo')
|
531
541
|
RelationalDatabase = Shapes::StructureShape.new(name: 'RelationalDatabase')
|
532
542
|
RelationalDatabaseBlueprint = Shapes::StructureShape.new(name: 'RelationalDatabaseBlueprint')
|
533
543
|
RelationalDatabaseBlueprintList = Shapes::ListShape.new(name: 'RelationalDatabaseBlueprintList')
|
@@ -1542,6 +1552,10 @@ module Aws::Lightsail
|
|
1542
1552
|
|
1543
1553
|
DistributionList.member = Shapes::ShapeRef.new(shape: LightsailDistribution)
|
1544
1554
|
|
1555
|
+
DnsRecordCreationState.add_member(:code, Shapes::ShapeRef.new(shape: DnsRecordCreationStateCode, location_name: "code"))
|
1556
|
+
DnsRecordCreationState.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
|
1557
|
+
DnsRecordCreationState.struct_class = Types::DnsRecordCreationState
|
1558
|
+
|
1545
1559
|
Domain.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
1546
1560
|
Domain.add_member(:arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "arn"))
|
1547
1561
|
Domain.add_member(:support_code, Shapes::ShapeRef.new(shape: string, location_name: "supportCode"))
|
@@ -1550,6 +1564,7 @@ module Aws::Lightsail
|
|
1550
1564
|
Domain.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "resourceType"))
|
1551
1565
|
Domain.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
1552
1566
|
Domain.add_member(:domain_entries, Shapes::ShapeRef.new(shape: DomainEntryList, location_name: "domainEntries"))
|
1567
|
+
Domain.add_member(:registered_domain_delegation_info, Shapes::ShapeRef.new(shape: RegisteredDomainDelegationInfo, location_name: "registeredDomainDelegationInfo"))
|
1553
1568
|
Domain.struct_class = Types::Domain
|
1554
1569
|
|
1555
1570
|
DomainEntry.add_member(:id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "id"))
|
@@ -1571,6 +1586,8 @@ module Aws::Lightsail
|
|
1571
1586
|
|
1572
1587
|
DomainValidationRecord.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "domainName"))
|
1573
1588
|
DomainValidationRecord.add_member(:resource_record, Shapes::ShapeRef.new(shape: ResourceRecord, location_name: "resourceRecord"))
|
1589
|
+
DomainValidationRecord.add_member(:dns_record_creation_state, Shapes::ShapeRef.new(shape: DnsRecordCreationState, location_name: "dnsRecordCreationState"))
|
1590
|
+
DomainValidationRecord.add_member(:validation_status, Shapes::ShapeRef.new(shape: CertificateDomainValidationStatus, location_name: "validationStatus"))
|
1574
1591
|
DomainValidationRecord.struct_class = Types::DomainValidationRecord
|
1575
1592
|
|
1576
1593
|
DomainValidationRecordList.member = Shapes::ShapeRef.new(shape: DomainValidationRecord)
|
@@ -2355,6 +2372,10 @@ module Aws::Lightsail
|
|
2355
2372
|
LoadBalancerTlsCertificate.add_member(:subject_alternative_names, Shapes::ShapeRef.new(shape: StringList, location_name: "subjectAlternativeNames"))
|
2356
2373
|
LoadBalancerTlsCertificate.struct_class = Types::LoadBalancerTlsCertificate
|
2357
2374
|
|
2375
|
+
LoadBalancerTlsCertificateDnsRecordCreationState.add_member(:code, Shapes::ShapeRef.new(shape: LoadBalancerTlsCertificateDnsRecordCreationStateCode, location_name: "code"))
|
2376
|
+
LoadBalancerTlsCertificateDnsRecordCreationState.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
|
2377
|
+
LoadBalancerTlsCertificateDnsRecordCreationState.struct_class = Types::LoadBalancerTlsCertificateDnsRecordCreationState
|
2378
|
+
|
2358
2379
|
LoadBalancerTlsCertificateDomainValidationOption.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "domainName"))
|
2359
2380
|
LoadBalancerTlsCertificateDomainValidationOption.add_member(:validation_status, Shapes::ShapeRef.new(shape: LoadBalancerTlsCertificateDomainStatus, location_name: "validationStatus"))
|
2360
2381
|
LoadBalancerTlsCertificateDomainValidationOption.struct_class = Types::LoadBalancerTlsCertificateDomainValidationOption
|
@@ -2366,6 +2387,7 @@ module Aws::Lightsail
|
|
2366
2387
|
LoadBalancerTlsCertificateDomainValidationRecord.add_member(:value, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "value"))
|
2367
2388
|
LoadBalancerTlsCertificateDomainValidationRecord.add_member(:validation_status, Shapes::ShapeRef.new(shape: LoadBalancerTlsCertificateDomainStatus, location_name: "validationStatus"))
|
2368
2389
|
LoadBalancerTlsCertificateDomainValidationRecord.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "domainName"))
|
2390
|
+
LoadBalancerTlsCertificateDomainValidationRecord.add_member(:dns_record_creation_state, Shapes::ShapeRef.new(shape: LoadBalancerTlsCertificateDnsRecordCreationState, location_name: "dnsRecordCreationState"))
|
2369
2391
|
LoadBalancerTlsCertificateDomainValidationRecord.struct_class = Types::LoadBalancerTlsCertificateDomainValidationRecord
|
2370
2392
|
|
2371
2393
|
LoadBalancerTlsCertificateDomainValidationRecordList.member = Shapes::ShapeRef.new(shape: LoadBalancerTlsCertificateDomainValidationRecord)
|
@@ -2418,6 +2440,10 @@ module Aws::Lightsail
|
|
2418
2440
|
MonthlyTransfer.add_member(:gb_per_month_allocated, Shapes::ShapeRef.new(shape: integer, location_name: "gbPerMonthAllocated"))
|
2419
2441
|
MonthlyTransfer.struct_class = Types::MonthlyTransfer
|
2420
2442
|
|
2443
|
+
NameServersUpdateState.add_member(:code, Shapes::ShapeRef.new(shape: NameServersUpdateStateCode, location_name: "code"))
|
2444
|
+
NameServersUpdateState.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
|
2445
|
+
NameServersUpdateState.struct_class = Types::NameServersUpdateState
|
2446
|
+
|
2421
2447
|
NotFoundException.add_member(:code, Shapes::ShapeRef.new(shape: string, location_name: "code"))
|
2422
2448
|
NotFoundException.add_member(:docs, Shapes::ShapeRef.new(shape: string, location_name: "docs"))
|
2423
2449
|
NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
|
@@ -2532,6 +2558,10 @@ module Aws::Lightsail
|
|
2532
2558
|
QueryStringObject.add_member(:query_strings_allow_list, Shapes::ShapeRef.new(shape: StringList, location_name: "queryStringsAllowList"))
|
2533
2559
|
QueryStringObject.struct_class = Types::QueryStringObject
|
2534
2560
|
|
2561
|
+
R53HostedZoneDeletionState.add_member(:code, Shapes::ShapeRef.new(shape: R53HostedZoneDeletionStateCode, location_name: "code"))
|
2562
|
+
R53HostedZoneDeletionState.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
|
2563
|
+
R53HostedZoneDeletionState.struct_class = Types::R53HostedZoneDeletionState
|
2564
|
+
|
2535
2565
|
RebootInstanceRequest.add_member(:instance_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "instanceName"))
|
2536
2566
|
RebootInstanceRequest.struct_class = Types::RebootInstanceRequest
|
2537
2567
|
|
@@ -2562,6 +2592,10 @@ module Aws::Lightsail
|
|
2562
2592
|
RegisterContainerImageResult.add_member(:container_image, Shapes::ShapeRef.new(shape: ContainerImage, location_name: "containerImage"))
|
2563
2593
|
RegisterContainerImageResult.struct_class = Types::RegisterContainerImageResult
|
2564
2594
|
|
2595
|
+
RegisteredDomainDelegationInfo.add_member(:name_servers_update_state, Shapes::ShapeRef.new(shape: NameServersUpdateState, location_name: "nameServersUpdateState"))
|
2596
|
+
RegisteredDomainDelegationInfo.add_member(:r53_hosted_zone_deletion_state, Shapes::ShapeRef.new(shape: R53HostedZoneDeletionState, location_name: "r53HostedZoneDeletionState"))
|
2597
|
+
RegisteredDomainDelegationInfo.struct_class = Types::RegisteredDomainDelegationInfo
|
2598
|
+
|
2565
2599
|
RelationalDatabase.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
2566
2600
|
RelationalDatabase.add_member(:arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "arn"))
|
2567
2601
|
RelationalDatabase.add_member(:support_code, Shapes::ShapeRef.new(shape: string, location_name: "supportCode"))
|
@@ -50,6 +50,9 @@ module Aws::Lightsail
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
+
if self[:region].nil?
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
+
end
|
53
56
|
self[:use_dual_stack] = options[:use_dual_stack]
|
54
57
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
58
|
if self[:use_dual_stack].nil?
|
@@ -29,83 +29,81 @@ module Aws::Lightsail
|
|
29
29
|
# @api private
|
30
30
|
RULES = <<-JSON
|
31
31
|
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
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
|
-
dCI6eyJ1cmwiOiJodHRwczovL2xpZ2h0c2FpbC1maXBzLntSZWdpb259LntQ
|
77
|
-
YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
|
78
|
-
ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
|
79
|
-
b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJl
|
80
|
-
IGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
|
81
|
-
IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
|
82
|
-
Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJ
|
83
|
-
UFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
84
|
-
b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
|
85
|
-
IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
|
86
|
-
LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
|
87
|
-
ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
|
88
|
-
aXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9saWdodHNh
|
89
|
-
aWwtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
|
90
|
-
LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
|
91
|
-
bnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVu
|
92
|
-
YWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQ
|
93
|
-
UyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
94
|
-
b2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0
|
95
|
-
cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
96
|
-
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
|
97
|
-
QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
|
98
|
-
b3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
99
|
-
Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbGln
|
100
|
-
aHRzYWlsLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5z
|
101
|
-
U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
|
102
|
-
OiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFs
|
103
|
-
U3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
|
104
|
-
c3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
|
105
|
-
aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbGlnaHRzYWls
|
106
|
-
LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
|
33
|
+
YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
|
34
|
+
ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
|
35
|
+
aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
|
36
|
+
ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
|
37
|
+
IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
|
38
|
+
bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
|
39
|
+
aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
|
40
|
+
IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
|
41
|
+
IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
|
42
|
+
aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
|
43
|
+
Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
|
44
|
+
cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
|
45
|
+
bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
|
46
|
+
YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
|
47
|
+
bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
|
48
|
+
ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
|
49
|
+
IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
|
50
|
+
b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
|
51
|
+
ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
|
52
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
|
53
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
|
54
|
+
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
55
|
+
dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
|
56
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
|
57
|
+
ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
|
58
|
+
b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
59
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
|
60
|
+
VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
|
61
|
+
Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
|
62
|
+
b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
|
63
|
+
XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
|
107
64
|
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
108
|
-
|
65
|
+
fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
|
66
|
+
Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
|
67
|
+
bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
|
68
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
69
|
+
b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
|
70
|
+
Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
|
71
|
+
XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
72
|
+
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
73
|
+
InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
74
|
+
IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
|
75
|
+
Ly9saWdodHNhaWwtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1
|
76
|
+
YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6
|
77
|
+
e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVy
|
78
|
+
cm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhp
|
79
|
+
cyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5
|
80
|
+
cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5F
|
81
|
+
cXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlw
|
82
|
+
ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
83
|
+
ZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2
|
84
|
+
IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19
|
85
|
+
XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwi
|
86
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBv
|
87
|
+
aW50Ijp7InVybCI6Imh0dHBzOi8vbGlnaHRzYWlsLWZpcHMue1JlZ2lvbn0u
|
88
|
+
e1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30s
|
89
|
+
ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0
|
90
|
+
aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBh
|
91
|
+
cnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3Ii
|
92
|
+
fV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
|
93
|
+
diI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRy
|
94
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
|
95
|
+
YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJy
|
96
|
+
ZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1d
|
97
|
+
fV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJl
|
98
|
+
bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2xpZ2h0c2FpbC57UmVnaW9ufS57
|
99
|
+
UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0
|
100
|
+
aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsi
|
101
|
+
Y29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVhbFN0YWNrIGlzIGVuYWJsZWQg
|
102
|
+
YnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRHVhbFN0YWNr
|
103
|
+
IiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
104
|
+
dCI6eyJ1cmwiOiJodHRwczovL2xpZ2h0c2FpbC57UmVnaW9ufS57UGFydGl0
|
105
|
+
aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
106
|
+
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
|
109
107
|
|
110
108
|
JSON
|
111
109
|
end
|