@aws-sdk/client-license-manager-linux-subscriptions 3.427.0 → 3.429.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.
|
@@ -42,7 +42,7 @@ export interface Filter {
|
|
|
42
42
|
* @public
|
|
43
43
|
* <p>An operator for filtering results.</p>
|
|
44
44
|
*/
|
|
45
|
-
Operator?: Operator
|
|
45
|
+
Operator?: Operator;
|
|
46
46
|
}
|
|
47
47
|
/**
|
|
48
48
|
* @public
|
|
@@ -99,7 +99,7 @@ export interface LinuxSubscriptionsDiscoverySettings {
|
|
|
99
99
|
* @public
|
|
100
100
|
* <p>Details if you have enabled resource discovery across your accounts in Organizations.</p>
|
|
101
101
|
*/
|
|
102
|
-
OrganizationIntegration: OrganizationIntegration |
|
|
102
|
+
OrganizationIntegration: OrganizationIntegration | undefined;
|
|
103
103
|
}
|
|
104
104
|
/**
|
|
105
105
|
* @public
|
|
@@ -135,7 +135,7 @@ export interface GetServiceSettingsResponse {
|
|
|
135
135
|
* @public
|
|
136
136
|
* <p>Lists if discovery has been enabled for Linux subscriptions.</p>
|
|
137
137
|
*/
|
|
138
|
-
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery
|
|
138
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
139
139
|
/**
|
|
140
140
|
* @public
|
|
141
141
|
* <p>Lists the settings defined for Linux subscriptions discovery. The settings include if
|
|
@@ -146,7 +146,7 @@ export interface GetServiceSettingsResponse {
|
|
|
146
146
|
* @public
|
|
147
147
|
* <p>Indicates the status of Linux subscriptions settings being applied.</p>
|
|
148
148
|
*/
|
|
149
|
-
Status?: Status
|
|
149
|
+
Status?: Status;
|
|
150
150
|
/**
|
|
151
151
|
* @public
|
|
152
152
|
* <p>A message which details the Linux subscriptions service settings current status.</p>
|
|
@@ -452,7 +452,7 @@ export interface UpdateServiceSettingsRequest {
|
|
|
452
452
|
* @public
|
|
453
453
|
* <p>Describes if the discovery of Linux subscriptions is enabled.</p>
|
|
454
454
|
*/
|
|
455
|
-
LinuxSubscriptionsDiscovery: LinuxSubscriptionsDiscovery |
|
|
455
|
+
LinuxSubscriptionsDiscovery: LinuxSubscriptionsDiscovery | undefined;
|
|
456
456
|
/**
|
|
457
457
|
* @public
|
|
458
458
|
* <p>The settings defined for Linux subscriptions discovery. The settings include if Organizations
|
|
@@ -474,7 +474,7 @@ export interface UpdateServiceSettingsResponse {
|
|
|
474
474
|
* @public
|
|
475
475
|
* <p>Lists if discovery has been enabled for Linux subscriptions.</p>
|
|
476
476
|
*/
|
|
477
|
-
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery
|
|
477
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
478
478
|
/**
|
|
479
479
|
* @public
|
|
480
480
|
* <p>The settings defined for Linux subscriptions discovery. The settings include if Organizations
|
|
@@ -485,7 +485,7 @@ export interface UpdateServiceSettingsResponse {
|
|
|
485
485
|
* @public
|
|
486
486
|
* <p>Indicates the status of Linux subscriptions settings being applied.</p>
|
|
487
487
|
*/
|
|
488
|
-
Status?: Status
|
|
488
|
+
Status?: Status;
|
|
489
489
|
/**
|
|
490
490
|
* @public
|
|
491
491
|
* <p>A message which details the Linux subscriptions service settings current status.</p>
|
|
@@ -9,7 +9,7 @@ export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
|
9
9
|
export interface Filter {
|
|
10
10
|
Name?: string;
|
|
11
11
|
Values?: string[];
|
|
12
|
-
Operator?: Operator
|
|
12
|
+
Operator?: Operator;
|
|
13
13
|
}
|
|
14
14
|
export interface GetServiceSettingsRequest {}
|
|
15
15
|
export declare const LinuxSubscriptionsDiscovery: {
|
|
@@ -26,7 +26,7 @@ export type OrganizationIntegration =
|
|
|
26
26
|
(typeof OrganizationIntegration)[keyof typeof OrganizationIntegration];
|
|
27
27
|
export interface LinuxSubscriptionsDiscoverySettings {
|
|
28
28
|
SourceRegions: string[] | undefined;
|
|
29
|
-
OrganizationIntegration: OrganizationIntegration |
|
|
29
|
+
OrganizationIntegration: OrganizationIntegration | undefined;
|
|
30
30
|
}
|
|
31
31
|
export declare const Status: {
|
|
32
32
|
readonly Completed: "Completed";
|
|
@@ -36,9 +36,9 @@ export declare const Status: {
|
|
|
36
36
|
};
|
|
37
37
|
export type Status = (typeof Status)[keyof typeof Status];
|
|
38
38
|
export interface GetServiceSettingsResponse {
|
|
39
|
-
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery
|
|
39
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
40
40
|
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
|
|
41
|
-
Status?: Status
|
|
41
|
+
Status?: Status;
|
|
42
42
|
StatusMessage?: Record<string, string>;
|
|
43
43
|
HomeRegions?: string[];
|
|
44
44
|
}
|
|
@@ -99,16 +99,16 @@ export interface ListLinuxSubscriptionsResponse {
|
|
|
99
99
|
NextToken?: string;
|
|
100
100
|
}
|
|
101
101
|
export interface UpdateServiceSettingsRequest {
|
|
102
|
-
LinuxSubscriptionsDiscovery: LinuxSubscriptionsDiscovery |
|
|
102
|
+
LinuxSubscriptionsDiscovery: LinuxSubscriptionsDiscovery | undefined;
|
|
103
103
|
LinuxSubscriptionsDiscoverySettings:
|
|
104
104
|
| LinuxSubscriptionsDiscoverySettings
|
|
105
105
|
| undefined;
|
|
106
106
|
AllowUpdate?: boolean;
|
|
107
107
|
}
|
|
108
108
|
export interface UpdateServiceSettingsResponse {
|
|
109
|
-
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery
|
|
109
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
110
110
|
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
|
|
111
|
-
Status?: Status
|
|
111
|
+
Status?: Status;
|
|
112
112
|
StatusMessage?: Record<string, string>;
|
|
113
113
|
HomeRegions?: string[];
|
|
114
114
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-license-manager-linux-subscriptions",
|
|
3
3
|
"description": "AWS SDK for JavaScript License Manager Linux Subscriptions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.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",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|