@aws-sdk/client-ram 3.952.0 → 3.954.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 +538 -387
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AcceptResourceShareInvitationCommand.js +2 -2
- package/dist-es/commands/AssociateResourceShareCommand.js +2 -2
- package/dist-es/commands/AssociateResourceSharePermissionCommand.js +2 -2
- package/dist-es/commands/CreatePermissionCommand.js +2 -2
- package/dist-es/commands/CreatePermissionVersionCommand.js +2 -2
- package/dist-es/commands/CreateResourceShareCommand.js +2 -2
- package/dist-es/commands/DeletePermissionCommand.js +2 -2
- package/dist-es/commands/DeletePermissionVersionCommand.js +2 -2
- package/dist-es/commands/DeleteResourceShareCommand.js +2 -2
- package/dist-es/commands/DisassociateResourceShareCommand.js +2 -2
- package/dist-es/commands/DisassociateResourceSharePermissionCommand.js +2 -2
- package/dist-es/commands/EnableSharingWithAwsOrganizationCommand.js +2 -2
- package/dist-es/commands/GetPermissionCommand.js +2 -2
- package/dist-es/commands/GetResourcePoliciesCommand.js +2 -2
- package/dist-es/commands/GetResourceShareAssociationsCommand.js +2 -2
- package/dist-es/commands/GetResourceShareInvitationsCommand.js +2 -2
- package/dist-es/commands/GetResourceSharesCommand.js +2 -2
- package/dist-es/commands/ListPendingInvitationResourcesCommand.js +2 -2
- package/dist-es/commands/ListPermissionAssociationsCommand.js +2 -2
- package/dist-es/commands/ListPermissionVersionsCommand.js +2 -2
- package/dist-es/commands/ListPermissionsCommand.js +2 -2
- package/dist-es/commands/ListPrincipalsCommand.js +2 -2
- package/dist-es/commands/ListReplacePermissionAssociationsWorkCommand.js +2 -2
- package/dist-es/commands/ListResourceSharePermissionsCommand.js +2 -2
- package/dist-es/commands/ListResourceTypesCommand.js +2 -2
- package/dist-es/commands/ListResourcesCommand.js +2 -2
- package/dist-es/commands/PromotePermissionCreatedFromPolicyCommand.js +2 -2
- package/dist-es/commands/PromoteResourceShareCreatedFromPolicyCommand.js +2 -2
- package/dist-es/commands/RejectResourceShareInvitationCommand.js +2 -2
- package/dist-es/commands/ReplacePermissionAssociationsCommand.js +2 -2
- package/dist-es/commands/SetDefaultPermissionVersionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateResourceShareCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +292 -284
- package/dist-types/RAMClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +144 -165
- package/dist-types/ts3.4/RAMClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +143 -165
- package/package.json +34 -34
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.ram",
|
|
29
|
+
version: "2018-01-04",
|
|
30
|
+
serviceTarget: "AmazonResourceSharing",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "RAM",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|