@aws-sdk/client-controlcatalog 3.688.0 → 3.691.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.
@@ -7,7 +7,7 @@ import { ControlCatalogServiceException as __BaseException } from "./ControlCata
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- Message?: string;
10
+ Message?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -22,12 +22,12 @@ export interface AssociatedDomainSummary {
22
22
  * <p>The Amazon Resource Name (ARN) of the related domain.</p>
23
23
  * @public
24
24
  */
25
- Arn?: string;
25
+ Arn?: string | undefined;
26
26
  /**
27
27
  * <p>The name of the related domain.</p>
28
28
  * @public
29
29
  */
30
- Name?: string;
30
+ Name?: string | undefined;
31
31
  }
32
32
  /**
33
33
  * <p>A summary of the objective that a common control supports.</p>
@@ -38,12 +38,12 @@ export interface AssociatedObjectiveSummary {
38
38
  * <p>The Amazon Resource Name (ARN) of the related objective.</p>
39
39
  * @public
40
40
  */
41
- Arn?: string;
41
+ Arn?: string | undefined;
42
42
  /**
43
43
  * <p>The name of the related objective.</p>
44
44
  * @public
45
45
  */
46
- Name?: string;
46
+ Name?: string | undefined;
47
47
  }
48
48
  /**
49
49
  * <p>The objective resource that's being used as a filter.</p>
@@ -54,7 +54,7 @@ export interface ObjectiveResourceFilter {
54
54
  * <p>The Amazon Resource Name (ARN) of the objective.</p>
55
55
  * @public
56
56
  */
57
- Arn?: string;
57
+ Arn?: string | undefined;
58
58
  }
59
59
  /**
60
60
  * <p>An optional filter that narrows the results to a specific objective.</p>
@@ -67,7 +67,7 @@ export interface CommonControlFilter {
67
67
  * in the <code>CommonControlFilter</code> isn’t currently supported.</p>
68
68
  * @public
69
69
  */
70
- Objectives?: ObjectiveResourceFilter[];
70
+ Objectives?: ObjectiveResourceFilter[] | undefined;
71
71
  }
72
72
  /**
73
73
  * <p>An internal service error occurred during the processing of your request. Try again later.</p>
@@ -77,7 +77,7 @@ export declare class InternalServerException extends __BaseException {
77
77
  readonly name: "InternalServerException";
78
78
  readonly $fault: "server";
79
79
  $retryable: {};
80
- Message?: string;
80
+ Message?: string | undefined;
81
81
  /**
82
82
  * @internal
83
83
  */
@@ -91,19 +91,19 @@ export interface ListCommonControlsRequest {
91
91
  * <p>The maximum number of results on a page or for an API request call.</p>
92
92
  * @public
93
93
  */
94
- MaxResults?: number;
94
+ MaxResults?: number | undefined;
95
95
  /**
96
96
  * <p>The pagination token that's used to fetch the next set of results.</p>
97
97
  * @public
98
98
  */
99
- NextToken?: string;
99
+ NextToken?: string | undefined;
100
100
  /**
101
101
  * <p>An optional filter that narrows the results to a specific objective.</p>
102
102
  * <p>This filter allows you to specify one objective ARN at a time. Passing multiple ARNs in
103
103
  * the <code>CommonControlFilter</code> isn’t currently supported.</p>
104
104
  * @public
105
105
  */
106
- CommonControlFilter?: CommonControlFilter;
106
+ CommonControlFilter?: CommonControlFilter | undefined;
107
107
  }
108
108
  /**
109
109
  * <p>A summary of metadata for a common control.</p>
@@ -159,7 +159,7 @@ export interface ListCommonControlsResponse {
159
159
  * <p>The pagination token that's used to fetch the next set of results.</p>
160
160
  * @public
161
161
  */
162
- NextToken?: string;
162
+ NextToken?: string | undefined;
163
163
  }
164
164
  /**
165
165
  * <p>The request was denied due to request throttling.</p>
@@ -171,7 +171,7 @@ export declare class ThrottlingException extends __BaseException {
171
171
  $retryable: {
172
172
  throttling: boolean;
173
173
  };
174
- Message?: string;
174
+ Message?: string | undefined;
175
175
  /**
176
176
  * @internal
177
177
  */
@@ -184,7 +184,7 @@ export declare class ThrottlingException extends __BaseException {
184
184
  export declare class ValidationException extends __BaseException {
185
185
  readonly name: "ValidationException";
186
186
  readonly $fault: "client";
187
- Message?: string;
187
+ Message?: string | undefined;
188
188
  /**
189
189
  * @internal
190
190
  */
@@ -342,7 +342,7 @@ export interface RegionConfiguration {
342
342
  * <p>Regions in which the control is available to be deployed.</p>
343
343
  * @public
344
344
  */
345
- DeployableRegions?: string[];
345
+ DeployableRegions?: string[] | undefined;
346
346
  }
347
347
  /**
348
348
  * @public
@@ -379,13 +379,13 @@ export interface GetControlResponse {
379
379
  * <p>Returns information about the control, as an <code>ImplementationDetails</code> object that shows the underlying implementation type for a control.</p>
380
380
  * @public
381
381
  */
382
- Implementation?: ImplementationDetails;
382
+ Implementation?: ImplementationDetails | undefined;
383
383
  /**
384
384
  * <p>Returns an array of <code>ControlParameter</code> objects that specify the parameters a control supports. An empty list is returned for controls that don’t support parameters.
385
385
  * </p>
386
386
  * @public
387
387
  */
388
- Parameters?: ControlParameter[];
388
+ Parameters?: ControlParameter[] | undefined;
389
389
  }
390
390
  /**
391
391
  * <p>The requested resource does not exist.</p>
@@ -394,7 +394,7 @@ export interface GetControlResponse {
394
394
  export declare class ResourceNotFoundException extends __BaseException {
395
395
  readonly name: "ResourceNotFoundException";
396
396
  readonly $fault: "client";
397
- Message?: string;
397
+ Message?: string | undefined;
398
398
  /**
399
399
  * @internal
400
400
  */
@@ -408,12 +408,12 @@ export interface ListControlsRequest {
408
408
  * <p>The pagination token that's used to fetch the next set of results.</p>
409
409
  * @public
410
410
  */
411
- NextToken?: string;
411
+ NextToken?: string | undefined;
412
412
  /**
413
413
  * <p>The maximum number of results on a page or for an API request call.</p>
414
414
  * @public
415
415
  */
416
- MaxResults?: number;
416
+ MaxResults?: number | undefined;
417
417
  }
418
418
  /**
419
419
  * <p>Overview of information about a control.</p>
@@ -449,7 +449,7 @@ export interface ListControlsResponse {
449
449
  * <p>The pagination token that's used to fetch the next set of results.</p>
450
450
  * @public
451
451
  */
452
- NextToken?: string;
452
+ NextToken?: string | undefined;
453
453
  }
454
454
  /**
455
455
  * @public
@@ -459,12 +459,12 @@ export interface ListDomainsRequest {
459
459
  * <p>The maximum number of results on a page or for an API request call.</p>
460
460
  * @public
461
461
  */
462
- MaxResults?: number;
462
+ MaxResults?: number | undefined;
463
463
  /**
464
464
  * <p>The pagination token that's used to fetch the next set of results.</p>
465
465
  * @public
466
466
  */
467
- NextToken?: string;
467
+ NextToken?: string | undefined;
468
468
  }
469
469
  /**
470
470
  * <p>A summary of metadata for a domain.</p>
@@ -510,7 +510,7 @@ export interface ListDomainsResponse {
510
510
  * <p>The pagination token that's used to fetch the next set of results.</p>
511
511
  * @public
512
512
  */
513
- NextToken?: string;
513
+ NextToken?: string | undefined;
514
514
  }
515
515
  /**
516
516
  * <p>The domain resource that's being used as a filter.</p>
@@ -521,7 +521,7 @@ export interface DomainResourceFilter {
521
521
  * <p>The Amazon Resource Name (ARN) of the domain.</p>
522
522
  * @public
523
523
  */
524
- Arn?: string;
524
+ Arn?: string | undefined;
525
525
  }
526
526
  /**
527
527
  * <p>An optional filter that narrows the list of objectives to a specific domain.</p>
@@ -534,7 +534,7 @@ export interface ObjectiveFilter {
534
534
  * the <code>ObjectiveFilter</code> isn’t currently supported.</p>
535
535
  * @public
536
536
  */
537
- Domains?: DomainResourceFilter[];
537
+ Domains?: DomainResourceFilter[] | undefined;
538
538
  }
539
539
  /**
540
540
  * @public
@@ -544,19 +544,19 @@ export interface ListObjectivesRequest {
544
544
  * <p>The maximum number of results on a page or for an API request call.</p>
545
545
  * @public
546
546
  */
547
- MaxResults?: number;
547
+ MaxResults?: number | undefined;
548
548
  /**
549
549
  * <p>The pagination token that's used to fetch the next set of results.</p>
550
550
  * @public
551
551
  */
552
- NextToken?: string;
552
+ NextToken?: string | undefined;
553
553
  /**
554
554
  * <p>An optional filter that narrows the results to a specific domain.</p>
555
555
  * <p>This filter allows you to specify one domain ARN at a time.
556
556
  * Passing multiple ARNs in the <code>ObjectiveFilter</code> isn’t currently supported.</p>
557
557
  * @public
558
558
  */
559
- ObjectiveFilter?: ObjectiveFilter;
559
+ ObjectiveFilter?: ObjectiveFilter | undefined;
560
560
  }
561
561
  /**
562
562
  * <p>A summary of metadata for an objective.</p>
@@ -607,5 +607,5 @@ export interface ListObjectivesResponse {
607
607
  * <p>The pagination token that's used to fetch the next set of results.</p>
608
608
  * @public
609
609
  */
610
- NextToken?: string;
610
+ NextToken?: string | undefined;
611
611
  }
@@ -3,38 +3,38 @@ import { ControlCatalogServiceException as __BaseException } from "./ControlCata
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
11
  export interface AssociatedDomainSummary {
12
- Arn?: string;
13
- Name?: string;
12
+ Arn?: string | undefined;
13
+ Name?: string | undefined;
14
14
  }
15
15
  export interface AssociatedObjectiveSummary {
16
- Arn?: string;
17
- Name?: string;
16
+ Arn?: string | undefined;
17
+ Name?: string | undefined;
18
18
  }
19
19
  export interface ObjectiveResourceFilter {
20
- Arn?: string;
20
+ Arn?: string | undefined;
21
21
  }
22
22
  export interface CommonControlFilter {
23
- Objectives?: ObjectiveResourceFilter[];
23
+ Objectives?: ObjectiveResourceFilter[] | undefined;
24
24
  }
25
25
  export declare class InternalServerException extends __BaseException {
26
26
  readonly name: "InternalServerException";
27
27
  readonly $fault: "server";
28
28
  $retryable: {};
29
- Message?: string;
29
+ Message?: string | undefined;
30
30
  constructor(
31
31
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
32
32
  );
33
33
  }
34
34
  export interface ListCommonControlsRequest {
35
- MaxResults?: number;
36
- NextToken?: string;
37
- CommonControlFilter?: CommonControlFilter;
35
+ MaxResults?: number | undefined;
36
+ NextToken?: string | undefined;
37
+ CommonControlFilter?: CommonControlFilter | undefined;
38
38
  }
39
39
  export interface CommonControlSummary {
40
40
  Arn: string | undefined;
@@ -47,7 +47,7 @@ export interface CommonControlSummary {
47
47
  }
48
48
  export interface ListCommonControlsResponse {
49
49
  CommonControls: CommonControlSummary[] | undefined;
50
- NextToken?: string;
50
+ NextToken?: string | undefined;
51
51
  }
52
52
  export declare class ThrottlingException extends __BaseException {
53
53
  readonly name: "ThrottlingException";
@@ -55,7 +55,7 @@ export declare class ThrottlingException extends __BaseException {
55
55
  $retryable: {
56
56
  throttling: boolean;
57
57
  };
58
- Message?: string;
58
+ Message?: string | undefined;
59
59
  constructor(
60
60
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
61
61
  );
@@ -63,7 +63,7 @@ export declare class ThrottlingException extends __BaseException {
63
63
  export declare class ValidationException extends __BaseException {
64
64
  readonly name: "ValidationException";
65
65
  readonly $fault: "client";
66
- Message?: string;
66
+ Message?: string | undefined;
67
67
  constructor(
68
68
  opts: __ExceptionOptionType<ValidationException, __BaseException>
69
69
  );
@@ -91,7 +91,7 @@ export declare const ControlScope: {
91
91
  export type ControlScope = (typeof ControlScope)[keyof typeof ControlScope];
92
92
  export interface RegionConfiguration {
93
93
  Scope: ControlScope | undefined;
94
- DeployableRegions?: string[];
94
+ DeployableRegions?: string[] | undefined;
95
95
  }
96
96
  export interface GetControlResponse {
97
97
  Arn: string | undefined;
@@ -99,20 +99,20 @@ export interface GetControlResponse {
99
99
  Description: string | undefined;
100
100
  Behavior: ControlBehavior | undefined;
101
101
  RegionConfiguration: RegionConfiguration | undefined;
102
- Implementation?: ImplementationDetails;
103
- Parameters?: ControlParameter[];
102
+ Implementation?: ImplementationDetails | undefined;
103
+ Parameters?: ControlParameter[] | undefined;
104
104
  }
105
105
  export declare class ResourceNotFoundException extends __BaseException {
106
106
  readonly name: "ResourceNotFoundException";
107
107
  readonly $fault: "client";
108
- Message?: string;
108
+ Message?: string | undefined;
109
109
  constructor(
110
110
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
111
111
  );
112
112
  }
113
113
  export interface ListControlsRequest {
114
- NextToken?: string;
115
- MaxResults?: number;
114
+ NextToken?: string | undefined;
115
+ MaxResults?: number | undefined;
116
116
  }
117
117
  export interface ControlSummary {
118
118
  Arn: string | undefined;
@@ -121,11 +121,11 @@ export interface ControlSummary {
121
121
  }
122
122
  export interface ListControlsResponse {
123
123
  Controls: ControlSummary[] | undefined;
124
- NextToken?: string;
124
+ NextToken?: string | undefined;
125
125
  }
126
126
  export interface ListDomainsRequest {
127
- MaxResults?: number;
128
- NextToken?: string;
127
+ MaxResults?: number | undefined;
128
+ NextToken?: string | undefined;
129
129
  }
130
130
  export interface DomainSummary {
131
131
  Arn: string | undefined;
@@ -136,18 +136,18 @@ export interface DomainSummary {
136
136
  }
137
137
  export interface ListDomainsResponse {
138
138
  Domains: DomainSummary[] | undefined;
139
- NextToken?: string;
139
+ NextToken?: string | undefined;
140
140
  }
141
141
  export interface DomainResourceFilter {
142
- Arn?: string;
142
+ Arn?: string | undefined;
143
143
  }
144
144
  export interface ObjectiveFilter {
145
- Domains?: DomainResourceFilter[];
145
+ Domains?: DomainResourceFilter[] | undefined;
146
146
  }
147
147
  export interface ListObjectivesRequest {
148
- MaxResults?: number;
149
- NextToken?: string;
150
- ObjectiveFilter?: ObjectiveFilter;
148
+ MaxResults?: number | undefined;
149
+ NextToken?: string | undefined;
150
+ ObjectiveFilter?: ObjectiveFilter | undefined;
151
151
  }
152
152
  export interface ObjectiveSummary {
153
153
  Arn: string | undefined;
@@ -159,5 +159,5 @@ export interface ObjectiveSummary {
159
159
  }
160
160
  export interface ListObjectivesResponse {
161
161
  Objectives: ObjectiveSummary[] | undefined;
162
- NextToken?: string;
162
+ NextToken?: string | undefined;
163
163
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-controlcatalog",
3
3
  "description": "AWS SDK for JavaScript Controlcatalog Client for Node.js, Browser and React Native",
4
- "version": "3.688.0",
4
+ "version": "3.691.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",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",