@aws-sdk/client-cloudcontrol 3.379.1 → 3.382.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.
@@ -18,6 +18,7 @@ export declare class AlreadyExistsException extends __BaseException {
18
18
  */
19
19
  export interface CancelResourceRequestInput {
20
20
  /**
21
+ * @public
21
22
  * <p>The <code>RequestToken</code> of the <code>ProgressEvent</code> object returned by the
22
23
  * resource operation request.</p>
23
24
  */
@@ -85,10 +86,12 @@ export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationSta
85
86
  */
86
87
  export interface ProgressEvent {
87
88
  /**
89
+ * @public
88
90
  * <p>The name of the resource type used in the operation.</p>
89
91
  */
90
92
  TypeName?: string;
91
93
  /**
94
+ * @public
92
95
  * <p>The primary identifier for the resource.</p>
93
96
  * <note>
94
97
  * <p>In some cases, the resource identifier may be available before the resource operation
@@ -97,16 +100,19 @@ export interface ProgressEvent {
97
100
  */
98
101
  Identifier?: string;
99
102
  /**
103
+ * @public
100
104
  * <p>The unique token representing this resource operation request.</p>
101
105
  * <p>Use the <code>RequestToken</code> with <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/APIReference/API_GetResourceRequestStatus.html">GetResourceRequestStatus</a> to return the current status of a resource operation
102
106
  * request.</p>
103
107
  */
104
108
  RequestToken?: string;
105
109
  /**
110
+ * @public
106
111
  * <p>The resource operation type.</p>
107
112
  */
108
113
  Operation?: Operation | string;
109
114
  /**
115
+ * @public
110
116
  * <p>The current status of the resource operation request.</p>
111
117
  * <ul>
112
118
  * <li>
@@ -139,25 +145,30 @@ export interface ProgressEvent {
139
145
  */
140
146
  OperationStatus?: OperationStatus | string;
141
147
  /**
148
+ * @public
142
149
  * <p>When the resource operation request was initiated.</p>
143
150
  */
144
151
  EventTime?: Date;
145
152
  /**
153
+ * @public
146
154
  * <p>A JSON string containing the resource model, consisting of each resource property and its
147
155
  * current value.</p>
148
156
  */
149
157
  ResourceModel?: string;
150
158
  /**
159
+ * @public
151
160
  * <p>Any message explaining the current status.</p>
152
161
  */
153
162
  StatusMessage?: string;
154
163
  /**
164
+ * @public
155
165
  * <p>For requests with a status of <code>FAILED</code>, the associated error code.</p>
156
166
  * <p>For error code definitions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-test-contract-errors.html">Handler error codes</a> in the <i>CloudFormation Command
157
167
  * Line Interface User Guide for Extension Development</i>.</p>
158
168
  */
159
169
  ErrorCode?: HandlerErrorCode | string;
160
170
  /**
171
+ * @public
161
172
  * <p>When to next request the status of this resource operation request.</p>
162
173
  */
163
174
  RetryAfter?: Date;
@@ -167,6 +178,7 @@ export interface ProgressEvent {
167
178
  */
168
179
  export interface CancelResourceRequestOutput {
169
180
  /**
181
+ * @public
170
182
  * <p>Represents the current status of a resource operation request. For more information, see
171
183
  * <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html">Managing resource operation requests</a> in the
172
184
  * <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
@@ -232,16 +244,19 @@ export declare class ConcurrentOperationException extends __BaseException {
232
244
  */
233
245
  export interface CreateResourceInput {
234
246
  /**
247
+ * @public
235
248
  * <p>The name of the resource type.</p>
236
249
  */
237
250
  TypeName: string | undefined;
238
251
  /**
252
+ * @public
239
253
  * <p>For private resource types, the type version to use in this resource
240
254
  * operation. If you do not specify a resource version, CloudFormation
241
255
  * uses the default version.</p>
242
256
  */
243
257
  TypeVersionId?: string;
244
258
  /**
259
+ * @public
245
260
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management
246
261
  * (IAM) role for Cloud Control API to use when performing this resource
247
262
  * operation. The role specified must have the permissions required for this
@@ -258,6 +273,7 @@ export interface CreateResourceInput {
258
273
  */
259
274
  RoleArn?: string;
260
275
  /**
276
+ * @public
261
277
  * <p>A unique identifier to ensure the idempotency of the resource request. As a
262
278
  * best practice, specify this token to ensure idempotency, so that Amazon Web Services Cloud Control API can
263
279
  * accurately distinguish between request retries and new resource requests. You
@@ -272,6 +288,7 @@ export interface CreateResourceInput {
272
288
  */
273
289
  ClientToken?: string;
274
290
  /**
291
+ * @public
275
292
  * <p>Structured data format representing the desired state of the resource, consisting of that
276
293
  * resource's properties and their desired values.</p>
277
294
  * <note>
@@ -298,6 +315,7 @@ export interface CreateResourceInput {
298
315
  */
299
316
  export interface CreateResourceOutput {
300
317
  /**
318
+ * @public
301
319
  * <p>Represents the current status of the resource creation request.</p>
302
320
  * <p>After you have initiated a resource creation request, you can monitor the progress of your
303
321
  * request by calling <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/APIReference/API_GetResourceRequestStatus.html">GetResourceRequestStatus</a> using the <code>RequestToken</code> of the
@@ -532,16 +550,19 @@ export declare class UnsupportedActionException extends __BaseException {
532
550
  */
533
551
  export interface DeleteResourceInput {
534
552
  /**
553
+ * @public
535
554
  * <p>The name of the resource type.</p>
536
555
  */
537
556
  TypeName: string | undefined;
538
557
  /**
558
+ * @public
539
559
  * <p>For private resource types, the type version to use in this resource
540
560
  * operation. If you do not specify a resource version, CloudFormation
541
561
  * uses the default version.</p>
542
562
  */
543
563
  TypeVersionId?: string;
544
564
  /**
565
+ * @public
545
566
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management
546
567
  * (IAM) role for Cloud Control API to use when performing this resource
547
568
  * operation. The role specified must have the permissions required for this
@@ -558,6 +579,7 @@ export interface DeleteResourceInput {
558
579
  */
559
580
  RoleArn?: string;
560
581
  /**
582
+ * @public
561
583
  * <p>A unique identifier to ensure the idempotency of the resource request. As a
562
584
  * best practice, specify this token to ensure idempotency, so that Amazon Web Services Cloud Control API can
563
585
  * accurately distinguish between request retries and new resource requests. You
@@ -572,6 +594,7 @@ export interface DeleteResourceInput {
572
594
  */
573
595
  ClientToken?: string;
574
596
  /**
597
+ * @public
575
598
  * <p>The identifier for the resource.</p>
576
599
  * <p>You can specify the primary identifier, or any secondary identifier
577
600
  * defined for the resource type in its resource schema. You can only specify
@@ -592,6 +615,7 @@ export interface DeleteResourceInput {
592
615
  */
593
616
  export interface DeleteResourceOutput {
594
617
  /**
618
+ * @public
595
619
  * <p>Represents the current status of the resource deletion request.</p>
596
620
  * <p>After you have initiated a resource deletion request, you can monitor the progress of your
597
621
  * request by calling <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/APIReference/API_GetResourceRequestStatus.html">GetResourceRequestStatus</a> using the <code>RequestToken</code> of the
@@ -604,16 +628,19 @@ export interface DeleteResourceOutput {
604
628
  */
605
629
  export interface GetResourceInput {
606
630
  /**
631
+ * @public
607
632
  * <p>The name of the resource type.</p>
608
633
  */
609
634
  TypeName: string | undefined;
610
635
  /**
636
+ * @public
611
637
  * <p>For private resource types, the type version to use in this resource
612
638
  * operation. If you do not specify a resource version, CloudFormation
613
639
  * uses the default version.</p>
614
640
  */
615
641
  TypeVersionId?: string;
616
642
  /**
643
+ * @public
617
644
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management
618
645
  * (IAM) role for Cloud Control API to use when performing this resource
619
646
  * operation. The role specified must have the permissions required for this
@@ -630,6 +657,7 @@ export interface GetResourceInput {
630
657
  */
631
658
  RoleArn?: string;
632
659
  /**
660
+ * @public
633
661
  * <p>The identifier for the resource.</p>
634
662
  * <p>You can specify the primary identifier, or any secondary identifier
635
663
  * defined for the resource type in its resource schema. You can only specify
@@ -651,12 +679,14 @@ export interface GetResourceInput {
651
679
  */
652
680
  export interface ResourceDescription {
653
681
  /**
682
+ * @public
654
683
  * <p>The primary identifier for the resource.</p>
655
684
  * <p>For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-identifier.html">Identifying
656
685
  * resources</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
657
686
  */
658
687
  Identifier?: string;
659
688
  /**
689
+ * @public
660
690
  * <p>A list of the resource properties and their current values.</p>
661
691
  */
662
692
  Properties?: string;
@@ -666,10 +696,12 @@ export interface ResourceDescription {
666
696
  */
667
697
  export interface GetResourceOutput {
668
698
  /**
699
+ * @public
669
700
  * <p>The name of the resource type.</p>
670
701
  */
671
702
  TypeName?: string;
672
703
  /**
704
+ * @public
673
705
  * <p>Represents information about a provisioned resource.</p>
674
706
  */
675
707
  ResourceDescription?: ResourceDescription;
@@ -679,6 +711,7 @@ export interface GetResourceOutput {
679
711
  */
680
712
  export interface GetResourceRequestStatusInput {
681
713
  /**
714
+ * @public
682
715
  * <p>A unique token used to track the progress of the resource operation request.</p>
683
716
  * <p>Request tokens are included in the <code>ProgressEvent</code> type returned by a resource
684
717
  * operation request.</p>
@@ -690,6 +723,7 @@ export interface GetResourceRequestStatusInput {
690
723
  */
691
724
  export interface GetResourceRequestStatusOutput {
692
725
  /**
726
+ * @public
693
727
  * <p>Represents the current status of the resource operation request.</p>
694
728
  */
695
729
  ProgressEvent?: ProgressEvent;
@@ -700,10 +734,12 @@ export interface GetResourceRequestStatusOutput {
700
734
  */
701
735
  export interface ResourceRequestStatusFilter {
702
736
  /**
737
+ * @public
703
738
  * <p>The operation types to include in the filter.</p>
704
739
  */
705
740
  Operations?: (Operation | string)[];
706
741
  /**
742
+ * @public
707
743
  * <p>The operation statuses to include in the filter.</p>
708
744
  * <ul>
709
745
  * <li>
@@ -740,6 +776,7 @@ export interface ResourceRequestStatusFilter {
740
776
  */
741
777
  export interface ListResourceRequestsInput {
742
778
  /**
779
+ * @public
743
780
  * <p>The maximum number of results to be returned with a single call. If the number of
744
781
  * available results exceeds this maximum, the response includes a <code>NextToken</code> value
745
782
  * that you can assign to the <code>NextToken</code> request parameter to get the next set of
@@ -748,6 +785,7 @@ export interface ListResourceRequestsInput {
748
785
  */
749
786
  MaxResults?: number;
750
787
  /**
788
+ * @public
751
789
  * <p>If the previous paginated request didn't return all of the remaining results,
752
790
  * the response object's <code>NextToken</code> parameter value is set to a token.
753
791
  * To retrieve the next set of results, call this action again and assign that token to
@@ -757,6 +795,7 @@ export interface ListResourceRequestsInput {
757
795
  */
758
796
  NextToken?: string;
759
797
  /**
798
+ * @public
760
799
  * <p>The filter criteria to apply to the requests returned.</p>
761
800
  */
762
801
  ResourceRequestStatusFilter?: ResourceRequestStatusFilter;
@@ -766,10 +805,12 @@ export interface ListResourceRequestsInput {
766
805
  */
767
806
  export interface ListResourceRequestsOutput {
768
807
  /**
808
+ * @public
769
809
  * <p>The requests that match the specified filter criteria.</p>
770
810
  */
771
811
  ResourceRequestStatusSummaries?: ProgressEvent[];
772
812
  /**
813
+ * @public
773
814
  * <p>If the request doesn't return all of the remaining results,
774
815
  * <code>NextToken</code> is set to a token. To retrieve the next set of results, call
775
816
  * <code>ListResources</code> again and assign that token to the request object's
@@ -783,16 +824,19 @@ export interface ListResourceRequestsOutput {
783
824
  */
784
825
  export interface ListResourcesInput {
785
826
  /**
827
+ * @public
786
828
  * <p>The name of the resource type.</p>
787
829
  */
788
830
  TypeName: string | undefined;
789
831
  /**
832
+ * @public
790
833
  * <p>For private resource types, the type version to use in this resource
791
834
  * operation. If you do not specify a resource version, CloudFormation
792
835
  * uses the default version.</p>
793
836
  */
794
837
  TypeVersionId?: string;
795
838
  /**
839
+ * @public
796
840
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management
797
841
  * (IAM) role for Cloud Control API to use when performing this resource
798
842
  * operation. The role specified must have the permissions required for this
@@ -809,6 +853,7 @@ export interface ListResourcesInput {
809
853
  */
810
854
  RoleArn?: string;
811
855
  /**
856
+ * @public
812
857
  * <p>If the previous paginated request didn't return all of the remaining results,
813
858
  * the response object's <code>NextToken</code> parameter value is set to a token.
814
859
  * To retrieve the next set of results, call this action again and assign that token to
@@ -818,10 +863,12 @@ export interface ListResourcesInput {
818
863
  */
819
864
  NextToken?: string;
820
865
  /**
866
+ * @public
821
867
  * <p>Reserved.</p>
822
868
  */
823
869
  MaxResults?: number;
824
870
  /**
871
+ * @public
825
872
  * <p>The resource model to use to select the resources to return.</p>
826
873
  */
827
874
  ResourceModel?: string;
@@ -831,15 +878,18 @@ export interface ListResourcesInput {
831
878
  */
832
879
  export interface ListResourcesOutput {
833
880
  /**
881
+ * @public
834
882
  * <p>The name of the resource type.</p>
835
883
  */
836
884
  TypeName?: string;
837
885
  /**
886
+ * @public
838
887
  * <p>Information about the specified resources, including primary identifier and resource
839
888
  * model.</p>
840
889
  */
841
890
  ResourceDescriptions?: ResourceDescription[];
842
891
  /**
892
+ * @public
843
893
  * <p>If the request doesn't return all of the remaining results,
844
894
  * <code>NextToken</code> is set to a token. To retrieve the next set of results, call
845
895
  * <code>ListResources</code> again and assign that token to the request object's
@@ -853,16 +903,19 @@ export interface ListResourcesOutput {
853
903
  */
854
904
  export interface UpdateResourceInput {
855
905
  /**
906
+ * @public
856
907
  * <p>The name of the resource type.</p>
857
908
  */
858
909
  TypeName: string | undefined;
859
910
  /**
911
+ * @public
860
912
  * <p>For private resource types, the type version to use in this resource
861
913
  * operation. If you do not specify a resource version, CloudFormation
862
914
  * uses the default version.</p>
863
915
  */
864
916
  TypeVersionId?: string;
865
917
  /**
918
+ * @public
866
919
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management
867
920
  * (IAM) role for Cloud Control API to use when performing this resource
868
921
  * operation. The role specified must have the permissions required for this
@@ -879,6 +932,7 @@ export interface UpdateResourceInput {
879
932
  */
880
933
  RoleArn?: string;
881
934
  /**
935
+ * @public
882
936
  * <p>A unique identifier to ensure the idempotency of the resource request. As a
883
937
  * best practice, specify this token to ensure idempotency, so that Amazon Web Services Cloud Control API can
884
938
  * accurately distinguish between request retries and new resource requests. You
@@ -893,6 +947,7 @@ export interface UpdateResourceInput {
893
947
  */
894
948
  ClientToken?: string;
895
949
  /**
950
+ * @public
896
951
  * <p>The identifier for the resource.</p>
897
952
  * <p>You can specify the primary identifier, or any secondary identifier
898
953
  * defined for the resource type in its resource schema. You can only specify
@@ -908,6 +963,7 @@ export interface UpdateResourceInput {
908
963
  */
909
964
  Identifier: string | undefined;
910
965
  /**
966
+ * @public
911
967
  * <p>A JavaScript Object Notation (JSON) document listing the patch operations that represent
912
968
  * the updates to apply to the current resource properties. For details, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-update.html#resource-operations-update-patch">Composing the patch document</a> in the <i>Amazon Web Services Cloud Control API User
913
969
  * Guide</i>.</p>
@@ -919,6 +975,7 @@ export interface UpdateResourceInput {
919
975
  */
920
976
  export interface UpdateResourceOutput {
921
977
  /**
978
+ * @public
922
979
  * <p>Represents the current status of the resource update request.</p>
923
980
  * <p>Use the <code>RequestToken</code> of the <code>ProgressEvent</code> with <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/APIReference/API_GetResourceRequestStatus.html">GetResourceRequestStatus</a> to return the current status of a resource operation
924
981
  * request.</p>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudcontrol",
3
3
  "description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
4
- "version": "3.379.1",
4
+ "version": "3.382.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,15 +21,15 @@
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.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",