@aws-sdk/client-lightsail 3.95.0 → 3.105.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.
- package/CHANGELOG.md +30 -0
- package/dist-cjs/LightsailClient.js +2 -0
- package/dist-cjs/commands/GetExportSnapshotRecordsCommand.js +3 -3
- package/dist-cjs/commands/GetInstanceCommand.js +1 -2
- package/dist-cjs/models/models_0.js +29 -29
- package/dist-cjs/models/models_1.js +28 -4
- package/dist-cjs/protocols/Aws_json1_1.js +37 -0
- package/dist-cjs/runtimeConfig.js +2 -0
- package/dist-es/LightsailClient.js +2 -0
- package/dist-es/commands/GetExportSnapshotRecordsCommand.js +1 -1
- package/dist-es/commands/GetInstanceCommand.js +1 -2
- package/dist-es/models/models_0.js +16 -16
- package/dist-es/models/models_1.js +16 -0
- package/dist-es/protocols/Aws_json1_1.js +34 -3
- package/dist-es/runtimeConfig.js +2 -0
- package/dist-types/commands/GetExportSnapshotRecordsCommand.d.ts +1 -1
- package/dist-types/commands/GetInstanceCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +115 -99
- package/dist-types/models/models_1.d.ts +80 -7
- package/dist-types/ts3.4/commands/GetExportSnapshotRecordsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetInstanceCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_1.d.ts +44 -7
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **client-lightsail:** Amazon Lightsail now supports the ability to configure a Lightsail Container Service to pull images from Amazon ECR private repositories in your account. ([a8ba37c](https://github.com/aws/aws-sdk-js-v3/commit/a8ba37cc3ea0deb0aec4a696a504eb7876fbabf4))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @aws-sdk/client-lightsail
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.95.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.94.0...v3.95.0) (2022-05-19)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-lightsail
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class LightsailClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.GetExportSnapshotRecordsCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const
|
|
6
|
+
const models_1_1 = require("../models/models_1");
|
|
7
7
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
8
|
class GetExportSnapshotRecordsCommand extends smithy_client_1.Command {
|
|
9
9
|
constructor(input) {
|
|
@@ -20,8 +20,8 @@ class GetExportSnapshotRecordsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_1_1.GetExportSnapshotRecordsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_1_1.GetExportSnapshotRecordsResult.filterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.GetInstanceCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const models_0_1 = require("../models/models_0");
|
|
7
6
|
const models_1_1 = require("../models/models_1");
|
|
8
7
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
8
|
class GetInstanceCommand extends smithy_client_1.Command {
|
|
@@ -21,7 +20,7 @@ class GetInstanceCommand extends smithy_client_1.Command {
|
|
|
21
20
|
logger,
|
|
22
21
|
clientName,
|
|
23
22
|
commandName,
|
|
24
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_1_1.GetInstanceRequest.filterSensitiveLog,
|
|
25
24
|
outputFilterSensitiveLog: models_1_1.GetInstanceResult.filterSensitiveLog,
|
|
26
25
|
};
|
|
27
26
|
const { requestHandler } = configuration;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AttachStaticIpResult = exports.AttachStaticIpRequest = exports.AttachLoadBalancerTlsCertificateResult = exports.AttachLoadBalancerTlsCertificateRequest = exports.AttachInstancesToLoadBalancerResult = exports.AttachInstancesToLoadBalancerRequest = exports.DiskMap = exports.AttachedDisk = exports.AttachDiskResult = exports.AttachDiskRequest = exports.AttachCertificateToDistributionResult = exports.AttachCertificateToDistributionRequest = exports.UnauthenticatedException = exports.ServiceException = exports.OperationFailureException = exports.NotFoundException = exports.InvalidInputException = exports.AllocateStaticIpResult = exports.Operation = exports.OperationStatus = exports.OperationType = exports.AllocateStaticIpRequest = exports.Alarm = exports.MetricUnit = exports.TreatMissingData = exports.MetricStatistic = exports.AlarmState = exports.MonitoredResourceInfo = exports.ResourceType = exports.MetricName = exports.ResourceLocation = exports.RegionName = exports.ContactProtocol = exports.ComparisonOperator = exports.AddOnRequest = exports.AutoSnapshotAddOnRequest = exports.AddOnType = exports.AddOn = exports.AccountSetupInProgressException = exports.AccountLevelBpaSync = exports.AccountLevelBpaSyncStatus = exports.BPAStatusMessage = exports.AccessRules = exports.AccessType = exports.ResourceReceivingAccess = exports.AccessKey = exports.StatusType = exports.AccessKeyLastUsed = exports.AccessDirection = exports.AccessDeniedException = void 0;
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
4
|
+
exports.ContainerServiceECRImagePullerRole = exports.ContainerServicePowerName = exports.ContainerServiceDeployment = exports.ContainerServiceDeploymentState = exports.ContainerServiceEndpoint = exports.ContainerServiceHealthCheckConfig = exports.ContainerImage = exports.Container = exports.ContainerServiceProtocol = exports.ContactMethodVerificationProtocol = exports.ContactMethod = exports.ContactMethodStatus = exports.CloudFormationStackRecord = exports.RecordState = exports.CloudFormationStackRecordSourceInfo = exports.CloudFormationStackRecordSourceType = exports.DestinationInfo = exports.CloseInstancePublicPortsResult = exports.CloseInstancePublicPortsRequest = exports.PortInfo = exports.NetworkProtocol = exports.CertificateSummary = exports.Certificate = exports.CertificateStatus = exports.RenewalSummary = exports.RenewalStatus = exports.DomainValidationRecord = exports.ResourceRecord = exports.CacheSettings = exports.QueryStringObject = exports.HeaderObject = exports.HeaderEnum = exports.CookieObject = exports.ForwardValues = exports.CacheBehaviorPerPath = exports.CacheBehavior = exports.Bundle = exports.BucketMetricName = exports.BucketBundle = exports.Bucket = exports.Tag = exports.BucketState = exports.BucketAccessLogConfig = exports.Blueprint = exports.BlueprintType = exports.InstancePlatform = exports.BehaviorEnum = exports.AvailabilityZone = exports.AutoSnapshotDetails = exports.AutoSnapshotStatus = void 0;
|
|
5
|
+
exports.DomainEntry = exports.CreateDomainResult = exports.CreateDomainRequest = exports.CreateDistributionResult = exports.LightsailDistribution = exports.Origin = exports.CreateDistributionRequest = exports.InputOrigin = exports.OriginProtocolPolicyEnum = exports.IpAddressType = exports.CreateDiskSnapshotResult = exports.CreateDiskSnapshotRequest = exports.CreateDiskFromSnapshotResult = exports.CreateDiskFromSnapshotRequest = exports.CreateDiskResult = exports.CreateDiskRequest = exports.CreateContainerServiceRegistryLoginResult = exports.CreateContainerServiceRegistryLoginRequest = exports.CreateContainerServiceDeploymentResult = exports.CreateContainerServiceDeploymentRequest = exports.CreateContainerServiceResult = exports.CreateContainerServiceRequest = exports.PrivateRegistryAccessRequest = exports.CreateContactMethodResult = exports.CreateContactMethodRequest = exports.CreateCloudFormationStackResult = exports.CreateCloudFormationStackRequest = exports.InstanceEntry = exports.PortInfoSourceType = exports.CreateCertificateResult = exports.CreateCertificateRequest = exports.CreateBucketAccessKeyResult = exports.CreateBucketAccessKeyRequest = exports.CreateBucketResult = exports.CreateBucketRequest = exports.CopySnapshotResult = exports.CopySnapshotRequest = exports.ContainerServicesListResult = exports.ContainerServiceRegistryLogin = exports.ContainerServicePower = exports.ContainerServiceMetricName = exports.ContainerServiceLogEvent = exports.ContainerServiceECRImagePullerRoleRequest = exports.ContainerServiceDeploymentRequest = exports.EndpointRequest = exports.ContainerService = exports.ContainerServiceStateDetail = exports.ContainerServiceStateDetailCode = exports.ContainerServiceState = exports.PrivateRegistryAccess = void 0;
|
|
6
|
+
exports.DeleteInstanceSnapshotRequest = exports.DeleteInstanceResult = exports.DeleteInstanceRequest = exports.DeleteDomainEntryResult = exports.DeleteDomainEntryRequest = exports.DeleteDomainResult = exports.DeleteDomainRequest = exports.DeleteDistributionResult = exports.DeleteDistributionRequest = exports.DeleteDiskSnapshotResult = exports.DeleteDiskSnapshotRequest = exports.DeleteDiskResult = exports.DeleteDiskRequest = exports.DeleteContainerServiceResult = exports.DeleteContainerServiceRequest = exports.DeleteContainerImageResult = exports.DeleteContainerImageRequest = exports.DeleteContactMethodResult = exports.DeleteContactMethodRequest = exports.DeleteCertificateResult = exports.DeleteCertificateRequest = exports.DeleteBucketAccessKeyResult = exports.DeleteBucketAccessKeyRequest = exports.DeleteBucketResult = exports.DeleteBucketRequest = exports.DeleteAutoSnapshotResult = exports.DeleteAutoSnapshotRequest = exports.DeleteAlarmResult = exports.DeleteAlarmRequest = exports.CreateRelationalDatabaseSnapshotResult = exports.CreateRelationalDatabaseSnapshotRequest = exports.CreateRelationalDatabaseFromSnapshotResult = exports.CreateRelationalDatabaseFromSnapshotRequest = exports.CreateRelationalDatabaseResult = exports.CreateRelationalDatabaseRequest = exports.CreateLoadBalancerTlsCertificateResult = exports.CreateLoadBalancerTlsCertificateRequest = exports.CreateLoadBalancerResult = exports.CreateLoadBalancerRequest = exports.CreateKeyPairResult = exports.KeyPair = exports.CreateKeyPairRequest = exports.CreateInstanceSnapshotResult = exports.CreateInstanceSnapshotRequest = exports.CreateInstancesFromSnapshotResult = exports.CreateInstancesFromSnapshotRequest = exports.CreateInstancesResult = exports.CreateInstancesRequest = exports.CreateDomainEntryResult = exports.CreateDomainEntryRequest = void 0;
|
|
7
|
+
exports.GetBlueprintsResult = exports.GetBlueprintsRequest = exports.GetAutoSnapshotsResult = exports.GetAutoSnapshotsRequest = exports.GetAlarmsResult = exports.GetAlarmsRequest = exports.GetActiveNamesResult = exports.GetActiveNamesRequest = exports.ExportSnapshotRecord = exports.ExportSnapshotRecordSourceInfo = exports.ExportSnapshotRecordSourceType = exports.InstanceSnapshotInfo = exports.ExportSnapshotResult = exports.ExportSnapshotRequest = exports.EnableAddOnResult = exports.EnableAddOnRequest = exports.DownloadDefaultKeyPairResult = exports.DownloadDefaultKeyPairRequest = exports.Domain = exports.DistributionMetricName = exports.DistributionBundle = exports.DiskSnapshotInfo = exports.DiskSnapshot = exports.DiskSnapshotState = exports.DiskInfo = exports.Disk = exports.DiskState = exports.DisableAddOnResult = exports.DisableAddOnRequest = exports.DetachStaticIpResult = exports.DetachStaticIpRequest = exports.DetachInstancesFromLoadBalancerResult = exports.DetachInstancesFromLoadBalancerRequest = exports.DetachDiskResult = exports.DetachDiskRequest = exports.DetachCertificateFromDistributionResult = exports.DetachCertificateFromDistributionRequest = exports.DeleteRelationalDatabaseSnapshotResult = exports.DeleteRelationalDatabaseSnapshotRequest = exports.DeleteRelationalDatabaseResult = exports.DeleteRelationalDatabaseRequest = exports.DeleteLoadBalancerTlsCertificateResult = exports.DeleteLoadBalancerTlsCertificateRequest = exports.DeleteLoadBalancerResult = exports.DeleteLoadBalancerRequest = exports.DeleteKnownHostKeysResult = exports.DeleteKnownHostKeysRequest = exports.DeleteKeyPairResult = exports.DeleteKeyPairRequest = exports.DeleteInstanceSnapshotResult = void 0;
|
|
8
|
+
exports.GetDomainsResult = exports.GetDomainsRequest = exports.GetDomainResult = exports.GetDomainRequest = exports.GetDistributionsResult = exports.GetDistributionsRequest = exports.GetDistributionMetricDataResult = exports.GetDistributionMetricDataRequest = exports.GetDistributionLatestCacheResetResult = exports.GetDistributionLatestCacheResetRequest = exports.GetDistributionBundlesResult = exports.GetDistributionBundlesRequest = exports.GetDiskSnapshotsResult = exports.GetDiskSnapshotsRequest = exports.GetDiskSnapshotResult = exports.GetDiskSnapshotRequest = exports.GetDisksResult = exports.GetDisksRequest = exports.GetDiskResult = exports.GetDiskRequest = exports.GetContainerServicesRequest = exports.GetContainerServicePowersResult = exports.GetContainerServicePowersRequest = exports.GetContainerServiceMetricDataResult = exports.GetContainerServiceMetricDataRequest = exports.GetContainerServiceDeploymentsResult = exports.GetContainerServiceDeploymentsRequest = exports.GetContainerLogResult = exports.GetContainerLogRequest = exports.GetContainerImagesResult = exports.GetContainerImagesRequest = exports.GetContainerAPIMetadataResult = exports.GetContainerAPIMetadataRequest = exports.GetContactMethodsResult = exports.GetContactMethodsRequest = exports.GetCloudFormationStackRecordsResult = exports.GetCloudFormationStackRecordsRequest = exports.GetCertificatesResult = exports.GetCertificatesRequest = exports.GetBundlesResult = exports.GetBundlesRequest = exports.GetBucketsResult = exports.GetBucketsRequest = exports.GetBucketMetricDataResult = exports.MetricDatapoint = exports.GetBucketMetricDataRequest = exports.GetBucketBundlesResult = exports.GetBucketBundlesRequest = exports.GetBucketAccessKeysResult = exports.GetBucketAccessKeysRequest = void 0;
|
|
9
9
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
10
10
|
const LightsailServiceException_1 = require("./LightsailServiceException");
|
|
11
11
|
class AccessDeniedException extends LightsailServiceException_1.LightsailServiceException {
|
|
@@ -842,6 +842,18 @@ var ContainerServicePowerName;
|
|
|
842
842
|
ContainerServicePowerName["small"] = "small";
|
|
843
843
|
ContainerServicePowerName["xlarge"] = "xlarge";
|
|
844
844
|
})(ContainerServicePowerName = exports.ContainerServicePowerName || (exports.ContainerServicePowerName = {}));
|
|
845
|
+
var ContainerServiceECRImagePullerRole;
|
|
846
|
+
(function (ContainerServiceECRImagePullerRole) {
|
|
847
|
+
ContainerServiceECRImagePullerRole.filterSensitiveLog = (obj) => ({
|
|
848
|
+
...obj,
|
|
849
|
+
});
|
|
850
|
+
})(ContainerServiceECRImagePullerRole = exports.ContainerServiceECRImagePullerRole || (exports.ContainerServiceECRImagePullerRole = {}));
|
|
851
|
+
var PrivateRegistryAccess;
|
|
852
|
+
(function (PrivateRegistryAccess) {
|
|
853
|
+
PrivateRegistryAccess.filterSensitiveLog = (obj) => ({
|
|
854
|
+
...obj,
|
|
855
|
+
});
|
|
856
|
+
})(PrivateRegistryAccess = exports.PrivateRegistryAccess || (exports.PrivateRegistryAccess = {}));
|
|
845
857
|
var ContainerServiceState;
|
|
846
858
|
(function (ContainerServiceState) {
|
|
847
859
|
ContainerServiceState["DELETING"] = "DELETING";
|
|
@@ -888,6 +900,12 @@ var ContainerServiceDeploymentRequest;
|
|
|
888
900
|
...obj,
|
|
889
901
|
});
|
|
890
902
|
})(ContainerServiceDeploymentRequest = exports.ContainerServiceDeploymentRequest || (exports.ContainerServiceDeploymentRequest = {}));
|
|
903
|
+
var ContainerServiceECRImagePullerRoleRequest;
|
|
904
|
+
(function (ContainerServiceECRImagePullerRoleRequest) {
|
|
905
|
+
ContainerServiceECRImagePullerRoleRequest.filterSensitiveLog = (obj) => ({
|
|
906
|
+
...obj,
|
|
907
|
+
});
|
|
908
|
+
})(ContainerServiceECRImagePullerRoleRequest = exports.ContainerServiceECRImagePullerRoleRequest || (exports.ContainerServiceECRImagePullerRoleRequest = {}));
|
|
891
909
|
var ContainerServiceLogEvent;
|
|
892
910
|
(function (ContainerServiceLogEvent) {
|
|
893
911
|
ContainerServiceLogEvent.filterSensitiveLog = (obj) => ({
|
|
@@ -1003,6 +1021,12 @@ var CreateContactMethodResult;
|
|
|
1003
1021
|
...obj,
|
|
1004
1022
|
});
|
|
1005
1023
|
})(CreateContactMethodResult = exports.CreateContactMethodResult || (exports.CreateContactMethodResult = {}));
|
|
1024
|
+
var PrivateRegistryAccessRequest;
|
|
1025
|
+
(function (PrivateRegistryAccessRequest) {
|
|
1026
|
+
PrivateRegistryAccessRequest.filterSensitiveLog = (obj) => ({
|
|
1027
|
+
...obj,
|
|
1028
|
+
});
|
|
1029
|
+
})(PrivateRegistryAccessRequest = exports.PrivateRegistryAccessRequest || (exports.PrivateRegistryAccessRequest = {}));
|
|
1006
1030
|
var CreateContainerServiceRequest;
|
|
1007
1031
|
(function (CreateContainerServiceRequest) {
|
|
1008
1032
|
CreateContainerServiceRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -2040,27 +2064,3 @@ var GetDomainsResult;
|
|
|
2040
2064
|
...obj,
|
|
2041
2065
|
});
|
|
2042
2066
|
})(GetDomainsResult = exports.GetDomainsResult || (exports.GetDomainsResult = {}));
|
|
2043
|
-
var GetExportSnapshotRecordsRequest;
|
|
2044
|
-
(function (GetExportSnapshotRecordsRequest) {
|
|
2045
|
-
GetExportSnapshotRecordsRequest.filterSensitiveLog = (obj) => ({
|
|
2046
|
-
...obj,
|
|
2047
|
-
});
|
|
2048
|
-
})(GetExportSnapshotRecordsRequest = exports.GetExportSnapshotRecordsRequest || (exports.GetExportSnapshotRecordsRequest = {}));
|
|
2049
|
-
var GetExportSnapshotRecordsResult;
|
|
2050
|
-
(function (GetExportSnapshotRecordsResult) {
|
|
2051
|
-
GetExportSnapshotRecordsResult.filterSensitiveLog = (obj) => ({
|
|
2052
|
-
...obj,
|
|
2053
|
-
});
|
|
2054
|
-
})(GetExportSnapshotRecordsResult = exports.GetExportSnapshotRecordsResult || (exports.GetExportSnapshotRecordsResult = {}));
|
|
2055
|
-
var GetInstanceRequest;
|
|
2056
|
-
(function (GetInstanceRequest) {
|
|
2057
|
-
GetInstanceRequest.filterSensitiveLog = (obj) => ({
|
|
2058
|
-
...obj,
|
|
2059
|
-
});
|
|
2060
|
-
})(GetInstanceRequest = exports.GetInstanceRequest || (exports.GetInstanceRequest = {}));
|
|
2061
|
-
var InstanceHardware;
|
|
2062
|
-
(function (InstanceHardware) {
|
|
2063
|
-
InstanceHardware.filterSensitiveLog = (obj) => ({
|
|
2064
|
-
...obj,
|
|
2065
|
-
});
|
|
2066
|
-
})(InstanceHardware = exports.InstanceHardware || (exports.InstanceHardware = {}));
|
|
@@ -1,10 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.UpdateRelationalDatabaseParametersResult = exports.UpdateRelationalDatabaseParametersRequest = exports.UpdateRelationalDatabaseResult = exports.UpdateRelationalDatabaseRequest = exports.UpdateLoadBalancerAttributeResult = exports.UpdateLoadBalancerAttributeRequest = exports.UpdateDomainEntryResult = exports.UpdateDomainEntryRequest = exports.UpdateDistributionBundleResult = exports.UpdateDistributionBundleRequest = exports.UpdateDistributionResult = exports.UpdateDistributionRequest = exports.UpdateContainerServiceResult = exports.UpdateContainerServiceRequest = exports.UpdateBucketBundleResult = exports.UpdateBucketBundleRequest = exports.UpdateBucketResult = exports.UpdateBucketRequest = exports.UntagResourceResult = exports.UntagResourceRequest = exports.UnpeerVpcResult = exports.UnpeerVpcRequest = exports.TestAlarmResult = exports.TestAlarmRequest = exports.TagResourceResult = exports.TagResourceRequest = exports.StopRelationalDatabaseResult = exports.StopRelationalDatabaseRequest = void 0;
|
|
3
|
+
exports.GetLoadBalancerMetricDataRequest = exports.LoadBalancerMetricName = exports.GetLoadBalancerResult = exports.LoadBalancer = exports.LoadBalancerTlsCertificateSummary = exports.LoadBalancerState = exports.LoadBalancerProtocol = exports.InstanceHealthSummary = exports.InstanceHealthReason = exports.InstanceHealthState = exports.LoadBalancerAttributeName = exports.GetLoadBalancerRequest = exports.GetKeyPairsResult = exports.GetKeyPairsRequest = exports.GetKeyPairResult = exports.GetKeyPairRequest = exports.GetInstanceStateResult = exports.GetInstanceStateRequest = exports.GetInstanceSnapshotsResult = exports.GetInstanceSnapshotsRequest = exports.GetInstanceSnapshotResult = exports.InstanceSnapshot = exports.InstanceSnapshotState = exports.GetInstanceSnapshotRequest = exports.GetInstancesResult = exports.GetInstancesRequest = exports.GetInstancePortStatesResult = exports.InstancePortState = exports.PortState = exports.GetInstancePortStatesRequest = exports.GetInstanceMetricDataResult = exports.GetInstanceMetricDataRequest = exports.InstanceMetricName = exports.GetInstanceAccessDetailsResult = exports.InstanceAccessDetails = exports.PasswordData = exports.HostKeyAttributes = exports.GetInstanceAccessDetailsRequest = exports.InstanceAccessProtocol = exports.GetInstanceResult = exports.Instance = exports.InstanceState = exports.InstanceNetworking = exports.InstancePortInfo = exports.PortAccessType = exports.MonthlyTransfer = exports.InstanceHardware = exports.GetInstanceRequest = exports.GetExportSnapshotRecordsResult = exports.GetExportSnapshotRecordsRequest = void 0;
|
|
4
|
+
exports.GetRelationalDatabaseMasterUserPasswordRequest = exports.RelationalDatabasePasswordVersion = exports.GetRelationalDatabaseLogStreamsResult = exports.GetRelationalDatabaseLogStreamsRequest = exports.GetRelationalDatabaseLogEventsResult = exports.LogEvent = exports.GetRelationalDatabaseLogEventsRequest = exports.GetRelationalDatabaseEventsResult = exports.RelationalDatabaseEvent = exports.GetRelationalDatabaseEventsRequest = exports.GetRelationalDatabaseBundlesResult = exports.RelationalDatabaseBundle = exports.GetRelationalDatabaseBundlesRequest = exports.GetRelationalDatabaseBlueprintsResult = exports.RelationalDatabaseBlueprint = exports.RelationalDatabaseEngine = exports.GetRelationalDatabaseBlueprintsRequest = exports.GetRelationalDatabaseResult = exports.RelationalDatabase = exports.PendingModifiedRelationalDatabaseValues = exports.PendingMaintenanceAction = exports.RelationalDatabaseEndpoint = exports.RelationalDatabaseHardware = exports.GetRelationalDatabaseRequest = exports.GetRegionsResult = exports.Region = exports.GetRegionsRequest = exports.GetOperationsForResourceResult = exports.GetOperationsForResourceRequest = exports.GetOperationsResult = exports.GetOperationsRequest = exports.GetOperationResult = exports.GetOperationRequest = exports.GetLoadBalancerTlsPoliciesResult = exports.LoadBalancerTlsPolicy = exports.GetLoadBalancerTlsPoliciesRequest = exports.GetLoadBalancerTlsCertificatesResult = exports.LoadBalancerTlsCertificate = exports.LoadBalancerTlsCertificateStatus = exports.LoadBalancerTlsCertificateRevocationReason = exports.LoadBalancerTlsCertificateRenewalSummary = exports.LoadBalancerTlsCertificateRenewalStatus = exports.LoadBalancerTlsCertificateDomainValidationOption = exports.LoadBalancerTlsCertificateFailureReason = exports.LoadBalancerTlsCertificateDomainValidationRecord = exports.LoadBalancerTlsCertificateDomainStatus = exports.GetLoadBalancerTlsCertificatesRequest = exports.GetLoadBalancersResult = exports.GetLoadBalancersRequest = exports.GetLoadBalancerMetricDataResult = void 0;
|
|
5
|
+
exports.StartInstanceResult = exports.StartInstanceRequest = exports.SetResourceAccessForBucketResult = exports.SetResourceAccessForBucketRequest = exports.ResourceBucketAccess = exports.SetIpAddressTypeResult = exports.SetIpAddressTypeRequest = exports.SendContactMethodVerificationResult = exports.SendContactMethodVerificationRequest = exports.ResetDistributionCacheResult = exports.ResetDistributionCacheRequest = exports.ReleaseStaticIpResult = exports.ReleaseStaticIpRequest = exports.RegisterContainerImageResult = exports.RegisterContainerImageRequest = exports.RebootRelationalDatabaseResult = exports.RebootRelationalDatabaseRequest = exports.RebootInstanceResult = exports.RebootInstanceRequest = exports.PutInstancePublicPortsResult = exports.PutInstancePublicPortsRequest = exports.PutAlarmResult = exports.PutAlarmRequest = exports.PeerVpcResult = exports.PeerVpcRequest = exports.OpenInstancePublicPortsResult = exports.OpenInstancePublicPortsRequest = exports.IsVpcPeeredResult = exports.IsVpcPeeredRequest = exports.ImportKeyPairResult = exports.ImportKeyPairRequest = exports.GetStaticIpsResult = exports.GetStaticIpsRequest = exports.GetStaticIpResult = exports.StaticIp = exports.GetStaticIpRequest = exports.GetRelationalDatabaseSnapshotsResult = exports.GetRelationalDatabaseSnapshotsRequest = exports.GetRelationalDatabaseSnapshotResult = exports.RelationalDatabaseSnapshot = exports.GetRelationalDatabaseSnapshotRequest = exports.GetRelationalDatabasesResult = exports.GetRelationalDatabasesRequest = exports.GetRelationalDatabaseParametersResult = exports.RelationalDatabaseParameter = exports.GetRelationalDatabaseParametersRequest = exports.GetRelationalDatabaseMetricDataResult = exports.GetRelationalDatabaseMetricDataRequest = exports.RelationalDatabaseMetricName = exports.GetRelationalDatabaseMasterUserPasswordResult = void 0;
|
|
6
|
+
exports.UpdateRelationalDatabaseParametersResult = exports.UpdateRelationalDatabaseParametersRequest = exports.UpdateRelationalDatabaseResult = exports.UpdateRelationalDatabaseRequest = exports.UpdateLoadBalancerAttributeResult = exports.UpdateLoadBalancerAttributeRequest = exports.UpdateDomainEntryResult = exports.UpdateDomainEntryRequest = exports.UpdateDistributionBundleResult = exports.UpdateDistributionBundleRequest = exports.UpdateDistributionResult = exports.UpdateDistributionRequest = exports.UpdateContainerServiceResult = exports.UpdateContainerServiceRequest = exports.UpdateBucketBundleResult = exports.UpdateBucketBundleRequest = exports.UpdateBucketResult = exports.UpdateBucketRequest = exports.UntagResourceResult = exports.UntagResourceRequest = exports.UnpeerVpcResult = exports.UnpeerVpcRequest = exports.TestAlarmResult = exports.TestAlarmRequest = exports.TagResourceResult = exports.TagResourceRequest = exports.StopRelationalDatabaseResult = exports.StopRelationalDatabaseRequest = exports.StopInstanceResult = exports.StopInstanceRequest = exports.StartRelationalDatabaseResult = exports.StartRelationalDatabaseRequest = void 0;
|
|
7
7
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
|
+
var GetExportSnapshotRecordsRequest;
|
|
9
|
+
(function (GetExportSnapshotRecordsRequest) {
|
|
10
|
+
GetExportSnapshotRecordsRequest.filterSensitiveLog = (obj) => ({
|
|
11
|
+
...obj,
|
|
12
|
+
});
|
|
13
|
+
})(GetExportSnapshotRecordsRequest = exports.GetExportSnapshotRecordsRequest || (exports.GetExportSnapshotRecordsRequest = {}));
|
|
14
|
+
var GetExportSnapshotRecordsResult;
|
|
15
|
+
(function (GetExportSnapshotRecordsResult) {
|
|
16
|
+
GetExportSnapshotRecordsResult.filterSensitiveLog = (obj) => ({
|
|
17
|
+
...obj,
|
|
18
|
+
});
|
|
19
|
+
})(GetExportSnapshotRecordsResult = exports.GetExportSnapshotRecordsResult || (exports.GetExportSnapshotRecordsResult = {}));
|
|
20
|
+
var GetInstanceRequest;
|
|
21
|
+
(function (GetInstanceRequest) {
|
|
22
|
+
GetInstanceRequest.filterSensitiveLog = (obj) => ({
|
|
23
|
+
...obj,
|
|
24
|
+
});
|
|
25
|
+
})(GetInstanceRequest = exports.GetInstanceRequest || (exports.GetInstanceRequest = {}));
|
|
26
|
+
var InstanceHardware;
|
|
27
|
+
(function (InstanceHardware) {
|
|
28
|
+
InstanceHardware.filterSensitiveLog = (obj) => ({
|
|
29
|
+
...obj,
|
|
30
|
+
});
|
|
31
|
+
})(InstanceHardware = exports.InstanceHardware || (exports.InstanceHardware = {}));
|
|
8
32
|
var MonthlyTransfer;
|
|
9
33
|
(function (MonthlyTransfer) {
|
|
10
34
|
MonthlyTransfer.filterSensitiveLog = (obj) => ({
|
|
@@ -9872,6 +9872,11 @@ const serializeAws_json1_1ContainerServiceDeploymentRequest = (input, context) =
|
|
|
9872
9872
|
}),
|
|
9873
9873
|
};
|
|
9874
9874
|
};
|
|
9875
|
+
const serializeAws_json1_1ContainerServiceECRImagePullerRoleRequest = (input, context) => {
|
|
9876
|
+
return {
|
|
9877
|
+
...(input.isActive !== undefined && input.isActive !== null && { isActive: input.isActive }),
|
|
9878
|
+
};
|
|
9879
|
+
};
|
|
9875
9880
|
const serializeAws_json1_1ContainerServiceHealthCheckConfig = (input, context) => {
|
|
9876
9881
|
return {
|
|
9877
9882
|
...(input.healthyThreshold !== undefined &&
|
|
@@ -9992,6 +9997,10 @@ const serializeAws_json1_1CreateContainerServiceRequest = (input, context) => {
|
|
|
9992
9997
|
deployment: serializeAws_json1_1ContainerServiceDeploymentRequest(input.deployment, context),
|
|
9993
9998
|
}),
|
|
9994
9999
|
...(input.power !== undefined && input.power !== null && { power: input.power }),
|
|
10000
|
+
...(input.privateRegistryAccess !== undefined &&
|
|
10001
|
+
input.privateRegistryAccess !== null && {
|
|
10002
|
+
privateRegistryAccess: serializeAws_json1_1PrivateRegistryAccessRequest(input.privateRegistryAccess, context),
|
|
10003
|
+
}),
|
|
9995
10004
|
...(input.publicDomainNames !== undefined &&
|
|
9996
10005
|
input.publicDomainNames !== null && {
|
|
9997
10006
|
publicDomainNames: serializeAws_json1_1ContainerServicePublicDomains(input.publicDomainNames, context),
|
|
@@ -11054,6 +11063,14 @@ const serializeAws_json1_1PortMap = (input, context) => {
|
|
|
11054
11063
|
};
|
|
11055
11064
|
}, {});
|
|
11056
11065
|
};
|
|
11066
|
+
const serializeAws_json1_1PrivateRegistryAccessRequest = (input, context) => {
|
|
11067
|
+
return {
|
|
11068
|
+
...(input.ecrImagePullerRole !== undefined &&
|
|
11069
|
+
input.ecrImagePullerRole !== null && {
|
|
11070
|
+
ecrImagePullerRole: serializeAws_json1_1ContainerServiceECRImagePullerRoleRequest(input.ecrImagePullerRole, context),
|
|
11071
|
+
}),
|
|
11072
|
+
};
|
|
11073
|
+
};
|
|
11057
11074
|
const serializeAws_json1_1PutAlarmRequest = (input, context) => {
|
|
11058
11075
|
return {
|
|
11059
11076
|
...(input.alarmName !== undefined && input.alarmName !== null && { alarmName: input.alarmName }),
|
|
@@ -11301,6 +11318,10 @@ const serializeAws_json1_1UpdateContainerServiceRequest = (input, context) => {
|
|
|
11301
11318
|
return {
|
|
11302
11319
|
...(input.isDisabled !== undefined && input.isDisabled !== null && { isDisabled: input.isDisabled }),
|
|
11303
11320
|
...(input.power !== undefined && input.power !== null && { power: input.power }),
|
|
11321
|
+
...(input.privateRegistryAccess !== undefined &&
|
|
11322
|
+
input.privateRegistryAccess !== null && {
|
|
11323
|
+
privateRegistryAccess: serializeAws_json1_1PrivateRegistryAccessRequest(input.privateRegistryAccess, context),
|
|
11324
|
+
}),
|
|
11304
11325
|
...(input.publicDomainNames !== undefined &&
|
|
11305
11326
|
input.publicDomainNames !== null && {
|
|
11306
11327
|
publicDomainNames: serializeAws_json1_1ContainerServicePublicDomains(input.publicDomainNames, context),
|
|
@@ -12030,6 +12051,9 @@ const deserializeAws_json1_1ContainerService = (output, context) => {
|
|
|
12030
12051
|
powerId: (0, smithy_client_1.expectString)(output.powerId),
|
|
12031
12052
|
principalArn: (0, smithy_client_1.expectString)(output.principalArn),
|
|
12032
12053
|
privateDomainName: (0, smithy_client_1.expectString)(output.privateDomainName),
|
|
12054
|
+
privateRegistryAccess: output.privateRegistryAccess !== undefined && output.privateRegistryAccess !== null
|
|
12055
|
+
? deserializeAws_json1_1PrivateRegistryAccess(output.privateRegistryAccess, context)
|
|
12056
|
+
: undefined,
|
|
12033
12057
|
publicDomainNames: output.publicDomainNames !== undefined && output.publicDomainNames !== null
|
|
12034
12058
|
? deserializeAws_json1_1ContainerServicePublicDomains(output.publicDomainNames, context)
|
|
12035
12059
|
: undefined,
|
|
@@ -12071,6 +12095,12 @@ const deserializeAws_json1_1ContainerServiceDeploymentList = (output, context) =
|
|
|
12071
12095
|
});
|
|
12072
12096
|
return retVal;
|
|
12073
12097
|
};
|
|
12098
|
+
const deserializeAws_json1_1ContainerServiceECRImagePullerRole = (output, context) => {
|
|
12099
|
+
return {
|
|
12100
|
+
isActive: (0, smithy_client_1.expectBoolean)(output.isActive),
|
|
12101
|
+
principalArn: (0, smithy_client_1.expectString)(output.principalArn),
|
|
12102
|
+
};
|
|
12103
|
+
};
|
|
12074
12104
|
const deserializeAws_json1_1ContainerServiceEndpoint = (output, context) => {
|
|
12075
12105
|
return {
|
|
12076
12106
|
containerName: (0, smithy_client_1.expectString)(output.containerName),
|
|
@@ -14141,6 +14171,13 @@ const deserializeAws_json1_1PortMap = (output, context) => {
|
|
|
14141
14171
|
};
|
|
14142
14172
|
}, {});
|
|
14143
14173
|
};
|
|
14174
|
+
const deserializeAws_json1_1PrivateRegistryAccess = (output, context) => {
|
|
14175
|
+
return {
|
|
14176
|
+
ecrImagePullerRole: output.ecrImagePullerRole !== undefined && output.ecrImagePullerRole !== null
|
|
14177
|
+
? deserializeAws_json1_1ContainerServiceECRImagePullerRole(output.ecrImagePullerRole, context)
|
|
14178
|
+
: undefined,
|
|
14179
|
+
};
|
|
14180
|
+
};
|
|
14144
14181
|
const deserializeAws_json1_1PutAlarmResult = (output, context) => {
|
|
14145
14182
|
return {
|
|
14146
14183
|
operations: output.operations !== undefined && output.operations !== null
|
|
@@ -17,8 +17,10 @@ const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
|
|
|
17
17
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
18
18
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
19
19
|
const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
|
|
20
|
+
const smithy_client_2 = require("@aws-sdk/smithy-client");
|
|
20
21
|
const getRuntimeConfig = (config) => {
|
|
21
22
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
23
|
+
(0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
|
|
22
24
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
23
25
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
24
26
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var LightsailClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetExportSnapshotRecordsRequest, GetExportSnapshotRecordsResult } from "../models/
|
|
4
|
+
import { GetExportSnapshotRecordsRequest, GetExportSnapshotRecordsResult } from "../models/models_1";
|
|
5
5
|
import { deserializeAws_json1_1GetExportSnapshotRecordsCommand, serializeAws_json1_1GetExportSnapshotRecordsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetExportSnapshotRecordsCommand = (function (_super) {
|
|
7
7
|
__extends(GetExportSnapshotRecordsCommand, _super);
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetInstanceRequest } from "../models/
|
|
5
|
-
import { GetInstanceResult } from "../models/models_1";
|
|
4
|
+
import { GetInstanceRequest, GetInstanceResult } from "../models/models_1";
|
|
6
5
|
import { deserializeAws_json1_1GetInstanceCommand, serializeAws_json1_1GetInstanceCommand, } from "../protocols/Aws_json1_1";
|
|
7
6
|
var GetInstanceCommand = (function (_super) {
|
|
8
7
|
__extends(GetInstanceCommand, _super);
|
|
@@ -711,6 +711,14 @@ export var ContainerServicePowerName;
|
|
|
711
711
|
ContainerServicePowerName["small"] = "small";
|
|
712
712
|
ContainerServicePowerName["xlarge"] = "xlarge";
|
|
713
713
|
})(ContainerServicePowerName || (ContainerServicePowerName = {}));
|
|
714
|
+
export var ContainerServiceECRImagePullerRole;
|
|
715
|
+
(function (ContainerServiceECRImagePullerRole) {
|
|
716
|
+
ContainerServiceECRImagePullerRole.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
717
|
+
})(ContainerServiceECRImagePullerRole || (ContainerServiceECRImagePullerRole = {}));
|
|
718
|
+
export var PrivateRegistryAccess;
|
|
719
|
+
(function (PrivateRegistryAccess) {
|
|
720
|
+
PrivateRegistryAccess.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
721
|
+
})(PrivateRegistryAccess || (PrivateRegistryAccess = {}));
|
|
714
722
|
export var ContainerServiceState;
|
|
715
723
|
(function (ContainerServiceState) {
|
|
716
724
|
ContainerServiceState["DELETING"] = "DELETING";
|
|
@@ -749,6 +757,10 @@ export var ContainerServiceDeploymentRequest;
|
|
|
749
757
|
(function (ContainerServiceDeploymentRequest) {
|
|
750
758
|
ContainerServiceDeploymentRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
751
759
|
})(ContainerServiceDeploymentRequest || (ContainerServiceDeploymentRequest = {}));
|
|
760
|
+
export var ContainerServiceECRImagePullerRoleRequest;
|
|
761
|
+
(function (ContainerServiceECRImagePullerRoleRequest) {
|
|
762
|
+
ContainerServiceECRImagePullerRoleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
763
|
+
})(ContainerServiceECRImagePullerRoleRequest || (ContainerServiceECRImagePullerRoleRequest = {}));
|
|
752
764
|
export var ContainerServiceLogEvent;
|
|
753
765
|
(function (ContainerServiceLogEvent) {
|
|
754
766
|
ContainerServiceLogEvent.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -829,6 +841,10 @@ export var CreateContactMethodResult;
|
|
|
829
841
|
(function (CreateContactMethodResult) {
|
|
830
842
|
CreateContactMethodResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
831
843
|
})(CreateContactMethodResult || (CreateContactMethodResult = {}));
|
|
844
|
+
export var PrivateRegistryAccessRequest;
|
|
845
|
+
(function (PrivateRegistryAccessRequest) {
|
|
846
|
+
PrivateRegistryAccessRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
847
|
+
})(PrivateRegistryAccessRequest || (PrivateRegistryAccessRequest = {}));
|
|
832
848
|
export var CreateContainerServiceRequest;
|
|
833
849
|
(function (CreateContainerServiceRequest) {
|
|
834
850
|
CreateContainerServiceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1532,19 +1548,3 @@ export var GetDomainsResult;
|
|
|
1532
1548
|
(function (GetDomainsResult) {
|
|
1533
1549
|
GetDomainsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1534
1550
|
})(GetDomainsResult || (GetDomainsResult = {}));
|
|
1535
|
-
export var GetExportSnapshotRecordsRequest;
|
|
1536
|
-
(function (GetExportSnapshotRecordsRequest) {
|
|
1537
|
-
GetExportSnapshotRecordsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1538
|
-
})(GetExportSnapshotRecordsRequest || (GetExportSnapshotRecordsRequest = {}));
|
|
1539
|
-
export var GetExportSnapshotRecordsResult;
|
|
1540
|
-
(function (GetExportSnapshotRecordsResult) {
|
|
1541
|
-
GetExportSnapshotRecordsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1542
|
-
})(GetExportSnapshotRecordsResult || (GetExportSnapshotRecordsResult = {}));
|
|
1543
|
-
export var GetInstanceRequest;
|
|
1544
|
-
(function (GetInstanceRequest) {
|
|
1545
|
-
GetInstanceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1546
|
-
})(GetInstanceRequest || (GetInstanceRequest = {}));
|
|
1547
|
-
export var InstanceHardware;
|
|
1548
|
-
(function (InstanceHardware) {
|
|
1549
|
-
InstanceHardware.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1550
|
-
})(InstanceHardware || (InstanceHardware = {}));
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
export var GetExportSnapshotRecordsRequest;
|
|
4
|
+
(function (GetExportSnapshotRecordsRequest) {
|
|
5
|
+
GetExportSnapshotRecordsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
6
|
+
})(GetExportSnapshotRecordsRequest || (GetExportSnapshotRecordsRequest = {}));
|
|
7
|
+
export var GetExportSnapshotRecordsResult;
|
|
8
|
+
(function (GetExportSnapshotRecordsResult) {
|
|
9
|
+
GetExportSnapshotRecordsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
|
+
})(GetExportSnapshotRecordsResult || (GetExportSnapshotRecordsResult = {}));
|
|
11
|
+
export var GetInstanceRequest;
|
|
12
|
+
(function (GetInstanceRequest) {
|
|
13
|
+
GetInstanceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
14
|
+
})(GetInstanceRequest || (GetInstanceRequest = {}));
|
|
15
|
+
export var InstanceHardware;
|
|
16
|
+
(function (InstanceHardware) {
|
|
17
|
+
InstanceHardware.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
|
+
})(InstanceHardware || (InstanceHardware = {}));
|
|
3
19
|
export var MonthlyTransfer;
|
|
4
20
|
(function (MonthlyTransfer) {
|
|
5
21
|
MonthlyTransfer.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -12956,6 +12956,9 @@ var serializeAws_json1_1ContainerServiceDeploymentRequest = function (input, con
|
|
|
12956
12956
|
publicEndpoint: serializeAws_json1_1EndpointRequest(input.publicEndpoint, context),
|
|
12957
12957
|
}));
|
|
12958
12958
|
};
|
|
12959
|
+
var serializeAws_json1_1ContainerServiceECRImagePullerRoleRequest = function (input, context) {
|
|
12960
|
+
return __assign({}, (input.isActive !== undefined && input.isActive !== null && { isActive: input.isActive }));
|
|
12961
|
+
};
|
|
12959
12962
|
var serializeAws_json1_1ContainerServiceHealthCheckConfig = function (input, context) {
|
|
12960
12963
|
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.healthyThreshold !== undefined &&
|
|
12961
12964
|
input.healthyThreshold !== null && { healthyThreshold: input.healthyThreshold })), (input.intervalSeconds !== undefined &&
|
|
@@ -13031,10 +13034,13 @@ var serializeAws_json1_1CreateContainerServiceRegistryLoginRequest = function (i
|
|
|
13031
13034
|
return {};
|
|
13032
13035
|
};
|
|
13033
13036
|
var serializeAws_json1_1CreateContainerServiceRequest = function (input, context) {
|
|
13034
|
-
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.deployment !== undefined &&
|
|
13037
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.deployment !== undefined &&
|
|
13035
13038
|
input.deployment !== null && {
|
|
13036
13039
|
deployment: serializeAws_json1_1ContainerServiceDeploymentRequest(input.deployment, context),
|
|
13037
|
-
})), (input.power !== undefined && input.power !== null && { power: input.power })), (input.
|
|
13040
|
+
})), (input.power !== undefined && input.power !== null && { power: input.power })), (input.privateRegistryAccess !== undefined &&
|
|
13041
|
+
input.privateRegistryAccess !== null && {
|
|
13042
|
+
privateRegistryAccess: serializeAws_json1_1PrivateRegistryAccessRequest(input.privateRegistryAccess, context),
|
|
13043
|
+
})), (input.publicDomainNames !== undefined &&
|
|
13038
13044
|
input.publicDomainNames !== null && {
|
|
13039
13045
|
publicDomainNames: serializeAws_json1_1ContainerServicePublicDomains(input.publicDomainNames, context),
|
|
13040
13046
|
})), (input.scale !== undefined && input.scale !== null && { scale: input.scale })), (input.serviceName !== undefined && input.serviceName !== null && { serviceName: input.serviceName })), (input.tags !== undefined && input.tags !== null && { tags: serializeAws_json1_1TagList(input.tags, context) }));
|
|
@@ -13685,6 +13691,12 @@ var serializeAws_json1_1PortMap = function (input, context) {
|
|
|
13685
13691
|
return __assign(__assign({}, acc), (_b = {}, _b[key] = value, _b));
|
|
13686
13692
|
}, {});
|
|
13687
13693
|
};
|
|
13694
|
+
var serializeAws_json1_1PrivateRegistryAccessRequest = function (input, context) {
|
|
13695
|
+
return __assign({}, (input.ecrImagePullerRole !== undefined &&
|
|
13696
|
+
input.ecrImagePullerRole !== null && {
|
|
13697
|
+
ecrImagePullerRole: serializeAws_json1_1ContainerServiceECRImagePullerRoleRequest(input.ecrImagePullerRole, context),
|
|
13698
|
+
}));
|
|
13699
|
+
};
|
|
13688
13700
|
var serializeAws_json1_1PutAlarmRequest = function (input, context) {
|
|
13689
13701
|
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.alarmName !== undefined && input.alarmName !== null && { alarmName: input.alarmName })), (input.comparisonOperator !== undefined &&
|
|
13690
13702
|
input.comparisonOperator !== null && { comparisonOperator: input.comparisonOperator })), (input.contactProtocols !== undefined &&
|
|
@@ -13847,7 +13859,10 @@ var serializeAws_json1_1UpdateBucketRequest = function (input, context) {
|
|
|
13847
13859
|
})), (input.versioning !== undefined && input.versioning !== null && { versioning: input.versioning }));
|
|
13848
13860
|
};
|
|
13849
13861
|
var serializeAws_json1_1UpdateContainerServiceRequest = function (input, context) {
|
|
13850
|
-
return __assign(__assign(__assign(__assign(__assign({}, (input.isDisabled !== undefined && input.isDisabled !== null && { isDisabled: input.isDisabled })), (input.power !== undefined && input.power !== null && { power: input.power })), (input.
|
|
13862
|
+
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.isDisabled !== undefined && input.isDisabled !== null && { isDisabled: input.isDisabled })), (input.power !== undefined && input.power !== null && { power: input.power })), (input.privateRegistryAccess !== undefined &&
|
|
13863
|
+
input.privateRegistryAccess !== null && {
|
|
13864
|
+
privateRegistryAccess: serializeAws_json1_1PrivateRegistryAccessRequest(input.privateRegistryAccess, context),
|
|
13865
|
+
})), (input.publicDomainNames !== undefined &&
|
|
13851
13866
|
input.publicDomainNames !== null && {
|
|
13852
13867
|
publicDomainNames: serializeAws_json1_1ContainerServicePublicDomains(input.publicDomainNames, context),
|
|
13853
13868
|
})), (input.scale !== undefined && input.scale !== null && { scale: input.scale })), (input.serviceName !== undefined && input.serviceName !== null && { serviceName: input.serviceName }));
|
|
@@ -14541,6 +14556,9 @@ var deserializeAws_json1_1ContainerService = function (output, context) {
|
|
|
14541
14556
|
powerId: __expectString(output.powerId),
|
|
14542
14557
|
principalArn: __expectString(output.principalArn),
|
|
14543
14558
|
privateDomainName: __expectString(output.privateDomainName),
|
|
14559
|
+
privateRegistryAccess: output.privateRegistryAccess !== undefined && output.privateRegistryAccess !== null
|
|
14560
|
+
? deserializeAws_json1_1PrivateRegistryAccess(output.privateRegistryAccess, context)
|
|
14561
|
+
: undefined,
|
|
14544
14562
|
publicDomainNames: output.publicDomainNames !== undefined && output.publicDomainNames !== null
|
|
14545
14563
|
? deserializeAws_json1_1ContainerServicePublicDomains(output.publicDomainNames, context)
|
|
14546
14564
|
: undefined,
|
|
@@ -14582,6 +14600,12 @@ var deserializeAws_json1_1ContainerServiceDeploymentList = function (output, con
|
|
|
14582
14600
|
});
|
|
14583
14601
|
return retVal;
|
|
14584
14602
|
};
|
|
14603
|
+
var deserializeAws_json1_1ContainerServiceECRImagePullerRole = function (output, context) {
|
|
14604
|
+
return {
|
|
14605
|
+
isActive: __expectBoolean(output.isActive),
|
|
14606
|
+
principalArn: __expectString(output.principalArn),
|
|
14607
|
+
};
|
|
14608
|
+
};
|
|
14585
14609
|
var deserializeAws_json1_1ContainerServiceEndpoint = function (output, context) {
|
|
14586
14610
|
return {
|
|
14587
14611
|
containerName: __expectString(output.containerName),
|
|
@@ -16646,6 +16670,13 @@ var deserializeAws_json1_1PortMap = function (output, context) {
|
|
|
16646
16670
|
return __assign(__assign({}, acc), (_b = {}, _b[key] = __expectString(value), _b));
|
|
16647
16671
|
}, {});
|
|
16648
16672
|
};
|
|
16673
|
+
var deserializeAws_json1_1PrivateRegistryAccess = function (output, context) {
|
|
16674
|
+
return {
|
|
16675
|
+
ecrImagePullerRole: output.ecrImagePullerRole !== undefined && output.ecrImagePullerRole !== null
|
|
16676
|
+
? deserializeAws_json1_1ContainerServiceECRImagePullerRole(output.ecrImagePullerRole, context)
|
|
16677
|
+
: undefined,
|
|
16678
|
+
};
|
|
16679
|
+
};
|
|
16649
16680
|
var deserializeAws_json1_1PutAlarmResult = function (output, context) {
|
|
16650
16681
|
return {
|
|
16651
16682
|
operations: output.operations !== undefined && output.operations !== null
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -14,8 +14,10 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
|
|
|
14
14
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
15
15
|
import { loadConfigsForDefaultMode } from "@aws-sdk/smithy-client";
|
|
16
16
|
import { resolveDefaultsModeConfig } from "@aws-sdk/util-defaults-mode-node";
|
|
17
|
+
import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
|
|
17
18
|
export var getRuntimeConfig = function (config) {
|
|
18
19
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
20
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
19
21
|
var defaultsMode = resolveDefaultsModeConfig(config);
|
|
20
22
|
var defaultConfigProvider = function () { return defaultsMode().then(loadConfigsForDefaultMode); };
|
|
21
23
|
var clientSharedValues = getSharedRuntimeConfig(config);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient";
|
|
4
|
-
import { GetExportSnapshotRecordsRequest, GetExportSnapshotRecordsResult } from "../models/
|
|
4
|
+
import { GetExportSnapshotRecordsRequest, GetExportSnapshotRecordsResult } from "../models/models_1";
|
|
5
5
|
export interface GetExportSnapshotRecordsCommandInput extends GetExportSnapshotRecordsRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface GetExportSnapshotRecordsCommandOutput extends GetExportSnapshotRecordsResult, __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient";
|
|
4
|
-
import { GetInstanceRequest } from "../models/
|
|
5
|
-
import { GetInstanceResult } from "../models/models_1";
|
|
4
|
+
import { GetInstanceRequest, GetInstanceResult } from "../models/models_1";
|
|
6
5
|
export interface GetInstanceCommandInput extends GetInstanceRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface GetInstanceCommandOutput extends GetInstanceResult, __MetadataBearer {
|
|
@@ -2756,15 +2756,11 @@ export interface Container {
|
|
|
2756
2756
|
/**
|
|
2757
2757
|
* <p>The environment variables of the container.</p>
|
|
2758
2758
|
*/
|
|
2759
|
-
environment?:
|
|
2760
|
-
[key: string]: string;
|
|
2761
|
-
};
|
|
2759
|
+
environment?: Record<string, string>;
|
|
2762
2760
|
/**
|
|
2763
2761
|
* <p>The open firewall ports of the container.</p>
|
|
2764
2762
|
*/
|
|
2765
|
-
ports?:
|
|
2766
|
-
[key: string]: ContainerServiceProtocol | string;
|
|
2767
|
-
};
|
|
2763
|
+
ports?: Record<string, ContainerServiceProtocol | string>;
|
|
2768
2764
|
}
|
|
2769
2765
|
export declare namespace Container {
|
|
2770
2766
|
/**
|
|
@@ -2914,9 +2910,7 @@ export interface ContainerServiceDeployment {
|
|
|
2914
2910
|
/**
|
|
2915
2911
|
* <p>An object that describes the configuration for the containers of the deployment.</p>
|
|
2916
2912
|
*/
|
|
2917
|
-
containers?:
|
|
2918
|
-
[key: string]: Container;
|
|
2919
|
-
};
|
|
2913
|
+
containers?: Record<string, Container>;
|
|
2920
2914
|
/**
|
|
2921
2915
|
* <p>An object that describes the endpoint of the deployment.</p>
|
|
2922
2916
|
*/
|
|
@@ -2940,6 +2934,53 @@ export declare enum ContainerServicePowerName {
|
|
|
2940
2934
|
small = "small",
|
|
2941
2935
|
xlarge = "xlarge"
|
|
2942
2936
|
}
|
|
2937
|
+
/**
|
|
2938
|
+
* <p>Describes the activation status of the role that you can use to grant an Amazon Lightsail container service access to Amazon Elastic Container Registry (Amazon ECR)
|
|
2939
|
+
* private repositories.</p>
|
|
2940
|
+
*
|
|
2941
|
+
* <p>When activated, Lightsail creates an Identity and Access Management (IAM) role
|
|
2942
|
+
* for the specified Lightsail container service. You can use the ARN of the role to create a
|
|
2943
|
+
* trust relationship between your Lightsail container service and an Amazon ECR private repository in your Amazon Web Services account. This allows your container
|
|
2944
|
+
* service to pull images from Amazon ECR private repositories. For more information, see
|
|
2945
|
+
* <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-container-service-ecr-private-repo-access">Configuring access to an Amazon ECR private repository for an Amazon Lightsail container service</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
|
|
2946
|
+
*/
|
|
2947
|
+
export interface ContainerServiceECRImagePullerRole {
|
|
2948
|
+
/**
|
|
2949
|
+
* <p>A Boolean value that indicates whether the role is activated.</p>
|
|
2950
|
+
*/
|
|
2951
|
+
isActive?: boolean;
|
|
2952
|
+
/**
|
|
2953
|
+
* <p>The Amazon Resource Name (ARN) of the role, if it is activated.</p>
|
|
2954
|
+
*/
|
|
2955
|
+
principalArn?: string;
|
|
2956
|
+
}
|
|
2957
|
+
export declare namespace ContainerServiceECRImagePullerRole {
|
|
2958
|
+
/**
|
|
2959
|
+
* @internal
|
|
2960
|
+
*/
|
|
2961
|
+
const filterSensitiveLog: (obj: ContainerServiceECRImagePullerRole) => any;
|
|
2962
|
+
}
|
|
2963
|
+
/**
|
|
2964
|
+
* <p>Describes the configuration for an Amazon Lightsail container service to
|
|
2965
|
+
* access private container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private repositories.</p>
|
|
2966
|
+
*
|
|
2967
|
+
* <p>For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-container-service-ecr-private-repo-access">Configuring access to an Amazon ECR private repository for an Amazon Lightsail container service</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
|
|
2968
|
+
*/
|
|
2969
|
+
export interface PrivateRegistryAccess {
|
|
2970
|
+
/**
|
|
2971
|
+
* <p>An object that describes the activation status of the role that you can use to grant a
|
|
2972
|
+
* Lightsail container service access to Amazon ECR private
|
|
2973
|
+
* repositories. If the role is activated, the Amazon Resource Name (ARN) of the role is also
|
|
2974
|
+
* listed.</p>
|
|
2975
|
+
*/
|
|
2976
|
+
ecrImagePullerRole?: ContainerServiceECRImagePullerRole;
|
|
2977
|
+
}
|
|
2978
|
+
export declare namespace PrivateRegistryAccess {
|
|
2979
|
+
/**
|
|
2980
|
+
* @internal
|
|
2981
|
+
*/
|
|
2982
|
+
const filterSensitiveLog: (obj: PrivateRegistryAccess) => any;
|
|
2983
|
+
}
|
|
2943
2984
|
export declare enum ContainerServiceState {
|
|
2944
2985
|
DELETING = "DELETING",
|
|
2945
2986
|
DEPLOYING = "DEPLOYING",
|
|
@@ -3188,9 +3229,7 @@ export interface ContainerService {
|
|
|
3188
3229
|
* information about how to specify public domain names for your Lightsail container
|
|
3189
3230
|
* service.</p>
|
|
3190
3231
|
*/
|
|
3191
|
-
publicDomainNames?:
|
|
3192
|
-
[key: string]: string[];
|
|
3193
|
-
};
|
|
3232
|
+
publicDomainNames?: Record<string, string[]>;
|
|
3194
3233
|
/**
|
|
3195
3234
|
* <p>The publicly accessible URL of the container service.</p>
|
|
3196
3235
|
*
|
|
@@ -3198,6 +3237,14 @@ export interface ContainerService {
|
|
|
3198
3237
|
* a 404 response.</p>
|
|
3199
3238
|
*/
|
|
3200
3239
|
url?: string;
|
|
3240
|
+
/**
|
|
3241
|
+
* <p>An object that describes the configuration for the container service to access private
|
|
3242
|
+
* container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private
|
|
3243
|
+
* repositories.</p>
|
|
3244
|
+
*
|
|
3245
|
+
* <p>For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-container-service-ecr-private-repo-access">Configuring access to an Amazon ECR private repository for an Amazon Lightsail container service</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
|
|
3246
|
+
*/
|
|
3247
|
+
privateRegistryAccess?: PrivateRegistryAccess;
|
|
3201
3248
|
}
|
|
3202
3249
|
export declare namespace ContainerService {
|
|
3203
3250
|
/**
|
|
@@ -3240,9 +3287,7 @@ export interface ContainerServiceDeploymentRequest {
|
|
|
3240
3287
|
/**
|
|
3241
3288
|
* <p>An object that describes the configuration for the containers of the deployment.</p>
|
|
3242
3289
|
*/
|
|
3243
|
-
containers?:
|
|
3244
|
-
[key: string]: Container;
|
|
3245
|
-
};
|
|
3290
|
+
containers?: Record<string, Container>;
|
|
3246
3291
|
/**
|
|
3247
3292
|
* <p>An object that describes the endpoint of the deployment.</p>
|
|
3248
3293
|
*/
|
|
@@ -3254,6 +3299,28 @@ export declare namespace ContainerServiceDeploymentRequest {
|
|
|
3254
3299
|
*/
|
|
3255
3300
|
const filterSensitiveLog: (obj: ContainerServiceDeploymentRequest) => any;
|
|
3256
3301
|
}
|
|
3302
|
+
/**
|
|
3303
|
+
* <p>Describes a request to activate or deactivate the role that you can use to grant an
|
|
3304
|
+
* Amazon Lightsail container service access to Amazon Elastic Container Registry (Amazon ECR) private repositories.</p>
|
|
3305
|
+
*
|
|
3306
|
+
* <p>When activated, Lightsail creates an Identity and Access Management (IAM) role
|
|
3307
|
+
* for the specified Lightsail container service. You can use the ARN of the role to create a
|
|
3308
|
+
* trust relationship between your Lightsail container service and an Amazon ECR private repository in your Amazon Web Services account. This allows your container
|
|
3309
|
+
* service to pull images from Amazon ECR private repositories. For more information, see
|
|
3310
|
+
* <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-container-service-ecr-private-repo-access">Configuring access to an Amazon ECR private repository for an Amazon Lightsail container service</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
|
|
3311
|
+
*/
|
|
3312
|
+
export interface ContainerServiceECRImagePullerRoleRequest {
|
|
3313
|
+
/**
|
|
3314
|
+
* <p>A Boolean value that indicates whether to activate the role.</p>
|
|
3315
|
+
*/
|
|
3316
|
+
isActive?: boolean;
|
|
3317
|
+
}
|
|
3318
|
+
export declare namespace ContainerServiceECRImagePullerRoleRequest {
|
|
3319
|
+
/**
|
|
3320
|
+
* @internal
|
|
3321
|
+
*/
|
|
3322
|
+
const filterSensitiveLog: (obj: ContainerServiceECRImagePullerRoleRequest) => any;
|
|
3323
|
+
}
|
|
3257
3324
|
/**
|
|
3258
3325
|
* <p>Describes the log events of a container of an Amazon Lightsail container service.</p>
|
|
3259
3326
|
*/
|
|
@@ -3761,6 +3828,26 @@ export declare namespace CreateContactMethodResult {
|
|
|
3761
3828
|
*/
|
|
3762
3829
|
const filterSensitiveLog: (obj: CreateContactMethodResult) => any;
|
|
3763
3830
|
}
|
|
3831
|
+
/**
|
|
3832
|
+
* <p>Describes a request to configure an Amazon Lightsail container service to
|
|
3833
|
+
* access private container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private repositories.</p>
|
|
3834
|
+
*
|
|
3835
|
+
* <p>For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-container-service-ecr-private-repo-access">Configuring access to an Amazon ECR private repository for an Amazon Lightsail container service</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
|
|
3836
|
+
*/
|
|
3837
|
+
export interface PrivateRegistryAccessRequest {
|
|
3838
|
+
/**
|
|
3839
|
+
* <p>An object to describe a request to activate or deactivate the role that you can use to
|
|
3840
|
+
* grant an Amazon Lightsail container service access to Amazon Elastic Container Registry
|
|
3841
|
+
* (Amazon ECR) private repositories.</p>
|
|
3842
|
+
*/
|
|
3843
|
+
ecrImagePullerRole?: ContainerServiceECRImagePullerRoleRequest;
|
|
3844
|
+
}
|
|
3845
|
+
export declare namespace PrivateRegistryAccessRequest {
|
|
3846
|
+
/**
|
|
3847
|
+
* @internal
|
|
3848
|
+
*/
|
|
3849
|
+
const filterSensitiveLog: (obj: PrivateRegistryAccessRequest) => any;
|
|
3850
|
+
}
|
|
3764
3851
|
export interface CreateContainerServiceRequest {
|
|
3765
3852
|
/**
|
|
3766
3853
|
* <p>The name for the container service.</p>
|
|
@@ -3842,9 +3929,7 @@ export interface CreateContainerServiceRequest {
|
|
|
3842
3929
|
* <p>You can specify public domain names using a string to array map as shown in the example
|
|
3843
3930
|
* later on this page.</p>
|
|
3844
3931
|
*/
|
|
3845
|
-
publicDomainNames?:
|
|
3846
|
-
[key: string]: string[];
|
|
3847
|
-
};
|
|
3932
|
+
publicDomainNames?: Record<string, string[]>;
|
|
3848
3933
|
/**
|
|
3849
3934
|
* <p>An object that describes a deployment for the container service.</p>
|
|
3850
3935
|
*
|
|
@@ -3855,6 +3940,14 @@ export interface CreateContainerServiceRequest {
|
|
|
3855
3940
|
* configuration.</p>
|
|
3856
3941
|
*/
|
|
3857
3942
|
deployment?: ContainerServiceDeploymentRequest;
|
|
3943
|
+
/**
|
|
3944
|
+
* <p>An object to describe the configuration for the container service to access private
|
|
3945
|
+
* container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private
|
|
3946
|
+
* repositories.</p>
|
|
3947
|
+
*
|
|
3948
|
+
* <p>For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-container-service-ecr-private-repo-access">Configuring access to an Amazon ECR private repository for an Amazon Lightsail container service</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
|
|
3949
|
+
*/
|
|
3950
|
+
privateRegistryAccess?: PrivateRegistryAccessRequest;
|
|
3858
3951
|
}
|
|
3859
3952
|
export declare namespace CreateContainerServiceRequest {
|
|
3860
3953
|
/**
|
|
@@ -3883,9 +3976,7 @@ export interface CreateContainerServiceDeploymentRequest {
|
|
|
3883
3976
|
* <p>An object that describes the settings of the containers that will be launched on the
|
|
3884
3977
|
* container service.</p>
|
|
3885
3978
|
*/
|
|
3886
|
-
containers?:
|
|
3887
|
-
[key: string]: Container;
|
|
3888
|
-
};
|
|
3979
|
+
containers?: Record<string, Container>;
|
|
3889
3980
|
/**
|
|
3890
3981
|
* <p>An object that describes the settings of the public endpoint for the container
|
|
3891
3982
|
* service.</p>
|
|
@@ -4508,9 +4599,7 @@ export interface DomainEntry {
|
|
|
4508
4599
|
* response. It is now deprecated.</p>
|
|
4509
4600
|
* </note>
|
|
4510
4601
|
*/
|
|
4511
|
-
options?:
|
|
4512
|
-
[key: string]: string;
|
|
4513
|
-
};
|
|
4602
|
+
options?: Record<string, string>;
|
|
4514
4603
|
}
|
|
4515
4604
|
export declare namespace DomainEntry {
|
|
4516
4605
|
/**
|
|
@@ -4653,9 +4742,7 @@ export interface CreateInstancesFromSnapshotRequest {
|
|
|
4653
4742
|
/**
|
|
4654
4743
|
* <p>An object containing information about one or more disk mappings.</p>
|
|
4655
4744
|
*/
|
|
4656
|
-
attachedDiskMapping?:
|
|
4657
|
-
[key: string]: DiskMap[];
|
|
4658
|
-
};
|
|
4745
|
+
attachedDiskMapping?: Record<string, DiskMap[]>;
|
|
4659
4746
|
/**
|
|
4660
4747
|
* <p>The Availability Zone where you want to create your instances. Use the following
|
|
4661
4748
|
* formatting: <code>us-east-2a</code> (case sensitive). You can get a list of Availability Zones
|
|
@@ -7283,9 +7370,7 @@ export interface GetContainerAPIMetadataResult {
|
|
|
7283
7370
|
* <p>Metadata about Lightsail containers, such as the current version of the Lightsail
|
|
7284
7371
|
* Control (lightsailctl) plugin.</p>
|
|
7285
7372
|
*/
|
|
7286
|
-
metadata?:
|
|
7287
|
-
[key: string]: string;
|
|
7288
|
-
}[];
|
|
7373
|
+
metadata?: Record<string, string>[];
|
|
7289
7374
|
}
|
|
7290
7375
|
export declare namespace GetContainerAPIMetadataResult {
|
|
7291
7376
|
/**
|
|
@@ -8057,72 +8142,3 @@ export declare namespace GetDomainsResult {
|
|
|
8057
8142
|
*/
|
|
8058
8143
|
const filterSensitiveLog: (obj: GetDomainsResult) => any;
|
|
8059
8144
|
}
|
|
8060
|
-
export interface GetExportSnapshotRecordsRequest {
|
|
8061
|
-
/**
|
|
8062
|
-
* <p>The token to advance to the next page of results from your request.</p>
|
|
8063
|
-
* <p>To get a page token, perform an initial <code>GetExportSnapshotRecords</code> request. If
|
|
8064
|
-
* your results are paginated, the response will return a next page token that you can specify as
|
|
8065
|
-
* the page token in a subsequent request.</p>
|
|
8066
|
-
*/
|
|
8067
|
-
pageToken?: string;
|
|
8068
|
-
}
|
|
8069
|
-
export declare namespace GetExportSnapshotRecordsRequest {
|
|
8070
|
-
/**
|
|
8071
|
-
* @internal
|
|
8072
|
-
*/
|
|
8073
|
-
const filterSensitiveLog: (obj: GetExportSnapshotRecordsRequest) => any;
|
|
8074
|
-
}
|
|
8075
|
-
export interface GetExportSnapshotRecordsResult {
|
|
8076
|
-
/**
|
|
8077
|
-
* <p>A list of objects describing the export snapshot records.</p>
|
|
8078
|
-
*/
|
|
8079
|
-
exportSnapshotRecords?: ExportSnapshotRecord[];
|
|
8080
|
-
/**
|
|
8081
|
-
* <p>The token to advance to the next page of results from your request.</p>
|
|
8082
|
-
* <p>A next page token is not returned if there are no more results to display.</p>
|
|
8083
|
-
* <p>To get the next page of results, perform another <code>GetExportSnapshotRecords</code>
|
|
8084
|
-
* request and specify the next page token using the <code>pageToken</code> parameter.</p>
|
|
8085
|
-
*/
|
|
8086
|
-
nextPageToken?: string;
|
|
8087
|
-
}
|
|
8088
|
-
export declare namespace GetExportSnapshotRecordsResult {
|
|
8089
|
-
/**
|
|
8090
|
-
* @internal
|
|
8091
|
-
*/
|
|
8092
|
-
const filterSensitiveLog: (obj: GetExportSnapshotRecordsResult) => any;
|
|
8093
|
-
}
|
|
8094
|
-
export interface GetInstanceRequest {
|
|
8095
|
-
/**
|
|
8096
|
-
* <p>The name of the instance.</p>
|
|
8097
|
-
*/
|
|
8098
|
-
instanceName: string | undefined;
|
|
8099
|
-
}
|
|
8100
|
-
export declare namespace GetInstanceRequest {
|
|
8101
|
-
/**
|
|
8102
|
-
* @internal
|
|
8103
|
-
*/
|
|
8104
|
-
const filterSensitiveLog: (obj: GetInstanceRequest) => any;
|
|
8105
|
-
}
|
|
8106
|
-
/**
|
|
8107
|
-
* <p>Describes the hardware for the instance.</p>
|
|
8108
|
-
*/
|
|
8109
|
-
export interface InstanceHardware {
|
|
8110
|
-
/**
|
|
8111
|
-
* <p>The number of vCPUs the instance has.</p>
|
|
8112
|
-
*/
|
|
8113
|
-
cpuCount?: number;
|
|
8114
|
-
/**
|
|
8115
|
-
* <p>The disks attached to the instance.</p>
|
|
8116
|
-
*/
|
|
8117
|
-
disks?: Disk[];
|
|
8118
|
-
/**
|
|
8119
|
-
* <p>The amount of RAM in GB on the instance (e.g., <code>1.0</code>).</p>
|
|
8120
|
-
*/
|
|
8121
|
-
ramSizeInGb?: number;
|
|
8122
|
-
}
|
|
8123
|
-
export declare namespace InstanceHardware {
|
|
8124
|
-
/**
|
|
8125
|
-
* @internal
|
|
8126
|
-
*/
|
|
8127
|
-
const filterSensitiveLog: (obj: InstanceHardware) => any;
|
|
8128
|
-
}
|
|
@@ -1,4 +1,73 @@
|
|
|
1
|
-
import { AccessDirection, AccessRules, AddOn, AlarmState, AvailabilityZone, Bucket, BucketAccessLogConfig, CacheBehavior, CacheBehaviorPerPath, CacheSettings, ComparisonOperator, ContactMethodVerificationProtocol, ContactProtocol, ContainerImage, ContainerService, ContainerServicePowerName, Disk, DomainEntry,
|
|
1
|
+
import { AccessDirection, AccessRules, AddOn, AlarmState, AvailabilityZone, Bucket, BucketAccessLogConfig, CacheBehavior, CacheBehaviorPerPath, CacheSettings, ComparisonOperator, ContactMethodVerificationProtocol, ContactProtocol, ContainerImage, ContainerService, ContainerServicePowerName, Disk, DomainEntry, ExportSnapshotRecord, InputOrigin, IpAddressType, KeyPair, MetricDatapoint, MetricName, MetricStatistic, MetricUnit, NetworkProtocol, Operation, PortInfo, PrivateRegistryAccessRequest, RegionName, ResourceLocation, ResourceType, Tag, TreatMissingData } from "./models_0";
|
|
2
|
+
export interface GetExportSnapshotRecordsRequest {
|
|
3
|
+
/**
|
|
4
|
+
* <p>The token to advance to the next page of results from your request.</p>
|
|
5
|
+
* <p>To get a page token, perform an initial <code>GetExportSnapshotRecords</code> request. If
|
|
6
|
+
* your results are paginated, the response will return a next page token that you can specify as
|
|
7
|
+
* the page token in a subsequent request.</p>
|
|
8
|
+
*/
|
|
9
|
+
pageToken?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare namespace GetExportSnapshotRecordsRequest {
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
const filterSensitiveLog: (obj: GetExportSnapshotRecordsRequest) => any;
|
|
16
|
+
}
|
|
17
|
+
export interface GetExportSnapshotRecordsResult {
|
|
18
|
+
/**
|
|
19
|
+
* <p>A list of objects describing the export snapshot records.</p>
|
|
20
|
+
*/
|
|
21
|
+
exportSnapshotRecords?: ExportSnapshotRecord[];
|
|
22
|
+
/**
|
|
23
|
+
* <p>The token to advance to the next page of results from your request.</p>
|
|
24
|
+
* <p>A next page token is not returned if there are no more results to display.</p>
|
|
25
|
+
* <p>To get the next page of results, perform another <code>GetExportSnapshotRecords</code>
|
|
26
|
+
* request and specify the next page token using the <code>pageToken</code> parameter.</p>
|
|
27
|
+
*/
|
|
28
|
+
nextPageToken?: string;
|
|
29
|
+
}
|
|
30
|
+
export declare namespace GetExportSnapshotRecordsResult {
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
const filterSensitiveLog: (obj: GetExportSnapshotRecordsResult) => any;
|
|
35
|
+
}
|
|
36
|
+
export interface GetInstanceRequest {
|
|
37
|
+
/**
|
|
38
|
+
* <p>The name of the instance.</p>
|
|
39
|
+
*/
|
|
40
|
+
instanceName: string | undefined;
|
|
41
|
+
}
|
|
42
|
+
export declare namespace GetInstanceRequest {
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
const filterSensitiveLog: (obj: GetInstanceRequest) => any;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* <p>Describes the hardware for the instance.</p>
|
|
50
|
+
*/
|
|
51
|
+
export interface InstanceHardware {
|
|
52
|
+
/**
|
|
53
|
+
* <p>The number of vCPUs the instance has.</p>
|
|
54
|
+
*/
|
|
55
|
+
cpuCount?: number;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The disks attached to the instance.</p>
|
|
58
|
+
*/
|
|
59
|
+
disks?: Disk[];
|
|
60
|
+
/**
|
|
61
|
+
* <p>The amount of RAM in GB on the instance (e.g., <code>1.0</code>).</p>
|
|
62
|
+
*/
|
|
63
|
+
ramSizeInGb?: number;
|
|
64
|
+
}
|
|
65
|
+
export declare namespace InstanceHardware {
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
69
|
+
const filterSensitiveLog: (obj: InstanceHardware) => any;
|
|
70
|
+
}
|
|
2
71
|
/**
|
|
3
72
|
* <p>Describes the monthly data transfer in and out of your virtual private server (or
|
|
4
73
|
* <i>instance</i>).</p>
|
|
@@ -1471,9 +1540,7 @@ export interface LoadBalancer {
|
|
|
1471
1540
|
* <p>A string to string map of the configuration options for your load balancer. Valid values
|
|
1472
1541
|
* are listed below.</p>
|
|
1473
1542
|
*/
|
|
1474
|
-
configurationOptions?:
|
|
1475
|
-
[key: string]: string;
|
|
1476
|
-
};
|
|
1543
|
+
configurationOptions?: Record<string, string>;
|
|
1477
1544
|
/**
|
|
1478
1545
|
* <p>The IP address type of the load balancer.</p>
|
|
1479
1546
|
*
|
|
@@ -4733,9 +4800,15 @@ export interface UpdateContainerServiceRequest {
|
|
|
4733
4800
|
* <p>You can specify public domain names using a string to array map as shown in the example
|
|
4734
4801
|
* later on this page.</p>
|
|
4735
4802
|
*/
|
|
4736
|
-
publicDomainNames?:
|
|
4737
|
-
|
|
4738
|
-
|
|
4803
|
+
publicDomainNames?: Record<string, string[]>;
|
|
4804
|
+
/**
|
|
4805
|
+
* <p>An object to describe the configuration for the container service to access private
|
|
4806
|
+
* container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private
|
|
4807
|
+
* repositories.</p>
|
|
4808
|
+
*
|
|
4809
|
+
* <p>For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-container-service-ecr-private-repo-access">Configuring access to an Amazon ECR private repository for an Amazon Lightsail container service</a> in the <i>Amazon Lightsail Developer Guide</i>.</p>
|
|
4810
|
+
*/
|
|
4811
|
+
privateRegistryAccess?: PrivateRegistryAccessRequest;
|
|
4739
4812
|
}
|
|
4740
4813
|
export declare namespace UpdateContainerServiceRequest {
|
|
4741
4814
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient";
|
|
4
|
-
import { GetExportSnapshotRecordsRequest, GetExportSnapshotRecordsResult } from "../models/
|
|
4
|
+
import { GetExportSnapshotRecordsRequest, GetExportSnapshotRecordsResult } from "../models/models_1";
|
|
5
5
|
export interface GetExportSnapshotRecordsCommandInput extends GetExportSnapshotRecordsRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface GetExportSnapshotRecordsCommandOutput extends GetExportSnapshotRecordsResult, __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient";
|
|
4
|
-
import { GetInstanceRequest } from "../models/
|
|
5
|
-
import { GetInstanceResult } from "../models/models_1";
|
|
4
|
+
import { GetInstanceRequest, GetInstanceResult } from "../models/models_1";
|
|
6
5
|
export interface GetInstanceCommandInput extends GetInstanceRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface GetInstanceCommandOutput extends GetInstanceResult, __MetadataBearer {
|
|
@@ -1,4 +1,43 @@
|
|
|
1
|
-
import { AccessDirection, AccessRules, AddOn, AlarmState, AvailabilityZone, Bucket, BucketAccessLogConfig, CacheBehavior, CacheBehaviorPerPath, CacheSettings, ComparisonOperator, ContactMethodVerificationProtocol, ContactProtocol, ContainerImage, ContainerService, ContainerServicePowerName, Disk, DomainEntry,
|
|
1
|
+
import { AccessDirection, AccessRules, AddOn, AlarmState, AvailabilityZone, Bucket, BucketAccessLogConfig, CacheBehavior, CacheBehaviorPerPath, CacheSettings, ComparisonOperator, ContactMethodVerificationProtocol, ContactProtocol, ContainerImage, ContainerService, ContainerServicePowerName, Disk, DomainEntry, ExportSnapshotRecord, InputOrigin, IpAddressType, KeyPair, MetricDatapoint, MetricName, MetricStatistic, MetricUnit, NetworkProtocol, Operation, PortInfo, PrivateRegistryAccessRequest, RegionName, ResourceLocation, ResourceType, Tag, TreatMissingData } from "./models_0";
|
|
2
|
+
export interface GetExportSnapshotRecordsRequest {
|
|
3
|
+
|
|
4
|
+
pageToken?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare namespace GetExportSnapshotRecordsRequest {
|
|
7
|
+
|
|
8
|
+
const filterSensitiveLog: (obj: GetExportSnapshotRecordsRequest) => any;
|
|
9
|
+
}
|
|
10
|
+
export interface GetExportSnapshotRecordsResult {
|
|
11
|
+
|
|
12
|
+
exportSnapshotRecords?: ExportSnapshotRecord[];
|
|
13
|
+
|
|
14
|
+
nextPageToken?: string;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace GetExportSnapshotRecordsResult {
|
|
17
|
+
|
|
18
|
+
const filterSensitiveLog: (obj: GetExportSnapshotRecordsResult) => any;
|
|
19
|
+
}
|
|
20
|
+
export interface GetInstanceRequest {
|
|
21
|
+
|
|
22
|
+
instanceName: string | undefined;
|
|
23
|
+
}
|
|
24
|
+
export declare namespace GetInstanceRequest {
|
|
25
|
+
|
|
26
|
+
const filterSensitiveLog: (obj: GetInstanceRequest) => any;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface InstanceHardware {
|
|
30
|
+
|
|
31
|
+
cpuCount?: number;
|
|
32
|
+
|
|
33
|
+
disks?: Disk[];
|
|
34
|
+
|
|
35
|
+
ramSizeInGb?: number;
|
|
36
|
+
}
|
|
37
|
+
export declare namespace InstanceHardware {
|
|
38
|
+
|
|
39
|
+
const filterSensitiveLog: (obj: InstanceHardware) => any;
|
|
40
|
+
}
|
|
2
41
|
|
|
3
42
|
export interface MonthlyTransfer {
|
|
4
43
|
|
|
@@ -532,9 +571,7 @@ export interface LoadBalancer {
|
|
|
532
571
|
|
|
533
572
|
tlsCertificateSummaries?: LoadBalancerTlsCertificateSummary[];
|
|
534
573
|
|
|
535
|
-
configurationOptions?:
|
|
536
|
-
[key: string]: string;
|
|
537
|
-
};
|
|
574
|
+
configurationOptions?: Record<string, string>;
|
|
538
575
|
|
|
539
576
|
ipAddressType?: IpAddressType | string;
|
|
540
577
|
|
|
@@ -1914,9 +1951,9 @@ export interface UpdateContainerServiceRequest {
|
|
|
1914
1951
|
|
|
1915
1952
|
isDisabled?: boolean;
|
|
1916
1953
|
|
|
1917
|
-
publicDomainNames?:
|
|
1918
|
-
|
|
1919
|
-
|
|
1954
|
+
publicDomainNames?: Record<string, string[]>;
|
|
1955
|
+
|
|
1956
|
+
privateRegistryAccess?: PrivateRegistryAccessRequest;
|
|
1920
1957
|
}
|
|
1921
1958
|
export declare namespace UpdateContainerServiceRequest {
|
|
1922
1959
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lightsail",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lightsail Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.105.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,15 +18,16 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|
|
@@ -35,15 +36,15 @@
|
|
|
35
36
|
"@aws-sdk/node-config-provider": "3.80.0",
|
|
36
37
|
"@aws-sdk/node-http-handler": "3.94.0",
|
|
37
38
|
"@aws-sdk/protocol-http": "3.78.0",
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.99.0",
|
|
39
40
|
"@aws-sdk/types": "3.78.0",
|
|
40
41
|
"@aws-sdk/url-parser": "3.78.0",
|
|
41
42
|
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.99.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.99.0",
|
|
47
48
|
"@aws-sdk/util-user-agent-browser": "3.78.0",
|
|
48
49
|
"@aws-sdk/util-user-agent-node": "3.80.0",
|
|
49
50
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|