@aws-sdk/client-lightsail 3.204.0 → 3.208.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/README.md +2 -2
  2. package/dist-cjs/commands/GetDistributionMetricDataCommand.js +3 -3
  3. package/dist-cjs/commands/GetDistributionsCommand.js +3 -3
  4. package/dist-cjs/commands/GetDomainCommand.js +3 -3
  5. package/dist-cjs/commands/GetDomainsCommand.js +3 -3
  6. package/dist-cjs/models/models_0.js +48 -38
  7. package/dist-cjs/models/models_1.js +46 -4
  8. package/dist-cjs/protocols/Aws_json1_1.js +44 -0
  9. package/dist-es/commands/GetDistributionMetricDataCommand.js +1 -1
  10. package/dist-es/commands/GetDistributionsCommand.js +1 -1
  11. package/dist-es/commands/GetDomainCommand.js +1 -1
  12. package/dist-es/commands/GetDomainsCommand.js +1 -1
  13. package/dist-es/models/models_0.js +38 -24
  14. package/dist-es/models/models_1.js +33 -0
  15. package/dist-es/protocols/Aws_json1_1.js +44 -0
  16. package/dist-types/Lightsail.d.ts +9 -8
  17. package/dist-types/LightsailClient.d.ts +2 -2
  18. package/dist-types/commands/GetContainerLogCommand.d.ts +2 -1
  19. package/dist-types/commands/GetContainerServiceDeploymentsCommand.d.ts +2 -1
  20. package/dist-types/commands/GetDistributionMetricDataCommand.d.ts +1 -1
  21. package/dist-types/commands/GetDistributionsCommand.d.ts +1 -1
  22. package/dist-types/commands/GetDomainCommand.d.ts +1 -1
  23. package/dist-types/commands/GetDomainsCommand.d.ts +1 -1
  24. package/dist-types/commands/UpdateBucketBundleCommand.d.ts +2 -2
  25. package/dist-types/commands/UpdateDistributionBundleCommand.d.ts +1 -2
  26. package/dist-types/models/models_0.d.ts +221 -282
  27. package/dist-types/models/models_1.d.ts +324 -6
  28. package/dist-types/ts3.4/commands/GetDistributionMetricDataCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/GetDistributionsCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/GetDomainCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/GetDomainsCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +53 -58
  33. package/dist-types/ts3.4/models/models_1.d.ts +74 -0
  34. package/package.json +35 -35
@@ -412,6 +412,18 @@ export var HeaderEnum;
412
412
  HeaderEnum["origin"] = "Origin";
413
413
  HeaderEnum["referer"] = "Referer";
414
414
  })(HeaderEnum || (HeaderEnum = {}));
415
+ export var DnsRecordCreationStateCode;
416
+ (function (DnsRecordCreationStateCode) {
417
+ DnsRecordCreationStateCode["Failed"] = "FAILED";
418
+ DnsRecordCreationStateCode["Started"] = "STARTED";
419
+ DnsRecordCreationStateCode["Succeeded"] = "SUCCEEDED";
420
+ })(DnsRecordCreationStateCode || (DnsRecordCreationStateCode = {}));
421
+ export var CertificateDomainValidationStatus;
422
+ (function (CertificateDomainValidationStatus) {
423
+ CertificateDomainValidationStatus["Failed"] = "FAILED";
424
+ CertificateDomainValidationStatus["PendingValidation"] = "PENDING_VALIDATION";
425
+ CertificateDomainValidationStatus["Success"] = "SUCCESS";
426
+ })(CertificateDomainValidationStatus || (CertificateDomainValidationStatus = {}));
415
427
  export var RenewalStatus;
416
428
  (function (RenewalStatus) {
417
429
  RenewalStatus["Failed"] = "Failed";
@@ -547,6 +559,20 @@ export var DistributionMetricName;
547
559
  DistributionMetricName["Requests"] = "Requests";
548
560
  DistributionMetricName["TotalErrorRate"] = "TotalErrorRate";
549
561
  })(DistributionMetricName || (DistributionMetricName = {}));
562
+ export var NameServersUpdateStateCode;
563
+ (function (NameServersUpdateStateCode) {
564
+ NameServersUpdateStateCode["Failed"] = "FAILED";
565
+ NameServersUpdateStateCode["Pending"] = "PENDING";
566
+ NameServersUpdateStateCode["Started"] = "STARTED";
567
+ NameServersUpdateStateCode["Succeeded"] = "SUCCEEDED";
568
+ })(NameServersUpdateStateCode || (NameServersUpdateStateCode = {}));
569
+ export var R53HostedZoneDeletionStateCode;
570
+ (function (R53HostedZoneDeletionStateCode) {
571
+ R53HostedZoneDeletionStateCode["Failed"] = "FAILED";
572
+ R53HostedZoneDeletionStateCode["Pending"] = "PENDING";
573
+ R53HostedZoneDeletionStateCode["Started"] = "STARTED";
574
+ R53HostedZoneDeletionStateCode["Succeeded"] = "SUCCEEDED";
575
+ })(R53HostedZoneDeletionStateCode || (R53HostedZoneDeletionStateCode = {}));
550
576
  export var ExportSnapshotRecordSourceType;
551
577
  (function (ExportSnapshotRecordSourceType) {
552
578
  ExportSnapshotRecordSourceType["DiskSnapshot"] = "DiskSnapshot";
@@ -676,6 +702,9 @@ export const QueryStringObjectFilterSensitiveLog = (obj) => ({
676
702
  export const CacheSettingsFilterSensitiveLog = (obj) => ({
677
703
  ...obj,
678
704
  });
705
+ export const DnsRecordCreationStateFilterSensitiveLog = (obj) => ({
706
+ ...obj,
707
+ });
679
708
  export const ResourceRecordFilterSensitiveLog = (obj) => ({
680
709
  ...obj,
681
710
  });
@@ -1098,6 +1127,15 @@ export const DiskSnapshotInfoFilterSensitiveLog = (obj) => ({
1098
1127
  export const DistributionBundleFilterSensitiveLog = (obj) => ({
1099
1128
  ...obj,
1100
1129
  });
1130
+ export const NameServersUpdateStateFilterSensitiveLog = (obj) => ({
1131
+ ...obj,
1132
+ });
1133
+ export const R53HostedZoneDeletionStateFilterSensitiveLog = (obj) => ({
1134
+ ...obj,
1135
+ });
1136
+ export const RegisteredDomainDelegationInfoFilterSensitiveLog = (obj) => ({
1137
+ ...obj,
1138
+ });
1101
1139
  export const DomainFilterSensitiveLog = (obj) => ({
1102
1140
  ...obj,
1103
1141
  });
@@ -1279,27 +1317,3 @@ export const GetDistributionLatestCacheResetRequestFilterSensitiveLog = (obj) =>
1279
1317
  export const GetDistributionLatestCacheResetResultFilterSensitiveLog = (obj) => ({
1280
1318
  ...obj,
1281
1319
  });
1282
- export const GetDistributionMetricDataRequestFilterSensitiveLog = (obj) => ({
1283
- ...obj,
1284
- });
1285
- export const GetDistributionMetricDataResultFilterSensitiveLog = (obj) => ({
1286
- ...obj,
1287
- });
1288
- export const GetDistributionsRequestFilterSensitiveLog = (obj) => ({
1289
- ...obj,
1290
- });
1291
- export const GetDistributionsResultFilterSensitiveLog = (obj) => ({
1292
- ...obj,
1293
- });
1294
- export const GetDomainRequestFilterSensitiveLog = (obj) => ({
1295
- ...obj,
1296
- });
1297
- export const GetDomainResultFilterSensitiveLog = (obj) => ({
1298
- ...obj,
1299
- });
1300
- export const GetDomainsRequestFilterSensitiveLog = (obj) => ({
1301
- ...obj,
1302
- });
1303
- export const GetDomainsResultFilterSensitiveLog = (obj) => ({
1304
- ...obj,
1305
- });
@@ -111,6 +111,12 @@ export var LoadBalancerMetricName;
111
111
  LoadBalancerMetricName["RequestCount"] = "RequestCount";
112
112
  LoadBalancerMetricName["UnhealthyHostCount"] = "UnhealthyHostCount";
113
113
  })(LoadBalancerMetricName || (LoadBalancerMetricName = {}));
114
+ export var LoadBalancerTlsCertificateDnsRecordCreationStateCode;
115
+ (function (LoadBalancerTlsCertificateDnsRecordCreationStateCode) {
116
+ LoadBalancerTlsCertificateDnsRecordCreationStateCode["Failed"] = "FAILED";
117
+ LoadBalancerTlsCertificateDnsRecordCreationStateCode["Started"] = "STARTED";
118
+ LoadBalancerTlsCertificateDnsRecordCreationStateCode["Succeeded"] = "SUCCEEDED";
119
+ })(LoadBalancerTlsCertificateDnsRecordCreationStateCode || (LoadBalancerTlsCertificateDnsRecordCreationStateCode = {}));
114
120
  export var LoadBalancerTlsCertificateDomainStatus;
115
121
  (function (LoadBalancerTlsCertificateDomainStatus) {
116
122
  LoadBalancerTlsCertificateDomainStatus["Failed"] = "FAILED";
@@ -180,6 +186,30 @@ export var ResourceBucketAccess;
180
186
  ResourceBucketAccess["Allow"] = "allow";
181
187
  ResourceBucketAccess["Deny"] = "deny";
182
188
  })(ResourceBucketAccess || (ResourceBucketAccess = {}));
189
+ export const GetDistributionMetricDataRequestFilterSensitiveLog = (obj) => ({
190
+ ...obj,
191
+ });
192
+ export const GetDistributionMetricDataResultFilterSensitiveLog = (obj) => ({
193
+ ...obj,
194
+ });
195
+ export const GetDistributionsRequestFilterSensitiveLog = (obj) => ({
196
+ ...obj,
197
+ });
198
+ export const GetDistributionsResultFilterSensitiveLog = (obj) => ({
199
+ ...obj,
200
+ });
201
+ export const GetDomainRequestFilterSensitiveLog = (obj) => ({
202
+ ...obj,
203
+ });
204
+ export const GetDomainResultFilterSensitiveLog = (obj) => ({
205
+ ...obj,
206
+ });
207
+ export const GetDomainsRequestFilterSensitiveLog = (obj) => ({
208
+ ...obj,
209
+ });
210
+ export const GetDomainsResultFilterSensitiveLog = (obj) => ({
211
+ ...obj,
212
+ });
183
213
  export const GetExportSnapshotRecordsRequestFilterSensitiveLog = (obj) => ({
184
214
  ...obj,
185
215
  });
@@ -312,6 +342,9 @@ export const GetLoadBalancersResultFilterSensitiveLog = (obj) => ({
312
342
  export const GetLoadBalancerTlsCertificatesRequestFilterSensitiveLog = (obj) => ({
313
343
  ...obj,
314
344
  });
345
+ export const LoadBalancerTlsCertificateDnsRecordCreationStateFilterSensitiveLog = (obj) => ({
346
+ ...obj,
347
+ });
315
348
  export const LoadBalancerTlsCertificateDomainValidationRecordFilterSensitiveLog = (obj) => ({
316
349
  ...obj,
317
350
  });
@@ -11712,6 +11712,12 @@ const deserializeAws_json1_1DistributionList = (output, context) => {
11712
11712
  });
11713
11713
  return retVal;
11714
11714
  };
11715
+ const deserializeAws_json1_1DnsRecordCreationState = (output, context) => {
11716
+ return {
11717
+ code: __expectString(output.code),
11718
+ message: __expectString(output.message),
11719
+ };
11720
+ };
11715
11721
  const deserializeAws_json1_1Domain = (output, context) => {
11716
11722
  return {
11717
11723
  arn: __expectString(output.arn),
@@ -11719,6 +11725,9 @@ const deserializeAws_json1_1Domain = (output, context) => {
11719
11725
  domainEntries: output.domainEntries != null ? deserializeAws_json1_1DomainEntryList(output.domainEntries, context) : undefined,
11720
11726
  location: output.location != null ? deserializeAws_json1_1ResourceLocation(output.location, context) : undefined,
11721
11727
  name: __expectString(output.name),
11728
+ registeredDomainDelegationInfo: output.registeredDomainDelegationInfo != null
11729
+ ? deserializeAws_json1_1RegisteredDomainDelegationInfo(output.registeredDomainDelegationInfo, context)
11730
+ : undefined,
11722
11731
  resourceType: __expectString(output.resourceType),
11723
11732
  supportCode: __expectString(output.supportCode),
11724
11733
  tags: output.tags != null ? deserializeAws_json1_1TagList(output.tags, context) : undefined,
@@ -11769,8 +11778,12 @@ const deserializeAws_json1_1DomainList = (output, context) => {
11769
11778
  };
11770
11779
  const deserializeAws_json1_1DomainValidationRecord = (output, context) => {
11771
11780
  return {
11781
+ dnsRecordCreationState: output.dnsRecordCreationState != null
11782
+ ? deserializeAws_json1_1DnsRecordCreationState(output.dnsRecordCreationState, context)
11783
+ : undefined,
11772
11784
  domainName: __expectString(output.domainName),
11773
11785
  resourceRecord: output.resourceRecord != null ? deserializeAws_json1_1ResourceRecord(output.resourceRecord, context) : undefined,
11786
+ validationStatus: __expectString(output.validationStatus),
11774
11787
  };
11775
11788
  };
11776
11789
  const deserializeAws_json1_1DomainValidationRecordList = (output, context) => {
@@ -12665,6 +12678,12 @@ const deserializeAws_json1_1LoadBalancerTlsCertificate = (output, context) => {
12665
12678
  tags: output.tags != null ? deserializeAws_json1_1TagList(output.tags, context) : undefined,
12666
12679
  };
12667
12680
  };
12681
+ const deserializeAws_json1_1LoadBalancerTlsCertificateDnsRecordCreationState = (output, context) => {
12682
+ return {
12683
+ code: __expectString(output.code),
12684
+ message: __expectString(output.message),
12685
+ };
12686
+ };
12668
12687
  const deserializeAws_json1_1LoadBalancerTlsCertificateDomainValidationOption = (output, context) => {
12669
12688
  return {
12670
12689
  domainName: __expectString(output.domainName),
@@ -12684,6 +12703,9 @@ const deserializeAws_json1_1LoadBalancerTlsCertificateDomainValidationOptionList
12684
12703
  };
12685
12704
  const deserializeAws_json1_1LoadBalancerTlsCertificateDomainValidationRecord = (output, context) => {
12686
12705
  return {
12706
+ dnsRecordCreationState: output.dnsRecordCreationState != null
12707
+ ? deserializeAws_json1_1LoadBalancerTlsCertificateDnsRecordCreationState(output.dnsRecordCreationState, context)
12708
+ : undefined,
12687
12709
  domainName: __expectString(output.domainName),
12688
12710
  name: __expectString(output.name),
12689
12711
  type: __expectString(output.type),
@@ -12809,6 +12831,12 @@ const deserializeAws_json1_1MonthlyTransfer = (output, context) => {
12809
12831
  gbPerMonthAllocated: __expectInt32(output.gbPerMonthAllocated),
12810
12832
  };
12811
12833
  };
12834
+ const deserializeAws_json1_1NameServersUpdateState = (output, context) => {
12835
+ return {
12836
+ code: __expectString(output.code),
12837
+ message: __expectString(output.message),
12838
+ };
12839
+ };
12812
12840
  const deserializeAws_json1_1NotFoundException = (output, context) => {
12813
12841
  return {
12814
12842
  code: __expectString(output.code),
@@ -12974,6 +13002,12 @@ const deserializeAws_json1_1QueryStringObject = (output, context) => {
12974
13002
  : undefined,
12975
13003
  };
12976
13004
  };
13005
+ const deserializeAws_json1_1R53HostedZoneDeletionState = (output, context) => {
13006
+ return {
13007
+ code: __expectString(output.code),
13008
+ message: __expectString(output.message),
13009
+ };
13010
+ };
12977
13011
  const deserializeAws_json1_1RebootInstanceResult = (output, context) => {
12978
13012
  return {
12979
13013
  operations: output.operations != null ? deserializeAws_json1_1OperationList(output.operations, context) : undefined,
@@ -13014,6 +13048,16 @@ const deserializeAws_json1_1RegisterContainerImageResult = (output, context) =>
13014
13048
  containerImage: output.containerImage != null ? deserializeAws_json1_1ContainerImage(output.containerImage, context) : undefined,
13015
13049
  };
13016
13050
  };
13051
+ const deserializeAws_json1_1RegisteredDomainDelegationInfo = (output, context) => {
13052
+ return {
13053
+ nameServersUpdateState: output.nameServersUpdateState != null
13054
+ ? deserializeAws_json1_1NameServersUpdateState(output.nameServersUpdateState, context)
13055
+ : undefined,
13056
+ r53HostedZoneDeletionState: output.r53HostedZoneDeletionState != null
13057
+ ? deserializeAws_json1_1R53HostedZoneDeletionState(output.r53HostedZoneDeletionState, context)
13058
+ : undefined,
13059
+ };
13060
+ };
13017
13061
  const deserializeAws_json1_1RelationalDatabase = (output, context) => {
13018
13062
  return {
13019
13063
  arn: __expectString(output.arn),
@@ -164,8 +164,8 @@ import { LightsailClient } from "./LightsailClient";
164
164
  * price.</p>
165
165
  *
166
166
  * <p>You can manage your Lightsail resources using the Lightsail console, Lightsail API,
167
- * AWS Command Line Interface (AWS CLI), or SDKs. For more information about Lightsail concepts
168
- * and tasks, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-set-up-access-keys-to-use-sdk-api-cli">Amazon Lightsail Developer Guide</a>.</p>
167
+ * Command Line Interface (CLI), or SDKs. For more information about Lightsail
168
+ * concepts and tasks, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-set-up-access-keys-to-use-sdk-api-cli">Amazon Lightsail Developer Guide</a>.</p>
169
169
  *
170
170
  * <p>This API Reference provides detailed information about the actions, data types,
171
171
  * parameters, and errors of the Lightsail service. For more information about the supported
@@ -1005,7 +1005,8 @@ export declare class Lightsail extends LightsailClient {
1005
1005
  * <note>
1006
1006
  * <p>Container logs are retained for a certain amount of time. For more information, see
1007
1007
  * <a href="https://docs.aws.amazon.com/general/latest/gr/lightsail.html">Amazon Lightsail
1008
- * endpoints and quotas</a> in the <i>AWS General Reference</i>.</p>
1008
+ * endpoints and quotas</a> in the <i>Amazon Web Services General
1009
+ * Reference</i>.</p>
1009
1010
  * </note>
1010
1011
  */
1011
1012
  getContainerLog(args: GetContainerLogCommandInput, options?: __HttpHandlerOptions): Promise<GetContainerLogCommandOutput>;
@@ -1023,7 +1024,8 @@ export declare class Lightsail extends LightsailClient {
1023
1024
  * <note>
1024
1025
  * <p>A set number of deployments are kept before the oldest one is replaced with the newest
1025
1026
  * one. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/lightsail.html">Amazon Lightsail
1026
- * endpoints and quotas</a> in the <i>AWS General Reference</i>.</p>
1027
+ * endpoints and quotas</a> in the <i>Amazon Web Services General
1028
+ * Reference</i>.</p>
1027
1029
  * </note>
1028
1030
  */
1029
1031
  getContainerServiceDeployments(args: GetContainerServiceDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<GetContainerServiceDeploymentsCommandOutput>;
@@ -1621,8 +1623,8 @@ export declare class Lightsail extends LightsailClient {
1621
1623
  * <p>Updates the bundle, or storage plan, of an existing Amazon Lightsail bucket.</p>
1622
1624
  *
1623
1625
  * <p>A bucket bundle specifies the monthly cost, storage space, and data transfer quota for a
1624
- * bucket. You can update a bucket's bundle only one time within a monthly AWS billing cycle. To
1625
- * determine if you can update a bucket's bundle, use the <a href="https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetBuckets.html">GetBuckets</a> action. The
1626
+ * bucket. You can update a bucket's bundle only one time within a monthly Amazon Web Services
1627
+ * billing cycle. To determine if you can update a bucket's bundle, use the <a href="https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetBuckets.html">GetBuckets</a> action. The
1626
1628
  * <code>ableToUpdateBundle</code> parameter in the response will indicate whether you can
1627
1629
  * currently update a bucket's bundle.</p>
1628
1630
  *
@@ -1658,8 +1660,7 @@ export declare class Lightsail extends LightsailClient {
1658
1660
  * your distribution.</p>
1659
1661
  * <p>Update your distribution's bundle if your distribution is going over its monthly network
1660
1662
  * transfer quota and is incurring an overage fee.</p>
1661
- * <p>You can update your distribution's bundle only one time within your monthly AWS billing
1662
- * cycle. To determine if you can update your distribution's bundle, use the
1663
+ * <p>You can update your distribution's bundle only one time within your monthly Amazon Web Services billing cycle. To determine if you can update your distribution's bundle, use the
1663
1664
  * <code>GetDistributions</code> action. The <code>ableToUpdateBundle</code> parameter in the
1664
1665
  * result will indicate whether you can currently update your distribution's bundle.</p>
1665
1666
  */
@@ -286,8 +286,8 @@ export interface LightsailClientResolvedConfig extends LightsailClientResolvedCo
286
286
  * price.</p>
287
287
  *
288
288
  * <p>You can manage your Lightsail resources using the Lightsail console, Lightsail API,
289
- * AWS Command Line Interface (AWS CLI), or SDKs. For more information about Lightsail concepts
290
- * and tasks, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-set-up-access-keys-to-use-sdk-api-cli">Amazon Lightsail Developer Guide</a>.</p>
289
+ * Command Line Interface (CLI), or SDKs. For more information about Lightsail
290
+ * concepts and tasks, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-set-up-access-keys-to-use-sdk-api-cli">Amazon Lightsail Developer Guide</a>.</p>
291
291
  *
292
292
  * <p>This API Reference provides detailed information about the actions, data types,
293
293
  * parameters, and errors of the Lightsail service. For more information about the supported
@@ -17,7 +17,8 @@ export interface GetContainerLogCommandOutput extends GetContainerLogResult, __M
17
17
  * <note>
18
18
  * <p>Container logs are retained for a certain amount of time. For more information, see
19
19
  * <a href="https://docs.aws.amazon.com/general/latest/gr/lightsail.html">Amazon Lightsail
20
- * endpoints and quotas</a> in the <i>AWS General Reference</i>.</p>
20
+ * endpoints and quotas</a> in the <i>Amazon Web Services General
21
+ * Reference</i>.</p>
21
22
  * </note>
22
23
  * @example
23
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -19,7 +19,8 @@ export interface GetContainerServiceDeploymentsCommandOutput extends GetContaine
19
19
  * <note>
20
20
  * <p>A set number of deployments are kept before the oldest one is replaced with the newest
21
21
  * one. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/lightsail.html">Amazon Lightsail
22
- * endpoints and quotas</a> in the <i>AWS General Reference</i>.</p>
22
+ * endpoints and quotas</a> in the <i>Amazon Web Services General
23
+ * Reference</i>.</p>
23
24
  * </note>
24
25
  * @example
25
26
  * Use a bare-bones client and the command you need to make an API call.
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient";
5
- import { GetDistributionMetricDataRequest, GetDistributionMetricDataResult } from "../models/models_0";
5
+ import { GetDistributionMetricDataRequest, GetDistributionMetricDataResult } from "../models/models_1";
6
6
  export interface GetDistributionMetricDataCommandInput extends GetDistributionMetricDataRequest {
7
7
  }
8
8
  export interface GetDistributionMetricDataCommandOutput extends GetDistributionMetricDataResult, __MetadataBearer {
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient";
5
- import { GetDistributionsRequest, GetDistributionsResult } from "../models/models_0";
5
+ import { GetDistributionsRequest, GetDistributionsResult } from "../models/models_1";
6
6
  export interface GetDistributionsCommandInput extends GetDistributionsRequest {
7
7
  }
8
8
  export interface GetDistributionsCommandOutput extends GetDistributionsResult, __MetadataBearer {
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient";
5
- import { GetDomainRequest, GetDomainResult } from "../models/models_0";
5
+ import { GetDomainRequest, GetDomainResult } from "../models/models_1";
6
6
  export interface GetDomainCommandInput extends GetDomainRequest {
7
7
  }
8
8
  export interface GetDomainCommandOutput extends GetDomainResult, __MetadataBearer {
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient";
5
- import { GetDomainsRequest, GetDomainsResult } from "../models/models_0";
5
+ import { GetDomainsRequest, GetDomainsResult } from "../models/models_1";
6
6
  export interface GetDomainsCommandInput extends GetDomainsRequest {
7
7
  }
8
8
  export interface GetDomainsCommandOutput extends GetDomainsResult, __MetadataBearer {
@@ -11,8 +11,8 @@ export interface UpdateBucketBundleCommandOutput extends UpdateBucketBundleResul
11
11
  * <p>Updates the bundle, or storage plan, of an existing Amazon Lightsail bucket.</p>
12
12
  *
13
13
  * <p>A bucket bundle specifies the monthly cost, storage space, and data transfer quota for a
14
- * bucket. You can update a bucket's bundle only one time within a monthly AWS billing cycle. To
15
- * determine if you can update a bucket's bundle, use the <a href="https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetBuckets.html">GetBuckets</a> action. The
14
+ * bucket. You can update a bucket's bundle only one time within a monthly Amazon Web Services
15
+ * billing cycle. To determine if you can update a bucket's bundle, use the <a href="https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetBuckets.html">GetBuckets</a> action. The
16
16
  * <code>ableToUpdateBundle</code> parameter in the response will indicate whether you can
17
17
  * currently update a bucket's bundle.</p>
18
18
  *
@@ -14,8 +14,7 @@ export interface UpdateDistributionBundleCommandOutput extends UpdateDistributio
14
14
  * your distribution.</p>
15
15
  * <p>Update your distribution's bundle if your distribution is going over its monthly network
16
16
  * transfer quota and is incurring an overage fee.</p>
17
- * <p>You can update your distribution's bundle only one time within your monthly AWS billing
18
- * cycle. To determine if you can update your distribution's bundle, use the
17
+ * <p>You can update your distribution's bundle only one time within your monthly Amazon Web Services billing cycle. To determine if you can update your distribution's bundle, use the
19
18
  * <code>GetDistributions</code> action. The <code>ableToUpdateBundle</code> parameter in the
20
19
  * result will indicate whether you can currently update your distribution's bundle.</p>
21
20
  * @example