@aws-sdk/client-ram 3.296.0 → 3.297.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 (42) hide show
  1. package/dist-types/RAM.d.ts +26 -0
  2. package/dist-types/RAMClient.d.ts +24 -4
  3. package/dist-types/commands/AcceptResourceShareInvitationCommand.d.ts +16 -0
  4. package/dist-types/commands/AssociateResourceShareCommand.d.ts +16 -0
  5. package/dist-types/commands/AssociateResourceSharePermissionCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateResourceShareCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteResourceShareCommand.d.ts +16 -0
  8. package/dist-types/commands/DisassociateResourceShareCommand.d.ts +16 -0
  9. package/dist-types/commands/DisassociateResourceSharePermissionCommand.d.ts +16 -0
  10. package/dist-types/commands/EnableSharingWithAwsOrganizationCommand.d.ts +16 -0
  11. package/dist-types/commands/GetPermissionCommand.d.ts +16 -0
  12. package/dist-types/commands/GetResourcePoliciesCommand.d.ts +16 -0
  13. package/dist-types/commands/GetResourceShareAssociationsCommand.d.ts +16 -0
  14. package/dist-types/commands/GetResourceShareInvitationsCommand.d.ts +16 -0
  15. package/dist-types/commands/GetResourceSharesCommand.d.ts +16 -0
  16. package/dist-types/commands/ListPendingInvitationResourcesCommand.d.ts +16 -0
  17. package/dist-types/commands/ListPermissionVersionsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListPermissionsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListPrincipalsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListResourceSharePermissionsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListResourceTypesCommand.d.ts +16 -0
  22. package/dist-types/commands/ListResourcesCommand.d.ts +16 -0
  23. package/dist-types/commands/PromoteResourceShareCreatedFromPolicyCommand.d.ts +16 -0
  24. package/dist-types/commands/RejectResourceShareInvitationCommand.d.ts +16 -0
  25. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  26. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateResourceShareCommand.d.ts +16 -0
  28. package/dist-types/models/RAMServiceException.d.ts +2 -0
  29. package/dist-types/models/models_0.d.ts +209 -0
  30. package/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +3 -0
  31. package/dist-types/pagination/GetResourceShareAssociationsPaginator.d.ts +3 -0
  32. package/dist-types/pagination/GetResourceShareInvitationsPaginator.d.ts +3 -0
  33. package/dist-types/pagination/GetResourceSharesPaginator.d.ts +3 -0
  34. package/dist-types/pagination/Interfaces.d.ts +3 -0
  35. package/dist-types/pagination/ListPendingInvitationResourcesPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListPermissionVersionsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListPermissionsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListPrincipalsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListResourceSharePermissionsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListResourceTypesPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListResourcesPaginator.d.ts +3 -0
  42. package/package.json +3 -3
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput } from "../commands/GetResourcePoliciesCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetResourcePolicies(config: RAMPaginationConfiguration, input: GetResourcePoliciesCommandInput, ...additionalArguments: any): Paginator<GetResourcePoliciesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetResourceShareAssociationsCommandInput, GetResourceShareAssociationsCommandOutput } from "../commands/GetResourceShareAssociationsCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetResourceShareAssociations(config: RAMPaginationConfiguration, input: GetResourceShareAssociationsCommandInput, ...additionalArguments: any): Paginator<GetResourceShareAssociationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetResourceShareInvitationsCommandInput, GetResourceShareInvitationsCommandOutput } from "../commands/GetResourceShareInvitationsCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetResourceShareInvitations(config: RAMPaginationConfiguration, input: GetResourceShareInvitationsCommandInput, ...additionalArguments: any): Paginator<GetResourceShareInvitationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetResourceSharesCommandInput, GetResourceSharesCommandOutput } from "../commands/GetResourceSharesCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetResourceShares(config: RAMPaginationConfiguration, input: GetResourceSharesCommandInput, ...additionalArguments: any): Paginator<GetResourceSharesCommandOutput>;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { RAMClient } from "../RAMClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface RAMPaginationConfiguration extends PaginationConfiguration {
4
7
  client: RAMClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListPendingInvitationResourcesCommandInput, ListPendingInvitationResourcesCommandOutput } from "../commands/ListPendingInvitationResourcesCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListPendingInvitationResources(config: RAMPaginationConfiguration, input: ListPendingInvitationResourcesCommandInput, ...additionalArguments: any): Paginator<ListPendingInvitationResourcesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListPermissionVersionsCommandInput, ListPermissionVersionsCommandOutput } from "../commands/ListPermissionVersionsCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListPermissionVersions(config: RAMPaginationConfiguration, input: ListPermissionVersionsCommandInput, ...additionalArguments: any): Paginator<ListPermissionVersionsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListPermissionsCommandInput, ListPermissionsCommandOutput } from "../commands/ListPermissionsCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListPermissions(config: RAMPaginationConfiguration, input: ListPermissionsCommandInput, ...additionalArguments: any): Paginator<ListPermissionsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListPrincipalsCommandInput, ListPrincipalsCommandOutput } from "../commands/ListPrincipalsCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListPrincipals(config: RAMPaginationConfiguration, input: ListPrincipalsCommandInput, ...additionalArguments: any): Paginator<ListPrincipalsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListResourceSharePermissionsCommandInput, ListResourceSharePermissionsCommandOutput } from "../commands/ListResourceSharePermissionsCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListResourceSharePermissions(config: RAMPaginationConfiguration, input: ListResourceSharePermissionsCommandInput, ...additionalArguments: any): Paginator<ListResourceSharePermissionsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListResourceTypesCommandInput, ListResourceTypesCommandOutput } from "../commands/ListResourceTypesCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListResourceTypes(config: RAMPaginationConfiguration, input: ListResourceTypesCommandInput, ...additionalArguments: any): Paginator<ListResourceTypesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
3
3
  import { RAMPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListResources(config: RAMPaginationConfiguration, input: ListResourcesCommandInput, ...additionalArguments: any): Paginator<ListResourcesCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ram",
3
3
  "description": "AWS SDK for JavaScript Ram Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.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,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",