cdk-docker-image-deployment 0.0.110 → 0.0.112
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +17 -1
- package/node_modules/aws-sdk/README.md +2 -2
- package/node_modules/aws-sdk/apis/compute-optimizer-2019-11-01.min.json +311 -42
- package/node_modules/aws-sdk/apis/compute-optimizer-2019-11-01.paginators.json +30 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +73 -6
- package/node_modules/aws-sdk/apis/iotdeviceadvisor-2020-09-18.min.json +17 -3
- package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.min.json +0 -17
- package/node_modules/aws-sdk/apis/license-manager-linux-subscriptions-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/license-manager-linux-subscriptions-2018-05-10.min.json +203 -0
- package/node_modules/aws-sdk/apis/license-manager-linux-subscriptions-2018-05-10.paginators.json +16 -0
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +212 -169
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +14 -5
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +52 -33
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/computeoptimizer.d.ts +350 -4
- package/node_modules/aws-sdk/clients/connect.d.ts +70 -5
- package/node_modules/aws-sdk/clients/iotdeviceadvisor.d.ts +28 -24
- package/node_modules/aws-sdk/clients/kinesisvideowebrtcstorage.d.ts +0 -19
- package/node_modules/aws-sdk/clients/licensemanagerlinuxsubscriptions.d.ts +269 -0
- package/node_modules/aws-sdk/clients/licensemanagerlinuxsubscriptions.js +18 -0
- package/node_modules/aws-sdk/clients/macie2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/rds.d.ts +86 -8
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +17 -1
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +8 -8
- package/node_modules/aws-sdk/clients/ssm.d.ts +3 -3
- package/node_modules/aws-sdk/clients/support.d.ts +35 -35
- package/node_modules/aws-sdk/clients/transfer.d.ts +16 -7
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +49 -12
- package/node_modules/aws-sdk/dist/aws-sdk.js +292 -178
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +76 -76
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -130,7 +130,7 @@ declare namespace IotDeviceAdvisor {
|
|
|
130
130
|
/**
|
|
131
131
|
* Creates a Device Advisor test suite with suite definition configuration.
|
|
132
132
|
*/
|
|
133
|
-
suiteDefinitionConfiguration
|
|
133
|
+
suiteDefinitionConfiguration: SuiteDefinitionConfiguration;
|
|
134
134
|
/**
|
|
135
135
|
* The tags to be attached to the suite definition.
|
|
136
136
|
*/
|
|
@@ -138,19 +138,19 @@ declare namespace IotDeviceAdvisor {
|
|
|
138
138
|
}
|
|
139
139
|
export interface CreateSuiteDefinitionResponse {
|
|
140
140
|
/**
|
|
141
|
-
*
|
|
141
|
+
* The UUID of the test suite created.
|
|
142
142
|
*/
|
|
143
143
|
suiteDefinitionId?: UUID;
|
|
144
144
|
/**
|
|
145
|
-
*
|
|
145
|
+
* The Amazon Resource Name (ARN) of the test suite.
|
|
146
146
|
*/
|
|
147
147
|
suiteDefinitionArn?: AmazonResourceName;
|
|
148
148
|
/**
|
|
149
|
-
*
|
|
149
|
+
* The suite definition name of the test suite. This is a required parameter.
|
|
150
150
|
*/
|
|
151
151
|
suiteDefinitionName?: SuiteDefinitionName;
|
|
152
152
|
/**
|
|
153
|
-
*
|
|
153
|
+
* The timestamp of when the test suite was created.
|
|
154
154
|
*/
|
|
155
155
|
createdAt?: Timestamp;
|
|
156
156
|
}
|
|
@@ -376,7 +376,7 @@ declare namespace IotDeviceAdvisor {
|
|
|
376
376
|
}
|
|
377
377
|
export interface ListTagsForResourceRequest {
|
|
378
378
|
/**
|
|
379
|
-
* The ARN of the IoT Device Advisor resource.
|
|
379
|
+
* The resource ARN of the IoT Device Advisor resource. This can be SuiteDefinition ARN or SuiteRun ARN.
|
|
380
380
|
*/
|
|
381
381
|
resourceArn: AmazonResourceName;
|
|
382
382
|
}
|
|
@@ -405,7 +405,7 @@ declare namespace IotDeviceAdvisor {
|
|
|
405
405
|
/**
|
|
406
406
|
* Suite run configuration.
|
|
407
407
|
*/
|
|
408
|
-
suiteRunConfiguration
|
|
408
|
+
suiteRunConfiguration: SuiteRunConfiguration;
|
|
409
409
|
/**
|
|
410
410
|
* The tags to be attached to the suite run.
|
|
411
411
|
*/
|
|
@@ -424,6 +424,10 @@ declare namespace IotDeviceAdvisor {
|
|
|
424
424
|
* Starts a Device Advisor test suite run based on suite create time.
|
|
425
425
|
*/
|
|
426
426
|
createdAt?: Timestamp;
|
|
427
|
+
/**
|
|
428
|
+
* The response of an Device Advisor test endpoint.
|
|
429
|
+
*/
|
|
430
|
+
endpoint?: Endpoint;
|
|
427
431
|
}
|
|
428
432
|
export type Status = "PASS"|"FAIL"|"CANCELED"|"PENDING"|"RUNNING"|"STOPPING"|"STOPPED"|"PASS_WITH_WARNINGS"|"ERROR"|string;
|
|
429
433
|
export interface StopSuiteRunRequest {
|
|
@@ -442,9 +446,9 @@ declare namespace IotDeviceAdvisor {
|
|
|
442
446
|
export type String256 = string;
|
|
443
447
|
export interface SuiteDefinitionConfiguration {
|
|
444
448
|
/**
|
|
445
|
-
* Gets
|
|
449
|
+
* Gets the suite definition name. This is a required parameter.
|
|
446
450
|
*/
|
|
447
|
-
suiteDefinitionName
|
|
451
|
+
suiteDefinitionName: SuiteDefinitionName;
|
|
448
452
|
/**
|
|
449
453
|
* Gets the devices configured.
|
|
450
454
|
*/
|
|
@@ -454,19 +458,19 @@ declare namespace IotDeviceAdvisor {
|
|
|
454
458
|
*/
|
|
455
459
|
intendedForQualification?: IntendedForQualificationBoolean;
|
|
456
460
|
/**
|
|
457
|
-
*
|
|
461
|
+
* Verifies if the test suite is a long duration test.
|
|
458
462
|
*/
|
|
459
463
|
isLongDurationTest?: IsLongDurationTestBoolean;
|
|
460
464
|
/**
|
|
461
|
-
* Gets test suite root group.
|
|
465
|
+
* Gets the test suite root group. This is a required parameter.
|
|
462
466
|
*/
|
|
463
|
-
rootGroup
|
|
467
|
+
rootGroup: RootGroup;
|
|
464
468
|
/**
|
|
465
|
-
* Gets the device permission ARN.
|
|
469
|
+
* Gets the device permission ARN. This is a required parameter.
|
|
466
470
|
*/
|
|
467
|
-
devicePermissionRoleArn
|
|
471
|
+
devicePermissionRoleArn: AmazonResourceName;
|
|
468
472
|
/**
|
|
469
|
-
*
|
|
473
|
+
* Sets the MQTT protocol that is configured in the suite definition.
|
|
470
474
|
*/
|
|
471
475
|
protocol?: Protocol;
|
|
472
476
|
}
|
|
@@ -488,11 +492,11 @@ declare namespace IotDeviceAdvisor {
|
|
|
488
492
|
*/
|
|
489
493
|
intendedForQualification?: IntendedForQualificationBoolean;
|
|
490
494
|
/**
|
|
491
|
-
*
|
|
495
|
+
* Verifies if the test suite is a long duration test.
|
|
492
496
|
*/
|
|
493
497
|
isLongDurationTest?: IsLongDurationTestBoolean;
|
|
494
498
|
/**
|
|
495
|
-
*
|
|
499
|
+
* Gets the MQTT protocol that is configured in the suite definition.
|
|
496
500
|
*/
|
|
497
501
|
protocol?: Protocol;
|
|
498
502
|
/**
|
|
@@ -505,11 +509,11 @@ declare namespace IotDeviceAdvisor {
|
|
|
505
509
|
export type SuiteDefinitionVersion = string;
|
|
506
510
|
export interface SuiteRunConfiguration {
|
|
507
511
|
/**
|
|
508
|
-
*
|
|
512
|
+
* Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN.
|
|
509
513
|
*/
|
|
510
|
-
primaryDevice
|
|
514
|
+
primaryDevice: DeviceUnderTest;
|
|
511
515
|
/**
|
|
512
|
-
*
|
|
516
|
+
* Sets test case list.
|
|
513
517
|
*/
|
|
514
518
|
selectedTestList?: SelectedTestList;
|
|
515
519
|
/**
|
|
@@ -567,7 +571,7 @@ declare namespace IotDeviceAdvisor {
|
|
|
567
571
|
export type TagMap = {[key: string]: String256};
|
|
568
572
|
export interface TagResourceRequest {
|
|
569
573
|
/**
|
|
570
|
-
* The resource ARN of an IoT Device Advisor resource.
|
|
574
|
+
* The resource ARN of an IoT Device Advisor resource. This can be SuiteDefinition ARN or SuiteRun ARN.
|
|
571
575
|
*/
|
|
572
576
|
resourceArn: AmazonResourceName;
|
|
573
577
|
/**
|
|
@@ -658,7 +662,7 @@ declare namespace IotDeviceAdvisor {
|
|
|
658
662
|
export type UUID = string;
|
|
659
663
|
export interface UntagResourceRequest {
|
|
660
664
|
/**
|
|
661
|
-
* The resource ARN of an IoT Device Advisor resource.
|
|
665
|
+
* The resource ARN of an IoT Device Advisor resource. This can be SuiteDefinition ARN or SuiteRun ARN.
|
|
662
666
|
*/
|
|
663
667
|
resourceArn: AmazonResourceName;
|
|
664
668
|
/**
|
|
@@ -676,7 +680,7 @@ declare namespace IotDeviceAdvisor {
|
|
|
676
680
|
/**
|
|
677
681
|
* Updates a Device Advisor test suite with suite definition configuration.
|
|
678
682
|
*/
|
|
679
|
-
suiteDefinitionConfiguration
|
|
683
|
+
suiteDefinitionConfiguration: SuiteDefinitionConfiguration;
|
|
680
684
|
}
|
|
681
685
|
export interface UpdateSuiteDefinitionResponse {
|
|
682
686
|
/**
|
|
@@ -688,7 +692,7 @@ declare namespace IotDeviceAdvisor {
|
|
|
688
692
|
*/
|
|
689
693
|
suiteDefinitionArn?: AmazonResourceName;
|
|
690
694
|
/**
|
|
691
|
-
*
|
|
695
|
+
* Updates the suite definition name. This is a required parameter.
|
|
692
696
|
*/
|
|
693
697
|
suiteDefinitionName?: SuiteDefinitionName;
|
|
694
698
|
/**
|
|
@@ -19,28 +19,9 @@ declare class KinesisVideoWebRTCStorage extends Service {
|
|
|
19
19
|
* Join the ongoing one way-video and/or multi-way audio WebRTC session as a video producing device for an input channel. If there’s no existing session for the channel, a new streaming session needs to be created, and the Amazon Resource Name (ARN) of the signaling channel must be provided. Currently for the SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream, while viewers can only ingest audio. Both a video producing device and viewers can join the session first, and wait for other participants. While participants are having peer to peer conversations through webRTC, the ingested media session will be stored into the Kinesis Video Stream. Multiple viewers are able to playback real-time media. Customers can also use existing Kinesis Video Streams features like HLS or DASH playback, Image generation, and more with ingested WebRTC media. Assume that only one video producing device client can be associated with a session for the channel. If more than one client joins the session of a specific channel as a video producing device, the most recent client request takes precedence.
|
|
20
20
|
*/
|
|
21
21
|
joinStorageSession(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
22
|
-
/**
|
|
23
|
-
* Join the ongoing one way-video and/or multi-way audio WebRTC session as a viewer for an input channel. If there’s no existing session for the channel, create a new streaming session and provide the Amazon Resource Name (ARN) of the signaling channel (channelArn) and client id (clientId). Currently for SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream, while viewers can only ingest audio. Both a video producing device and viewers can join a session first and wait for other participants. While participants are having peer to peer conversations through webRTC, the ingested media session will be stored into the Kinesis Video Stream. Multiple viewers are able to playback real-time media. Customers can also use existing Kinesis Video Streams features like HLS or DASH playback, Image generation, and more with ingested WebRTC media. If there’s an existing session with the same clientId that's found in the join session request, the new request takes precedence.
|
|
24
|
-
*/
|
|
25
|
-
joinStorageSessionAsViewer(params: KinesisVideoWebRTCStorage.Types.JoinStorageSessionAsViewerInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
26
|
-
/**
|
|
27
|
-
* Join the ongoing one way-video and/or multi-way audio WebRTC session as a viewer for an input channel. If there’s no existing session for the channel, create a new streaming session and provide the Amazon Resource Name (ARN) of the signaling channel (channelArn) and client id (clientId). Currently for SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream, while viewers can only ingest audio. Both a video producing device and viewers can join a session first and wait for other participants. While participants are having peer to peer conversations through webRTC, the ingested media session will be stored into the Kinesis Video Stream. Multiple viewers are able to playback real-time media. Customers can also use existing Kinesis Video Streams features like HLS or DASH playback, Image generation, and more with ingested WebRTC media. If there’s an existing session with the same clientId that's found in the join session request, the new request takes precedence.
|
|
28
|
-
*/
|
|
29
|
-
joinStorageSessionAsViewer(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
30
22
|
}
|
|
31
23
|
declare namespace KinesisVideoWebRTCStorage {
|
|
32
24
|
export type ChannelArn = string;
|
|
33
|
-
export type ClientId = string;
|
|
34
|
-
export interface JoinStorageSessionAsViewerInput {
|
|
35
|
-
/**
|
|
36
|
-
* The Amazon Resource Name (ARN) of the signaling channel.
|
|
37
|
-
*/
|
|
38
|
-
channelArn: ChannelArn;
|
|
39
|
-
/**
|
|
40
|
-
* The unique identifier for the sender client.
|
|
41
|
-
*/
|
|
42
|
-
clientId: ClientId;
|
|
43
|
-
}
|
|
44
25
|
export interface JoinStorageSessionInput {
|
|
45
26
|
/**
|
|
46
27
|
* The Amazon Resource Name (ARN) of the signaling channel.
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
import {Request} from '../lib/request';
|
|
2
|
+
import {Response} from '../lib/response';
|
|
3
|
+
import {AWSError} from '../lib/error';
|
|
4
|
+
import {Service} from '../lib/service';
|
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
|
6
|
+
import {ConfigBase as Config} from '../lib/config-base';
|
|
7
|
+
interface Blob {}
|
|
8
|
+
declare class LicenseManagerLinuxSubscriptions extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
|
11
|
+
*/
|
|
12
|
+
constructor(options?: LicenseManagerLinuxSubscriptions.Types.ClientConfiguration)
|
|
13
|
+
config: Config & LicenseManagerLinuxSubscriptions.Types.ClientConfiguration;
|
|
14
|
+
/**
|
|
15
|
+
* Lists the Linux subscriptions service settings.
|
|
16
|
+
*/
|
|
17
|
+
getServiceSettings(params: LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsResponse, AWSError>;
|
|
18
|
+
/**
|
|
19
|
+
* Lists the Linux subscriptions service settings.
|
|
20
|
+
*/
|
|
21
|
+
getServiceSettings(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsResponse, AWSError>;
|
|
22
|
+
/**
|
|
23
|
+
* Lists the running Amazon EC2 instances that were discovered with commercial Linux subscriptions.
|
|
24
|
+
*/
|
|
25
|
+
listLinuxSubscriptionInstances(params: LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionInstancesRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionInstancesResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionInstancesResponse, AWSError>;
|
|
26
|
+
/**
|
|
27
|
+
* Lists the running Amazon EC2 instances that were discovered with commercial Linux subscriptions.
|
|
28
|
+
*/
|
|
29
|
+
listLinuxSubscriptionInstances(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionInstancesResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionInstancesResponse, AWSError>;
|
|
30
|
+
/**
|
|
31
|
+
* Lists the Linux subscriptions that have been discovered. If you have linked your organization, the returned results will include data aggregated across your accounts in Organizations.
|
|
32
|
+
*/
|
|
33
|
+
listLinuxSubscriptions(params: LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionsRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionsResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionsResponse, AWSError>;
|
|
34
|
+
/**
|
|
35
|
+
* Lists the Linux subscriptions that have been discovered. If you have linked your organization, the returned results will include data aggregated across your accounts in Organizations.
|
|
36
|
+
*/
|
|
37
|
+
listLinuxSubscriptions(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionsResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionsResponse, AWSError>;
|
|
38
|
+
/**
|
|
39
|
+
* Updates the service settings for Linux subscriptions.
|
|
40
|
+
*/
|
|
41
|
+
updateServiceSettings(params: LicenseManagerLinuxSubscriptions.Types.UpdateServiceSettingsRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.UpdateServiceSettingsResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.UpdateServiceSettingsResponse, AWSError>;
|
|
42
|
+
/**
|
|
43
|
+
* Updates the service settings for Linux subscriptions.
|
|
44
|
+
*/
|
|
45
|
+
updateServiceSettings(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.UpdateServiceSettingsResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.UpdateServiceSettingsResponse, AWSError>;
|
|
46
|
+
}
|
|
47
|
+
declare namespace LicenseManagerLinuxSubscriptions {
|
|
48
|
+
export type Boolean = boolean;
|
|
49
|
+
export type BoxInteger = number;
|
|
50
|
+
export type BoxLong = number;
|
|
51
|
+
export interface Filter {
|
|
52
|
+
/**
|
|
53
|
+
* The type of name to filter by.
|
|
54
|
+
*/
|
|
55
|
+
Name?: String;
|
|
56
|
+
/**
|
|
57
|
+
* An operator for filtering results.
|
|
58
|
+
*/
|
|
59
|
+
Operator?: Operator;
|
|
60
|
+
/**
|
|
61
|
+
* One or more values for the name to filter by.
|
|
62
|
+
*/
|
|
63
|
+
Values?: StringList;
|
|
64
|
+
}
|
|
65
|
+
export type FilterList = Filter[];
|
|
66
|
+
export interface GetServiceSettingsRequest {
|
|
67
|
+
}
|
|
68
|
+
export interface GetServiceSettingsResponse {
|
|
69
|
+
/**
|
|
70
|
+
* The Region in which License Manager displays the aggregated data for Linux subscriptions.
|
|
71
|
+
*/
|
|
72
|
+
HomeRegions?: StringList;
|
|
73
|
+
/**
|
|
74
|
+
* Lists if discovery has been enabled for Linux subscriptions.
|
|
75
|
+
*/
|
|
76
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
77
|
+
/**
|
|
78
|
+
* Lists the settings defined for Linux subscriptions discovery. The settings include if Organizations integration has been enabled, and which Regions data will be aggregated from.
|
|
79
|
+
*/
|
|
80
|
+
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
|
|
81
|
+
/**
|
|
82
|
+
* Indicates the status of Linux subscriptions settings being applied.
|
|
83
|
+
*/
|
|
84
|
+
Status?: Status;
|
|
85
|
+
/**
|
|
86
|
+
* A message which details the Linux subscriptions service settings current status.
|
|
87
|
+
*/
|
|
88
|
+
StatusMessage?: StringMap;
|
|
89
|
+
}
|
|
90
|
+
export interface Instance {
|
|
91
|
+
/**
|
|
92
|
+
* The account ID which owns the instance.
|
|
93
|
+
*/
|
|
94
|
+
AccountID?: String;
|
|
95
|
+
/**
|
|
96
|
+
* The AMI ID used to launch the instance.
|
|
97
|
+
*/
|
|
98
|
+
AmiId?: String;
|
|
99
|
+
/**
|
|
100
|
+
* The instance ID of the resource.
|
|
101
|
+
*/
|
|
102
|
+
InstanceID?: String;
|
|
103
|
+
/**
|
|
104
|
+
* The instance type of the resource.
|
|
105
|
+
*/
|
|
106
|
+
InstanceType?: String;
|
|
107
|
+
/**
|
|
108
|
+
* The time in which the last discovery updated the instance details.
|
|
109
|
+
*/
|
|
110
|
+
LastUpdatedTime?: String;
|
|
111
|
+
/**
|
|
112
|
+
* The product code for the instance. For more information, see Usage operation values in the License Manager User Guide .
|
|
113
|
+
*/
|
|
114
|
+
ProductCode?: ProductCodeList;
|
|
115
|
+
/**
|
|
116
|
+
* The Region the instance is running in.
|
|
117
|
+
*/
|
|
118
|
+
Region?: String;
|
|
119
|
+
/**
|
|
120
|
+
* The status of the instance.
|
|
121
|
+
*/
|
|
122
|
+
Status?: String;
|
|
123
|
+
/**
|
|
124
|
+
* The name of the subscription being used by the instance.
|
|
125
|
+
*/
|
|
126
|
+
SubscriptionName?: String;
|
|
127
|
+
/**
|
|
128
|
+
* The usage operation of the instance. For more information, see For more information, see Usage operation values in the License Manager User Guide.
|
|
129
|
+
*/
|
|
130
|
+
UsageOperation?: String;
|
|
131
|
+
}
|
|
132
|
+
export type InstanceList = Instance[];
|
|
133
|
+
export type LinuxSubscriptionsDiscovery = "Enabled"|"Disabled"|string;
|
|
134
|
+
export interface LinuxSubscriptionsDiscoverySettings {
|
|
135
|
+
/**
|
|
136
|
+
* Details if you have enabled resource discovery across your accounts in Organizations.
|
|
137
|
+
*/
|
|
138
|
+
OrganizationIntegration: OrganizationIntegration;
|
|
139
|
+
/**
|
|
140
|
+
* The Regions in which to discover data for Linux subscriptions.
|
|
141
|
+
*/
|
|
142
|
+
SourceRegions: StringList;
|
|
143
|
+
}
|
|
144
|
+
export interface ListLinuxSubscriptionInstancesRequest {
|
|
145
|
+
/**
|
|
146
|
+
* An array of structures that you can use to filter the results to those that match one or more sets of key-value pairs that you specify. For example, you can filter by the name of AmiID with an optional operator to see subscriptions that match, partially match, or don't match a certain Amazon Machine Image (AMI) ID. The valid names for this filter are: AmiID InstanceID AccountID Status Region UsageOperation ProductCode InstanceType The valid Operators for this filter are: contains equals Notequal
|
|
147
|
+
*/
|
|
148
|
+
Filters?: FilterList;
|
|
149
|
+
/**
|
|
150
|
+
* Maximum number of results to return in a single call.
|
|
151
|
+
*/
|
|
152
|
+
MaxResults?: BoxInteger;
|
|
153
|
+
/**
|
|
154
|
+
* Token for the next set of results.
|
|
155
|
+
*/
|
|
156
|
+
NextToken?: ListLinuxSubscriptionInstancesRequestNextTokenString;
|
|
157
|
+
}
|
|
158
|
+
export type ListLinuxSubscriptionInstancesRequestNextTokenString = string;
|
|
159
|
+
export interface ListLinuxSubscriptionInstancesResponse {
|
|
160
|
+
/**
|
|
161
|
+
* An array that contains instance objects.
|
|
162
|
+
*/
|
|
163
|
+
Instances?: InstanceList;
|
|
164
|
+
/**
|
|
165
|
+
* Token for the next set of results.
|
|
166
|
+
*/
|
|
167
|
+
NextToken?: String;
|
|
168
|
+
}
|
|
169
|
+
export interface ListLinuxSubscriptionsRequest {
|
|
170
|
+
/**
|
|
171
|
+
* An array of structures that you can use to filter the results to those that match one or more sets of key-value pairs that you specify. For example, you can filter by the name of Subscription with an optional operator to see subscriptions that match, partially match, or don't match a certain subscription's name. The valid names for this filter are: Subscription The valid Operators for this filter are: contains equals Notequal
|
|
172
|
+
*/
|
|
173
|
+
Filters?: FilterList;
|
|
174
|
+
/**
|
|
175
|
+
* Maximum number of results to return in a single call.
|
|
176
|
+
*/
|
|
177
|
+
MaxResults?: BoxInteger;
|
|
178
|
+
/**
|
|
179
|
+
* Token for the next set of results.
|
|
180
|
+
*/
|
|
181
|
+
NextToken?: ListLinuxSubscriptionsRequestNextTokenString;
|
|
182
|
+
}
|
|
183
|
+
export type ListLinuxSubscriptionsRequestNextTokenString = string;
|
|
184
|
+
export interface ListLinuxSubscriptionsResponse {
|
|
185
|
+
/**
|
|
186
|
+
* Token for the next set of results.
|
|
187
|
+
*/
|
|
188
|
+
NextToken?: String;
|
|
189
|
+
/**
|
|
190
|
+
* An array that contains subscription objects.
|
|
191
|
+
*/
|
|
192
|
+
Subscriptions?: SubscriptionList;
|
|
193
|
+
}
|
|
194
|
+
export type Operator = "Equal"|"NotEqual"|"Contains"|string;
|
|
195
|
+
export type OrganizationIntegration = "Enabled"|"Disabled"|string;
|
|
196
|
+
export type ProductCodeList = String[];
|
|
197
|
+
export type Status = "InProgress"|"Completed"|"Successful"|"Failed"|string;
|
|
198
|
+
export type String = string;
|
|
199
|
+
export type StringList = StringListMemberString[];
|
|
200
|
+
export type StringListMemberString = string;
|
|
201
|
+
export type StringMap = {[key: string]: String};
|
|
202
|
+
export interface Subscription {
|
|
203
|
+
/**
|
|
204
|
+
* The total amount of running instances using this subscription.
|
|
205
|
+
*/
|
|
206
|
+
InstanceCount?: BoxLong;
|
|
207
|
+
/**
|
|
208
|
+
* The name of the subscription.
|
|
209
|
+
*/
|
|
210
|
+
Name?: String;
|
|
211
|
+
/**
|
|
212
|
+
* The type of subscription. The type can be subscription-included with Amazon EC2, Bring Your Own Subscription model (BYOS), or from the Amazon Web Services Marketplace. Certain subscriptions may use licensing from the Amazon Web Services Marketplace as well as OS licensing from Amazon EC2 or BYOS.
|
|
213
|
+
*/
|
|
214
|
+
Type?: String;
|
|
215
|
+
}
|
|
216
|
+
export type SubscriptionList = Subscription[];
|
|
217
|
+
export interface UpdateServiceSettingsRequest {
|
|
218
|
+
/**
|
|
219
|
+
* Describes if updates are allowed to the service settings for Linux subscriptions. If you allow updates, you can aggregate Linux subscription data in more than one home Region.
|
|
220
|
+
*/
|
|
221
|
+
AllowUpdate?: Boolean;
|
|
222
|
+
/**
|
|
223
|
+
* Describes if the discovery of Linux subscriptions is enabled.
|
|
224
|
+
*/
|
|
225
|
+
LinuxSubscriptionsDiscovery: LinuxSubscriptionsDiscovery;
|
|
226
|
+
/**
|
|
227
|
+
* The settings defined for Linux subscriptions discovery. The settings include if Organizations integration has been enabled, and which Regions data will be aggregated from.
|
|
228
|
+
*/
|
|
229
|
+
LinuxSubscriptionsDiscoverySettings: LinuxSubscriptionsDiscoverySettings;
|
|
230
|
+
}
|
|
231
|
+
export interface UpdateServiceSettingsResponse {
|
|
232
|
+
/**
|
|
233
|
+
* The Region in which License Manager displays the aggregated data for Linux subscriptions.
|
|
234
|
+
*/
|
|
235
|
+
HomeRegions?: StringList;
|
|
236
|
+
/**
|
|
237
|
+
* Lists if discovery has been enabled for Linux subscriptions.
|
|
238
|
+
*/
|
|
239
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
240
|
+
/**
|
|
241
|
+
* The settings defined for Linux subscriptions discovery. The settings include if Organizations integration has been enabled, and which Regions data will be aggregated from.
|
|
242
|
+
*/
|
|
243
|
+
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
|
|
244
|
+
/**
|
|
245
|
+
* Indicates the status of Linux subscriptions settings being applied.
|
|
246
|
+
*/
|
|
247
|
+
Status?: Status;
|
|
248
|
+
/**
|
|
249
|
+
* A message which details the Linux subscriptions service settings current status.
|
|
250
|
+
*/
|
|
251
|
+
StatusMessage?: StringMap;
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
255
|
+
*/
|
|
256
|
+
export type apiVersion = "2018-05-10"|"latest"|string;
|
|
257
|
+
export interface ClientApiVersions {
|
|
258
|
+
/**
|
|
259
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
260
|
+
*/
|
|
261
|
+
apiVersion?: apiVersion;
|
|
262
|
+
}
|
|
263
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
|
264
|
+
/**
|
|
265
|
+
* Contains interfaces for use with the LicenseManagerLinuxSubscriptions client.
|
|
266
|
+
*/
|
|
267
|
+
export import Types = LicenseManagerLinuxSubscriptions;
|
|
268
|
+
}
|
|
269
|
+
export = LicenseManagerLinuxSubscriptions;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require('../lib/node_loader');
|
|
2
|
+
var AWS = require('../lib/core');
|
|
3
|
+
var Service = AWS.Service;
|
|
4
|
+
var apiLoader = AWS.apiLoader;
|
|
5
|
+
|
|
6
|
+
apiLoader.services['licensemanagerlinuxsubscriptions'] = {};
|
|
7
|
+
AWS.LicenseManagerLinuxSubscriptions = Service.defineService('licensemanagerlinuxsubscriptions', ['2018-05-10']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['licensemanagerlinuxsubscriptions'], '2018-05-10', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/license-manager-linux-subscriptions-2018-05-10.min.json');
|
|
11
|
+
model.paginators = require('../apis/license-manager-linux-subscriptions-2018-05-10.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.LicenseManagerLinuxSubscriptions;
|
|
@@ -4008,7 +4008,7 @@ declare namespace Macie2 {
|
|
|
4008
4008
|
*/
|
|
4009
4009
|
numberOfRuns?: __double;
|
|
4010
4010
|
}
|
|
4011
|
-
export type StorageClass = "STANDARD"|"REDUCED_REDUNDANCY"|"STANDARD_IA"|"INTELLIGENT_TIERING"|"DEEP_ARCHIVE"|"ONEZONE_IA"|"GLACIER"|string;
|
|
4011
|
+
export type StorageClass = "STANDARD"|"REDUCED_REDUNDANCY"|"STANDARD_IA"|"INTELLIGENT_TIERING"|"DEEP_ARCHIVE"|"ONEZONE_IA"|"GLACIER"|"GLACIER_IR"|"OUTPOSTS"|string;
|
|
4012
4012
|
export interface SuppressDataIdentifier {
|
|
4013
4013
|
/**
|
|
4014
4014
|
* The unique identifier for the custom data identifier or managed data identifier that detected the type of sensitive data to exclude or include in the score.
|