@aws-sdk/client-s3-control 3.457.0 → 3.458.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.
Files changed (168) hide show
  1. package/README.md +232 -72
  2. package/dist-cjs/S3Control.js +40 -0
  3. package/dist-cjs/commands/AssociateAccessGrantsIdentityCenterCommand.js +58 -0
  4. package/dist-cjs/commands/CreateAccessGrantCommand.js +58 -0
  5. package/dist-cjs/commands/CreateAccessGrantsInstanceCommand.js +58 -0
  6. package/dist-cjs/commands/CreateAccessGrantsLocationCommand.js +58 -0
  7. package/dist-cjs/commands/DeleteAccessGrantCommand.js +58 -0
  8. package/dist-cjs/commands/DeleteAccessGrantsInstanceCommand.js +58 -0
  9. package/dist-cjs/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  10. package/dist-cjs/commands/DeleteAccessGrantsLocationCommand.js +58 -0
  11. package/dist-cjs/commands/DissociateAccessGrantsIdentityCenterCommand.js +58 -0
  12. package/dist-cjs/commands/GetAccessGrantCommand.js +58 -0
  13. package/dist-cjs/commands/GetAccessGrantsInstanceCommand.js +58 -0
  14. package/dist-cjs/commands/GetAccessGrantsInstanceForPrefixCommand.js +58 -0
  15. package/dist-cjs/commands/GetAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  16. package/dist-cjs/commands/GetAccessGrantsLocationCommand.js +58 -0
  17. package/dist-cjs/commands/GetDataAccessCommand.js +59 -0
  18. package/dist-cjs/commands/ListAccessGrantsCommand.js +58 -0
  19. package/dist-cjs/commands/ListAccessGrantsInstancesCommand.js +58 -0
  20. package/dist-cjs/commands/ListAccessGrantsLocationsCommand.js +58 -0
  21. package/dist-cjs/commands/PutAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  22. package/dist-cjs/commands/UpdateAccessGrantsLocationCommand.js +58 -0
  23. package/dist-cjs/commands/index.js +20 -0
  24. package/dist-cjs/models/index.js +1 -0
  25. package/dist-cjs/models/models_0.js +32 -38
  26. package/dist-cjs/models/models_1.js +40 -0
  27. package/dist-cjs/pagination/ListAccessGrantsInstancesPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListAccessGrantsLocationsPaginator.js +29 -0
  29. package/dist-cjs/pagination/ListAccessGrantsPaginator.js +29 -0
  30. package/dist-cjs/pagination/index.js +3 -0
  31. package/dist-cjs/protocols/Aws_restXml.js +1697 -156
  32. package/dist-es/S3Control.js +40 -0
  33. package/dist-es/commands/AssociateAccessGrantsIdentityCenterCommand.js +54 -0
  34. package/dist-es/commands/CreateAccessGrantCommand.js +54 -0
  35. package/dist-es/commands/CreateAccessGrantsInstanceCommand.js +54 -0
  36. package/dist-es/commands/CreateAccessGrantsLocationCommand.js +54 -0
  37. package/dist-es/commands/DeleteAccessGrantCommand.js +54 -0
  38. package/dist-es/commands/DeleteAccessGrantsInstanceCommand.js +54 -0
  39. package/dist-es/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  40. package/dist-es/commands/DeleteAccessGrantsLocationCommand.js +54 -0
  41. package/dist-es/commands/DissociateAccessGrantsIdentityCenterCommand.js +54 -0
  42. package/dist-es/commands/GetAccessGrantCommand.js +54 -0
  43. package/dist-es/commands/GetAccessGrantsInstanceCommand.js +54 -0
  44. package/dist-es/commands/GetAccessGrantsInstanceForPrefixCommand.js +54 -0
  45. package/dist-es/commands/GetAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  46. package/dist-es/commands/GetAccessGrantsLocationCommand.js +54 -0
  47. package/dist-es/commands/GetDataAccessCommand.js +55 -0
  48. package/dist-es/commands/ListAccessGrantsCommand.js +54 -0
  49. package/dist-es/commands/ListAccessGrantsInstancesCommand.js +54 -0
  50. package/dist-es/commands/ListAccessGrantsLocationsCommand.js +54 -0
  51. package/dist-es/commands/PutAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  52. package/dist-es/commands/UpdateAccessGrantsLocationCommand.js +54 -0
  53. package/dist-es/commands/index.js +20 -0
  54. package/dist-es/models/index.js +1 -0
  55. package/dist-es/models/models_0.js +28 -34
  56. package/dist-es/models/models_1.js +35 -0
  57. package/dist-es/pagination/ListAccessGrantsInstancesPaginator.js +25 -0
  58. package/dist-es/pagination/ListAccessGrantsLocationsPaginator.js +25 -0
  59. package/dist-es/pagination/ListAccessGrantsPaginator.js +25 -0
  60. package/dist-es/pagination/index.js +3 -0
  61. package/dist-es/protocols/Aws_restXml.js +1733 -233
  62. package/dist-types/S3Control.d.ts +140 -0
  63. package/dist-types/S3ControlClient.d.ts +22 -2
  64. package/dist-types/commands/AssociateAccessGrantsIdentityCenterCommand.d.ts +82 -0
  65. package/dist-types/commands/CreateAccessGrantCommand.d.ts +118 -0
  66. package/dist-types/commands/CreateAccessGrantsInstanceCommand.d.ts +93 -0
  67. package/dist-types/commands/CreateAccessGrantsLocationCommand.d.ts +111 -0
  68. package/dist-types/commands/DeleteAccessGrantCommand.d.ts +78 -0
  69. package/dist-types/commands/DeleteAccessGrantsInstanceCommand.d.ts +77 -0
  70. package/dist-types/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.d.ts +77 -0
  71. package/dist-types/commands/DeleteAccessGrantsLocationCommand.d.ts +78 -0
  72. package/dist-types/commands/DeleteStorageLensGroupCommand.d.ts +5 -4
  73. package/dist-types/commands/DissociateAccessGrantsIdentityCenterCommand.d.ts +81 -0
  74. package/dist-types/commands/GetAccessGrantCommand.d.ts +93 -0
  75. package/dist-types/commands/GetAccessGrantsInstanceCommand.d.ts +82 -0
  76. package/dist-types/commands/GetAccessGrantsInstanceForPrefixCommand.d.ts +85 -0
  77. package/dist-types/commands/GetAccessGrantsInstanceResourcePolicyCommand.d.ts +81 -0
  78. package/dist-types/commands/GetAccessGrantsLocationCommand.d.ts +84 -0
  79. package/dist-types/commands/GetDataAccessCommand.d.ts +94 -0
  80. package/dist-types/commands/GetStorageLensGroupCommand.d.ts +5 -4
  81. package/dist-types/commands/ListAccessGrantsCommand.d.ts +104 -0
  82. package/dist-types/commands/ListAccessGrantsInstancesCommand.d.ts +89 -0
  83. package/dist-types/commands/ListAccessGrantsLocationsCommand.d.ts +91 -0
  84. package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +8 -5
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -10
  86. package/dist-types/commands/PutAccessGrantsInstanceResourcePolicyCommand.d.ts +83 -0
  87. package/dist-types/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +1 -1
  88. package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +1 -1
  89. package/dist-types/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +1 -1
  90. package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  91. package/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
  92. package/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
  93. package/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
  94. package/dist-types/commands/PutBucketVersioningCommand.d.ts +1 -1
  95. package/dist-types/commands/PutJobTaggingCommand.d.ts +1 -1
  96. package/dist-types/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +1 -1
  97. package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  98. package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +1 -1
  99. package/dist-types/commands/PutStorageLensConfigurationTaggingCommand.d.ts +1 -1
  100. package/dist-types/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +1 -1
  101. package/dist-types/commands/TagResourceCommand.d.ts +12 -10
  102. package/dist-types/commands/UntagResourceCommand.d.ts +12 -8
  103. package/dist-types/commands/UpdateAccessGrantsLocationCommand.d.ts +90 -0
  104. package/dist-types/commands/UpdateJobPriorityCommand.d.ts +1 -1
  105. package/dist-types/commands/UpdateJobStatusCommand.d.ts +1 -1
  106. package/dist-types/commands/UpdateStorageLensGroupCommand.d.ts +6 -5
  107. package/dist-types/commands/index.d.ts +20 -0
  108. package/dist-types/models/index.d.ts +1 -0
  109. package/dist-types/models/models_0.d.ts +1246 -854
  110. package/dist-types/models/models_1.d.ts +775 -0
  111. package/dist-types/pagination/ListAccessGrantsInstancesPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListAccessGrantsLocationsPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListAccessGrantsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/index.d.ts +3 -0
  115. package/dist-types/protocols/Aws_restXml.d.ts +180 -0
  116. package/dist-types/ts3.4/S3Control.d.ts +370 -0
  117. package/dist-types/ts3.4/S3ControlClient.d.ts +120 -0
  118. package/dist-types/ts3.4/commands/AssociateAccessGrantsIdentityCenterCommand.d.ts +38 -0
  119. package/dist-types/ts3.4/commands/CreateAccessGrantCommand.d.ts +39 -0
  120. package/dist-types/ts3.4/commands/CreateAccessGrantsInstanceCommand.d.ts +42 -0
  121. package/dist-types/ts3.4/commands/CreateAccessGrantsLocationCommand.d.ts +42 -0
  122. package/dist-types/ts3.4/commands/DeleteAccessGrantCommand.d.ts +34 -0
  123. package/dist-types/ts3.4/commands/DeleteAccessGrantsInstanceCommand.d.ts +38 -0
  124. package/dist-types/ts3.4/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.d.ts +38 -0
  125. package/dist-types/ts3.4/commands/DeleteAccessGrantsLocationCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/DissociateAccessGrantsIdentityCenterCommand.d.ts +38 -0
  127. package/dist-types/ts3.4/commands/GetAccessGrantCommand.d.ts +38 -0
  128. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceCommand.d.ts +42 -0
  129. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceForPrefixCommand.d.ts +42 -0
  130. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceResourcePolicyCommand.d.ts +42 -0
  131. package/dist-types/ts3.4/commands/GetAccessGrantsLocationCommand.d.ts +42 -0
  132. package/dist-types/ts3.4/commands/GetDataAccessCommand.d.ts +35 -0
  133. package/dist-types/ts3.4/commands/ListAccessGrantsCommand.d.ts +38 -0
  134. package/dist-types/ts3.4/commands/ListAccessGrantsInstancesCommand.d.ts +42 -0
  135. package/dist-types/ts3.4/commands/ListAccessGrantsLocationsCommand.d.ts +42 -0
  136. package/dist-types/ts3.4/commands/ListStorageLensGroupsCommand.d.ts +2 -4
  137. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/PutAccessGrantsInstanceResourcePolicyCommand.d.ts +42 -0
  139. package/dist-types/ts3.4/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/PutAccessPointPolicyCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +1 -1
  142. package/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  143. package/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +1 -1
  144. package/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +1 -1
  145. package/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +1 -1
  146. package/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +1 -1
  147. package/dist-types/ts3.4/commands/PutJobTaggingCommand.d.ts +1 -1
  148. package/dist-types/ts3.4/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +1 -1
  149. package/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  150. package/dist-types/ts3.4/commands/PutStorageLensConfigurationCommand.d.ts +1 -1
  151. package/dist-types/ts3.4/commands/PutStorageLensConfigurationTaggingCommand.d.ts +1 -1
  152. package/dist-types/ts3.4/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +1 -1
  153. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  154. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  155. package/dist-types/ts3.4/commands/UpdateAccessGrantsLocationCommand.d.ts +42 -0
  156. package/dist-types/ts3.4/commands/UpdateJobPriorityCommand.d.ts +1 -1
  157. package/dist-types/ts3.4/commands/UpdateJobStatusCommand.d.ts +1 -1
  158. package/dist-types/ts3.4/commands/UpdateStorageLensGroupCommand.d.ts +1 -1
  159. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  160. package/dist-types/ts3.4/models/index.d.ts +1 -0
  161. package/dist-types/ts3.4/models/models_0.d.ts +228 -170
  162. package/dist-types/ts3.4/models/models_1.d.ts +205 -0
  163. package/dist-types/ts3.4/pagination/ListAccessGrantsInstancesPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/ListAccessGrantsLocationsPaginator.d.ts +11 -0
  165. package/dist-types/ts3.4/pagination/ListAccessGrantsPaginator.d.ts +11 -0
  166. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  167. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +240 -0
  168. package/package.json +3 -3
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GetAccessGrantsInstanceRequest,
11
+ GetAccessGrantsInstanceResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetAccessGrantsInstanceCommandInput
20
+ extends GetAccessGrantsInstanceRequest {}
21
+ export interface GetAccessGrantsInstanceCommandOutput
22
+ extends GetAccessGrantsInstanceResult,
23
+ __MetadataBearer {}
24
+ export declare class GetAccessGrantsInstanceCommand extends $Command<
25
+ GetAccessGrantsInstanceCommandInput,
26
+ GetAccessGrantsInstanceCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: GetAccessGrantsInstanceCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetAccessGrantsInstanceCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetAccessGrantsInstanceCommandInput,
38
+ GetAccessGrantsInstanceCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GetAccessGrantsInstanceForPrefixRequest,
11
+ GetAccessGrantsInstanceForPrefixResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetAccessGrantsInstanceForPrefixCommandInput
20
+ extends GetAccessGrantsInstanceForPrefixRequest {}
21
+ export interface GetAccessGrantsInstanceForPrefixCommandOutput
22
+ extends GetAccessGrantsInstanceForPrefixResult,
23
+ __MetadataBearer {}
24
+ export declare class GetAccessGrantsInstanceForPrefixCommand extends $Command<
25
+ GetAccessGrantsInstanceForPrefixCommandInput,
26
+ GetAccessGrantsInstanceForPrefixCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: GetAccessGrantsInstanceForPrefixCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetAccessGrantsInstanceForPrefixCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetAccessGrantsInstanceForPrefixCommandInput,
38
+ GetAccessGrantsInstanceForPrefixCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GetAccessGrantsInstanceResourcePolicyRequest,
11
+ GetAccessGrantsInstanceResourcePolicyResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetAccessGrantsInstanceResourcePolicyCommandInput
20
+ extends GetAccessGrantsInstanceResourcePolicyRequest {}
21
+ export interface GetAccessGrantsInstanceResourcePolicyCommandOutput
22
+ extends GetAccessGrantsInstanceResourcePolicyResult,
23
+ __MetadataBearer {}
24
+ export declare class GetAccessGrantsInstanceResourcePolicyCommand extends $Command<
25
+ GetAccessGrantsInstanceResourcePolicyCommandInput,
26
+ GetAccessGrantsInstanceResourcePolicyCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: GetAccessGrantsInstanceResourcePolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetAccessGrantsInstanceResourcePolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetAccessGrantsInstanceResourcePolicyCommandInput,
38
+ GetAccessGrantsInstanceResourcePolicyCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ GetAccessGrantsLocationRequest,
11
+ GetAccessGrantsLocationResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetAccessGrantsLocationCommandInput
20
+ extends GetAccessGrantsLocationRequest {}
21
+ export interface GetAccessGrantsLocationCommandOutput
22
+ extends GetAccessGrantsLocationResult,
23
+ __MetadataBearer {}
24
+ export declare class GetAccessGrantsLocationCommand extends $Command<
25
+ GetAccessGrantsLocationCommandInput,
26
+ GetAccessGrantsLocationCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: GetAccessGrantsLocationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetAccessGrantsLocationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetAccessGrantsLocationCommandInput,
38
+ GetAccessGrantsLocationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { GetDataAccessRequest, GetDataAccessResult } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface GetDataAccessCommandInput extends GetDataAccessRequest {}
17
+ export interface GetDataAccessCommandOutput
18
+ extends GetDataAccessResult,
19
+ __MetadataBearer {}
20
+ export declare class GetDataAccessCommand extends $Command<
21
+ GetDataAccessCommandInput,
22
+ GetDataAccessCommandOutput,
23
+ S3ControlClientResolvedConfig
24
+ > {
25
+ readonly input: GetDataAccessCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: GetDataAccessCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: S3ControlClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetDataAccessCommandInput, GetDataAccessCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ListAccessGrantsRequest,
11
+ ListAccessGrantsResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListAccessGrantsCommandInput extends ListAccessGrantsRequest {}
20
+ export interface ListAccessGrantsCommandOutput
21
+ extends ListAccessGrantsResult,
22
+ __MetadataBearer {}
23
+ export declare class ListAccessGrantsCommand extends $Command<
24
+ ListAccessGrantsCommandInput,
25
+ ListAccessGrantsCommandOutput,
26
+ S3ControlClientResolvedConfig
27
+ > {
28
+ readonly input: ListAccessGrantsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListAccessGrantsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: S3ControlClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListAccessGrantsCommandInput, ListAccessGrantsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ListAccessGrantsInstancesRequest,
11
+ ListAccessGrantsInstancesResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListAccessGrantsInstancesCommandInput
20
+ extends ListAccessGrantsInstancesRequest {}
21
+ export interface ListAccessGrantsInstancesCommandOutput
22
+ extends ListAccessGrantsInstancesResult,
23
+ __MetadataBearer {}
24
+ export declare class ListAccessGrantsInstancesCommand extends $Command<
25
+ ListAccessGrantsInstancesCommandInput,
26
+ ListAccessGrantsInstancesCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: ListAccessGrantsInstancesCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListAccessGrantsInstancesCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListAccessGrantsInstancesCommandInput,
38
+ ListAccessGrantsInstancesCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ListAccessGrantsLocationsRequest,
11
+ ListAccessGrantsLocationsResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListAccessGrantsLocationsCommandInput
20
+ extends ListAccessGrantsLocationsRequest {}
21
+ export interface ListAccessGrantsLocationsCommandOutput
22
+ extends ListAccessGrantsLocationsResult,
23
+ __MetadataBearer {}
24
+ export declare class ListAccessGrantsLocationsCommand extends $Command<
25
+ ListAccessGrantsLocationsCommandInput,
26
+ ListAccessGrantsLocationsCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: ListAccessGrantsLocationsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListAccessGrantsLocationsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListAccessGrantsLocationsCommandInput,
38
+ ListAccessGrantsLocationsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -6,10 +6,8 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import {
10
- ListStorageLensGroupsRequest,
11
- ListStorageLensGroupsResult,
12
- } from "../models/models_0";
9
+ import { ListStorageLensGroupsRequest } from "../models/models_0";
10
+ import { ListStorageLensGroupsResult } from "../models/models_1";
13
11
  import {
14
12
  S3ControlClientResolvedConfig,
15
13
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListTagsForResourceRequest,
11
11
  ListTagsForResourceResult,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  S3ControlClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ PutAccessGrantsInstanceResourcePolicyRequest,
11
+ PutAccessGrantsInstanceResourcePolicyResult,
12
+ } from "../models/models_1";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface PutAccessGrantsInstanceResourcePolicyCommandInput
20
+ extends PutAccessGrantsInstanceResourcePolicyRequest {}
21
+ export interface PutAccessGrantsInstanceResourcePolicyCommandOutput
22
+ extends PutAccessGrantsInstanceResourcePolicyResult,
23
+ __MetadataBearer {}
24
+ export declare class PutAccessGrantsInstanceResourcePolicyCommand extends $Command<
25
+ PutAccessGrantsInstanceResourcePolicyCommandInput,
26
+ PutAccessGrantsInstanceResourcePolicyCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: PutAccessGrantsInstanceResourcePolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: PutAccessGrantsInstanceResourcePolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ PutAccessGrantsInstanceResourcePolicyCommandInput,
38
+ PutAccessGrantsInstanceResourcePolicyCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutAccessPointConfigurationForObjectLambdaRequest } from "../models/models_0";
9
+ import { PutAccessPointConfigurationForObjectLambdaRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutAccessPointPolicyRequest } from "../models/models_0";
9
+ import { PutAccessPointPolicyRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutAccessPointPolicyForObjectLambdaRequest } from "../models/models_0";
9
+ import { PutAccessPointPolicyForObjectLambdaRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutBucketLifecycleConfigurationRequest } from "../models/models_0";
9
+ import { PutBucketLifecycleConfigurationRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutBucketPolicyRequest } from "../models/models_0";
9
+ import { PutBucketPolicyRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutBucketReplicationRequest } from "../models/models_0";
9
+ import { PutBucketReplicationRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutBucketTaggingRequest } from "../models/models_0";
9
+ import { PutBucketTaggingRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutBucketVersioningRequest } from "../models/models_0";
9
+ import { PutBucketVersioningRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutJobTaggingRequest, PutJobTaggingResult } from "../models/models_0";
9
+ import { PutJobTaggingRequest, PutJobTaggingResult } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  PutMultiRegionAccessPointPolicyRequest,
11
11
  PutMultiRegionAccessPointPolicyResult,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  S3ControlClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutPublicAccessBlockRequest } from "../models/models_0";
9
+ import { PutPublicAccessBlockRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { PutStorageLensConfigurationRequest } from "../models/models_0";
9
+ import { PutStorageLensConfigurationRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  PutStorageLensConfigurationTaggingRequest,
11
11
  PutStorageLensConfigurationTaggingResult,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  S3ControlClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  SubmitMultiRegionAccessPointRoutesRequest,
11
11
  SubmitMultiRegionAccessPointRoutesResult,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  S3ControlClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { TagResourceRequest, TagResourceResult } from "../models/models_0";
9
+ import { TagResourceRequest, TagResourceResult } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { UntagResourceRequest, UntagResourceResult } from "../models/models_0";
9
+ import { UntagResourceRequest, UntagResourceResult } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ UpdateAccessGrantsLocationRequest,
11
+ UpdateAccessGrantsLocationResult,
12
+ } from "../models/models_1";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateAccessGrantsLocationCommandInput
20
+ extends UpdateAccessGrantsLocationRequest {}
21
+ export interface UpdateAccessGrantsLocationCommandOutput
22
+ extends UpdateAccessGrantsLocationResult,
23
+ __MetadataBearer {}
24
+ export declare class UpdateAccessGrantsLocationCommand extends $Command<
25
+ UpdateAccessGrantsLocationCommandInput,
26
+ UpdateAccessGrantsLocationCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateAccessGrantsLocationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateAccessGrantsLocationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateAccessGrantsLocationCommandInput,
38
+ UpdateAccessGrantsLocationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateJobPriorityRequest,
11
11
  UpdateJobPriorityResult,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  S3ControlClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateJobStatusRequest,
11
11
  UpdateJobStatusResult,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  S3ControlClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { UpdateStorageLensGroupRequest } from "../models/models_0";
9
+ import { UpdateStorageLensGroupRequest } from "../models/models_1";
10
10
  import {
11
11
  S3ControlClientResolvedConfig,
12
12
  ServiceInputTypes,