@aws-sdk/client-license-manager-linux-subscriptions 3.936.0 → 3.940.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/dist-cjs/index.js CHANGED
@@ -745,6 +745,34 @@ const paginateListLinuxSubscriptions = core.createPaginator(LicenseManagerLinuxS
745
745
 
746
746
  const paginateListRegisteredSubscriptionProviders = core.createPaginator(LicenseManagerLinuxSubscriptionsClient, ListRegisteredSubscriptionProvidersCommand, "NextToken", "NextToken", "MaxResults");
747
747
 
748
+ const Operator = {
749
+ CONTAINS: "Contains",
750
+ EQUAL: "Equal",
751
+ NOT_EQUAL: "NotEqual",
752
+ };
753
+ const SubscriptionProviderSource = {
754
+ RedHat: "RedHat",
755
+ };
756
+ const SubscriptionProviderStatus = {
757
+ ACTIVE: "ACTIVE",
758
+ INVALID: "INVALID",
759
+ PENDING: "PENDING",
760
+ };
761
+ const LinuxSubscriptionsDiscovery = {
762
+ Disabled: "Disabled",
763
+ Enabled: "Enabled",
764
+ };
765
+ const OrganizationIntegration = {
766
+ Disabled: "Disabled",
767
+ Enabled: "Enabled",
768
+ };
769
+ const Status = {
770
+ Completed: "Completed",
771
+ Failed: "Failed",
772
+ InProgress: "InProgress",
773
+ Successful: "Successful",
774
+ };
775
+
748
776
  Object.defineProperty(exports, "$Command", {
749
777
  enumerable: true,
750
778
  get: function () { return smithyClient.Command; }
@@ -760,12 +788,18 @@ exports.InternalServerException = InternalServerException$1;
760
788
  exports.LicenseManagerLinuxSubscriptions = LicenseManagerLinuxSubscriptions;
761
789
  exports.LicenseManagerLinuxSubscriptionsClient = LicenseManagerLinuxSubscriptionsClient;
762
790
  exports.LicenseManagerLinuxSubscriptionsServiceException = LicenseManagerLinuxSubscriptionsServiceException$1;
791
+ exports.LinuxSubscriptionsDiscovery = LinuxSubscriptionsDiscovery;
763
792
  exports.ListLinuxSubscriptionInstancesCommand = ListLinuxSubscriptionInstancesCommand;
764
793
  exports.ListLinuxSubscriptionsCommand = ListLinuxSubscriptionsCommand;
765
794
  exports.ListRegisteredSubscriptionProvidersCommand = ListRegisteredSubscriptionProvidersCommand;
766
795
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
796
+ exports.Operator = Operator;
797
+ exports.OrganizationIntegration = OrganizationIntegration;
767
798
  exports.RegisterSubscriptionProviderCommand = RegisterSubscriptionProviderCommand;
768
799
  exports.ResourceNotFoundException = ResourceNotFoundException$1;
800
+ exports.Status = Status;
801
+ exports.SubscriptionProviderSource = SubscriptionProviderSource;
802
+ exports.SubscriptionProviderStatus = SubscriptionProviderStatus;
769
803
  exports.TagResourceCommand = TagResourceCommand;
770
804
  exports.ThrottlingException = ThrottlingException$1;
771
805
  exports.UntagResourceCommand = UntagResourceCommand;
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./LicenseManagerLinuxSubscriptionsClient";
2
2
  export * from "./LicenseManagerLinuxSubscriptions";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
+ export * from "./models/enums";
5
6
  export * from "./models/errors";
6
7
  export { LicenseManagerLinuxSubscriptionsServiceException } from "./models/LicenseManagerLinuxSubscriptionsServiceException";
@@ -0,0 +1,27 @@
1
+ export const Operator = {
2
+ CONTAINS: "Contains",
3
+ EQUAL: "Equal",
4
+ NOT_EQUAL: "NotEqual",
5
+ };
6
+ export const SubscriptionProviderSource = {
7
+ RedHat: "RedHat",
8
+ };
9
+ export const SubscriptionProviderStatus = {
10
+ ACTIVE: "ACTIVE",
11
+ INVALID: "INVALID",
12
+ PENDING: "PENDING",
13
+ };
14
+ export const LinuxSubscriptionsDiscovery = {
15
+ Disabled: "Disabled",
16
+ Enabled: "Enabled",
17
+ };
18
+ export const OrganizationIntegration = {
19
+ Disabled: "Disabled",
20
+ Enabled: "Enabled",
21
+ };
22
+ export const Status = {
23
+ Completed: "Completed",
24
+ Failed: "Failed",
25
+ InProgress: "InProgress",
26
+ Successful: "Successful",
27
+ };
@@ -1,27 +1 @@
1
- export const Operator = {
2
- CONTAINS: "Contains",
3
- EQUAL: "Equal",
4
- NOT_EQUAL: "NotEqual",
5
- };
6
- export const SubscriptionProviderSource = {
7
- RedHat: "RedHat",
8
- };
9
- export const SubscriptionProviderStatus = {
10
- ACTIVE: "ACTIVE",
11
- INVALID: "INVALID",
12
- PENDING: "PENDING",
13
- };
14
- export const LinuxSubscriptionsDiscovery = {
15
- Disabled: "Disabled",
16
- Enabled: "Enabled",
17
- };
18
- export const OrganizationIntegration = {
19
- Disabled: "Disabled",
20
- Enabled: "Enabled",
21
- };
22
- export const Status = {
23
- Completed: "Completed",
24
- Failed: "Failed",
25
- InProgress: "InProgress",
26
- Successful: "Successful",
27
- };
1
+ export {};
@@ -11,6 +11,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
11
11
  export type { LicenseManagerLinuxSubscriptionsExtensionConfiguration } from "./extensionConfiguration";
12
12
  export * from "./commands";
13
13
  export * from "./pagination";
14
+ export * from "./models/enums";
14
15
  export * from "./models/errors";
15
16
  export type * from "./models/models_0";
16
17
  export { LicenseManagerLinuxSubscriptionsServiceException } from "./models/LicenseManagerLinuxSubscriptionsServiceException";
@@ -0,0 +1,120 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const Operator: {
6
+ /**
7
+ * Contains operator
8
+ */
9
+ readonly CONTAINS: "Contains";
10
+ /**
11
+ * Equal operator
12
+ */
13
+ readonly EQUAL: "Equal";
14
+ /**
15
+ * Not equal operator
16
+ */
17
+ readonly NOT_EQUAL: "NotEqual";
18
+ };
19
+ /**
20
+ * @public
21
+ */
22
+ export type Operator = (typeof Operator)[keyof typeof Operator];
23
+ /**
24
+ * @public
25
+ * @enum
26
+ */
27
+ export declare const SubscriptionProviderSource: {
28
+ /**
29
+ * RedHat subscription provider namespace
30
+ */
31
+ readonly RedHat: "RedHat";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type SubscriptionProviderSource = (typeof SubscriptionProviderSource)[keyof typeof SubscriptionProviderSource];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const SubscriptionProviderStatus: {
42
+ /**
43
+ * ACTIVE status
44
+ */
45
+ readonly ACTIVE: "ACTIVE";
46
+ /**
47
+ * INVALID status
48
+ */
49
+ readonly INVALID: "INVALID";
50
+ /**
51
+ * PENDING status
52
+ */
53
+ readonly PENDING: "PENDING";
54
+ };
55
+ /**
56
+ * @public
57
+ */
58
+ export type SubscriptionProviderStatus = (typeof SubscriptionProviderStatus)[keyof typeof SubscriptionProviderStatus];
59
+ /**
60
+ * @public
61
+ * @enum
62
+ */
63
+ export declare const LinuxSubscriptionsDiscovery: {
64
+ /**
65
+ * Disabled LinuxSubscriptionsDiscovery
66
+ */
67
+ readonly Disabled: "Disabled";
68
+ /**
69
+ * Enabled LinuxSubscriptionsDiscovery
70
+ */
71
+ readonly Enabled: "Enabled";
72
+ };
73
+ /**
74
+ * @public
75
+ */
76
+ export type LinuxSubscriptionsDiscovery = (typeof LinuxSubscriptionsDiscovery)[keyof typeof LinuxSubscriptionsDiscovery];
77
+ /**
78
+ * @public
79
+ * @enum
80
+ */
81
+ export declare const OrganizationIntegration: {
82
+ /**
83
+ * Disabled OrganizationIntegration
84
+ */
85
+ readonly Disabled: "Disabled";
86
+ /**
87
+ * Enabled OrganizationIntegration
88
+ */
89
+ readonly Enabled: "Enabled";
90
+ };
91
+ /**
92
+ * @public
93
+ */
94
+ export type OrganizationIntegration = (typeof OrganizationIntegration)[keyof typeof OrganizationIntegration];
95
+ /**
96
+ * @public
97
+ * @enum
98
+ */
99
+ export declare const Status: {
100
+ /**
101
+ * Completed status
102
+ */
103
+ readonly Completed: "Completed";
104
+ /**
105
+ * Failed status
106
+ */
107
+ readonly Failed: "Failed";
108
+ /**
109
+ * InProgress status
110
+ */
111
+ readonly InProgress: "InProgress";
112
+ /**
113
+ * Successful status
114
+ */
115
+ readonly Successful: "Successful";
116
+ };
117
+ /**
118
+ * @public
119
+ */
120
+ export type Status = (typeof Status)[keyof typeof Status];
@@ -1,3 +1,4 @@
1
+ import { LinuxSubscriptionsDiscovery, Operator, OrganizationIntegration, Status, SubscriptionProviderSource, SubscriptionProviderStatus } from "./enums";
1
2
  /**
2
3
  * @public
3
4
  */
@@ -13,28 +14,6 @@ export interface DeregisterSubscriptionProviderRequest {
13
14
  */
14
15
  export interface DeregisterSubscriptionProviderResponse {
15
16
  }
16
- /**
17
- * @public
18
- * @enum
19
- */
20
- export declare const Operator: {
21
- /**
22
- * Contains operator
23
- */
24
- readonly CONTAINS: "Contains";
25
- /**
26
- * Equal operator
27
- */
28
- readonly EQUAL: "Equal";
29
- /**
30
- * Not equal operator
31
- */
32
- readonly NOT_EQUAL: "NotEqual";
33
- };
34
- /**
35
- * @public
36
- */
37
- export type Operator = (typeof Operator)[keyof typeof Operator];
38
17
  /**
39
18
  * <p>A filter object that is used to return more specific results from a describe operation.
40
19
  * Filters can be used to match a set of resources by specific criteria.</p>
@@ -67,42 +46,6 @@ export interface GetRegisteredSubscriptionProviderRequest {
67
46
  */
68
47
  SubscriptionProviderArn: string | undefined;
69
48
  }
70
- /**
71
- * @public
72
- * @enum
73
- */
74
- export declare const SubscriptionProviderSource: {
75
- /**
76
- * RedHat subscription provider namespace
77
- */
78
- readonly RedHat: "RedHat";
79
- };
80
- /**
81
- * @public
82
- */
83
- export type SubscriptionProviderSource = (typeof SubscriptionProviderSource)[keyof typeof SubscriptionProviderSource];
84
- /**
85
- * @public
86
- * @enum
87
- */
88
- export declare const SubscriptionProviderStatus: {
89
- /**
90
- * ACTIVE status
91
- */
92
- readonly ACTIVE: "ACTIVE";
93
- /**
94
- * INVALID status
95
- */
96
- readonly INVALID: "INVALID";
97
- /**
98
- * PENDING status
99
- */
100
- readonly PENDING: "PENDING";
101
- };
102
- /**
103
- * @public
104
- */
105
- export type SubscriptionProviderStatus = (typeof SubscriptionProviderStatus)[keyof typeof SubscriptionProviderStatus];
106
49
  /**
107
50
  * @public
108
51
  */
@@ -147,42 +90,6 @@ export interface GetRegisteredSubscriptionProviderResponse {
147
90
  */
148
91
  export interface GetServiceSettingsRequest {
149
92
  }
150
- /**
151
- * @public
152
- * @enum
153
- */
154
- export declare const LinuxSubscriptionsDiscovery: {
155
- /**
156
- * Disabled LinuxSubscriptionsDiscovery
157
- */
158
- readonly Disabled: "Disabled";
159
- /**
160
- * Enabled LinuxSubscriptionsDiscovery
161
- */
162
- readonly Enabled: "Enabled";
163
- };
164
- /**
165
- * @public
166
- */
167
- export type LinuxSubscriptionsDiscovery = (typeof LinuxSubscriptionsDiscovery)[keyof typeof LinuxSubscriptionsDiscovery];
168
- /**
169
- * @public
170
- * @enum
171
- */
172
- export declare const OrganizationIntegration: {
173
- /**
174
- * Disabled OrganizationIntegration
175
- */
176
- readonly Disabled: "Disabled";
177
- /**
178
- * Enabled OrganizationIntegration
179
- */
180
- readonly Enabled: "Enabled";
181
- };
182
- /**
183
- * @public
184
- */
185
- export type OrganizationIntegration = (typeof OrganizationIntegration)[keyof typeof OrganizationIntegration];
186
93
  /**
187
94
  * <p>Lists the settings defined for discovering Linux subscriptions.</p>
188
95
  * @public
@@ -199,32 +106,6 @@ export interface LinuxSubscriptionsDiscoverySettings {
199
106
  */
200
107
  OrganizationIntegration: OrganizationIntegration | undefined;
201
108
  }
202
- /**
203
- * @public
204
- * @enum
205
- */
206
- export declare const Status: {
207
- /**
208
- * Completed status
209
- */
210
- readonly Completed: "Completed";
211
- /**
212
- * Failed status
213
- */
214
- readonly Failed: "Failed";
215
- /**
216
- * InProgress status
217
- */
218
- readonly InProgress: "InProgress";
219
- /**
220
- * Successful status
221
- */
222
- readonly Successful: "Successful";
223
- };
224
- /**
225
- * @public
226
- */
227
- export type Status = (typeof Status)[keyof typeof Status];
228
109
  /**
229
110
  * @public
230
111
  */
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { LicenseManagerLinuxSubscriptionsExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
+ export * from "./models/enums";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
10
11
  export { LicenseManagerLinuxSubscriptionsServiceException } from "./models/LicenseManagerLinuxSubscriptionsServiceException";
@@ -0,0 +1,37 @@
1
+ export declare const Operator: {
2
+ readonly CONTAINS: "Contains";
3
+ readonly EQUAL: "Equal";
4
+ readonly NOT_EQUAL: "NotEqual";
5
+ };
6
+ export type Operator = (typeof Operator)[keyof typeof Operator];
7
+ export declare const SubscriptionProviderSource: {
8
+ readonly RedHat: "RedHat";
9
+ };
10
+ export type SubscriptionProviderSource =
11
+ (typeof SubscriptionProviderSource)[keyof typeof SubscriptionProviderSource];
12
+ export declare const SubscriptionProviderStatus: {
13
+ readonly ACTIVE: "ACTIVE";
14
+ readonly INVALID: "INVALID";
15
+ readonly PENDING: "PENDING";
16
+ };
17
+ export type SubscriptionProviderStatus =
18
+ (typeof SubscriptionProviderStatus)[keyof typeof SubscriptionProviderStatus];
19
+ export declare const LinuxSubscriptionsDiscovery: {
20
+ readonly Disabled: "Disabled";
21
+ readonly Enabled: "Enabled";
22
+ };
23
+ export type LinuxSubscriptionsDiscovery =
24
+ (typeof LinuxSubscriptionsDiscovery)[keyof typeof LinuxSubscriptionsDiscovery];
25
+ export declare const OrganizationIntegration: {
26
+ readonly Disabled: "Disabled";
27
+ readonly Enabled: "Enabled";
28
+ };
29
+ export type OrganizationIntegration =
30
+ (typeof OrganizationIntegration)[keyof typeof OrganizationIntegration];
31
+ export declare const Status: {
32
+ readonly Completed: "Completed";
33
+ readonly Failed: "Failed";
34
+ readonly InProgress: "InProgress";
35
+ readonly Successful: "Successful";
36
+ };
37
+ export type Status = (typeof Status)[keyof typeof Status];
@@ -1,13 +1,15 @@
1
+ import {
2
+ LinuxSubscriptionsDiscovery,
3
+ Operator,
4
+ OrganizationIntegration,
5
+ Status,
6
+ SubscriptionProviderSource,
7
+ SubscriptionProviderStatus,
8
+ } from "./enums";
1
9
  export interface DeregisterSubscriptionProviderRequest {
2
10
  SubscriptionProviderArn: string | undefined;
3
11
  }
4
12
  export interface DeregisterSubscriptionProviderResponse {}
5
- export declare const Operator: {
6
- readonly CONTAINS: "Contains";
7
- readonly EQUAL: "Equal";
8
- readonly NOT_EQUAL: "NotEqual";
9
- };
10
- export type Operator = (typeof Operator)[keyof typeof Operator];
11
13
  export interface Filter {
12
14
  Name?: string | undefined;
13
15
  Values?: string[] | undefined;
@@ -16,18 +18,6 @@ export interface Filter {
16
18
  export interface GetRegisteredSubscriptionProviderRequest {
17
19
  SubscriptionProviderArn: string | undefined;
18
20
  }
19
- export declare const SubscriptionProviderSource: {
20
- readonly RedHat: "RedHat";
21
- };
22
- export type SubscriptionProviderSource =
23
- (typeof SubscriptionProviderSource)[keyof typeof SubscriptionProviderSource];
24
- export declare const SubscriptionProviderStatus: {
25
- readonly ACTIVE: "ACTIVE";
26
- readonly INVALID: "INVALID";
27
- readonly PENDING: "PENDING";
28
- };
29
- export type SubscriptionProviderStatus =
30
- (typeof SubscriptionProviderStatus)[keyof typeof SubscriptionProviderStatus];
31
21
  export interface GetRegisteredSubscriptionProviderResponse {
32
22
  SubscriptionProviderArn?: string | undefined;
33
23
  SubscriptionProviderSource?: SubscriptionProviderSource | undefined;
@@ -37,29 +27,10 @@ export interface GetRegisteredSubscriptionProviderResponse {
37
27
  LastSuccessfulDataRetrievalTime?: string | undefined;
38
28
  }
39
29
  export interface GetServiceSettingsRequest {}
40
- export declare const LinuxSubscriptionsDiscovery: {
41
- readonly Disabled: "Disabled";
42
- readonly Enabled: "Enabled";
43
- };
44
- export type LinuxSubscriptionsDiscovery =
45
- (typeof LinuxSubscriptionsDiscovery)[keyof typeof LinuxSubscriptionsDiscovery];
46
- export declare const OrganizationIntegration: {
47
- readonly Disabled: "Disabled";
48
- readonly Enabled: "Enabled";
49
- };
50
- export type OrganizationIntegration =
51
- (typeof OrganizationIntegration)[keyof typeof OrganizationIntegration];
52
30
  export interface LinuxSubscriptionsDiscoverySettings {
53
31
  SourceRegions: string[] | undefined;
54
32
  OrganizationIntegration: OrganizationIntegration | undefined;
55
33
  }
56
- export declare const Status: {
57
- readonly Completed: "Completed";
58
- readonly Failed: "Failed";
59
- readonly InProgress: "InProgress";
60
- readonly Successful: "Successful";
61
- };
62
- export type Status = (typeof Status)[keyof typeof Status];
63
34
  export interface GetServiceSettingsResponse {
64
35
  LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery | undefined;
65
36
  LinuxSubscriptionsDiscoverySettings?:
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.936.0",
4
+ "version": "3.940.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-license-manager-linux-subscriptions",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
23
+ "@aws-sdk/core": "3.940.0",
24
+ "@aws-sdk/credential-provider-node": "3.940.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
- "@aws-sdk/middleware-user-agent": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.940.0",
29
29
  "@aws-sdk/region-config-resolver": "3.936.0",
30
30
  "@aws-sdk/types": "3.936.0",
31
31
  "@aws-sdk/util-endpoints": "3.936.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.936.0",
33
- "@aws-sdk/util-user-agent-node": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.940.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",