@aws-sdk/client-datazone 3.931.0 → 3.933.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 +120 -47
- package/dist-es/models/models_0.js +10 -25
- package/dist-es/models/models_1.js +19 -0
- package/dist-es/schemas/schemas_0.js +109 -40
- package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +36 -0
- package/dist-types/commands/CancelSubscriptionCommand.d.ts +23 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +2 -1
- package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +6 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +50 -0
- package/dist-types/commands/DeleteSubscriptionGrantCommand.d.ts +6 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +23 -0
- package/dist-types/commands/GetSubscriptionGrantCommand.d.ts +6 -0
- package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +23 -0
- package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +10 -1
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +26 -1
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +26 -2
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +23 -0
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +23 -0
- package/dist-types/commands/UpdateSubscriptionGrantStatusCommand.d.ts +6 -0
- package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +23 -0
- package/dist-types/models/models_0.d.ts +224 -234
- package/dist-types/models/models_1.d.ts +320 -379
- package/dist-types/models/models_2.d.ts +325 -3
- package/dist-types/schemas/schemas_0.d.ts +9 -1
- package/dist-types/ts3.4/commands/CreateProjectCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListSubscriptionGrantsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +96 -87
- package/dist-types/ts3.4/models/models_1.d.ts +121 -106
- package/dist-types/ts3.4/models/models_2.d.ts +76 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -1
- package/package.json +6 -6
|
@@ -55,6 +55,24 @@ declare const GetSubscriptionCommand_base: {
|
|
|
55
55
|
* // id: "STRING_VALUE",
|
|
56
56
|
* // name: "STRING_VALUE",
|
|
57
57
|
* // },
|
|
58
|
+
* // user: { // SubscribedUser
|
|
59
|
+
* // id: "STRING_VALUE",
|
|
60
|
+
* // details: { // UserProfileDetails Union: only one key present
|
|
61
|
+
* // iam: { // IamUserProfileDetails
|
|
62
|
+
* // arn: "STRING_VALUE",
|
|
63
|
+
* // principalId: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // sso: { // SsoUserProfileDetails
|
|
66
|
+
* // username: "STRING_VALUE",
|
|
67
|
+
* // firstName: "STRING_VALUE",
|
|
68
|
+
* // lastName: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // group: { // SubscribedGroup
|
|
73
|
+
* // id: "STRING_VALUE",
|
|
74
|
+
* // name: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
58
76
|
* // },
|
|
59
77
|
* // subscribedListing: { // SubscribedListing
|
|
60
78
|
* // id: "STRING_VALUE", // required
|
|
@@ -81,6 +99,11 @@ declare const GetSubscriptionCommand_base: {
|
|
|
81
99
|
* // status: "STRING_VALUE", // required
|
|
82
100
|
* // errorMessage: "STRING_VALUE",
|
|
83
101
|
* // },
|
|
102
|
+
* // permissions: { // Permissions Union: only one key present
|
|
103
|
+
* // s3: [ // S3Permissions
|
|
104
|
+
* // "READ" || "WRITE",
|
|
105
|
+
* // ],
|
|
106
|
+
* // },
|
|
84
107
|
* // },
|
|
85
108
|
* // productListing: { // SubscribedProductListing
|
|
86
109
|
* // entityId: "STRING_VALUE",
|
|
@@ -49,6 +49,7 @@ declare const GetSubscriptionGrantCommand_base: {
|
|
|
49
49
|
* // domainId: "STRING_VALUE", // required
|
|
50
50
|
* // createdAt: new Date("TIMESTAMP"), // required
|
|
51
51
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // environmentId: "STRING_VALUE",
|
|
52
53
|
* // subscriptionTargetId: "STRING_VALUE", // required
|
|
53
54
|
* // grantedEntity: { // GrantedEntity Union: only one key present
|
|
54
55
|
* // listing: { // ListingRevision
|
|
@@ -76,6 +77,11 @@ declare const GetSubscriptionGrantCommand_base: {
|
|
|
76
77
|
* // status: "STRING_VALUE", // required
|
|
77
78
|
* // errorMessage: "STRING_VALUE",
|
|
78
79
|
* // },
|
|
80
|
+
* // permissions: { // Permissions Union: only one key present
|
|
81
|
+
* // s3: [ // S3Permissions
|
|
82
|
+
* // "READ" || "WRITE",
|
|
83
|
+
* // ],
|
|
84
|
+
* // },
|
|
79
85
|
* // },
|
|
80
86
|
* // ],
|
|
81
87
|
* // subscriptionId: "STRING_VALUE",
|
|
@@ -57,6 +57,24 @@ declare const GetSubscriptionRequestDetailsCommand_base: {
|
|
|
57
57
|
* // id: "STRING_VALUE",
|
|
58
58
|
* // name: "STRING_VALUE",
|
|
59
59
|
* // },
|
|
60
|
+
* // user: { // SubscribedUser
|
|
61
|
+
* // id: "STRING_VALUE",
|
|
62
|
+
* // details: { // UserProfileDetails Union: only one key present
|
|
63
|
+
* // iam: { // IamUserProfileDetails
|
|
64
|
+
* // arn: "STRING_VALUE",
|
|
65
|
+
* // principalId: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // sso: { // SsoUserProfileDetails
|
|
68
|
+
* // username: "STRING_VALUE",
|
|
69
|
+
* // firstName: "STRING_VALUE",
|
|
70
|
+
* // lastName: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // group: { // SubscribedGroup
|
|
75
|
+
* // id: "STRING_VALUE",
|
|
76
|
+
* // name: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
60
78
|
* // },
|
|
61
79
|
* // ],
|
|
62
80
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -85,6 +103,11 @@ declare const GetSubscriptionRequestDetailsCommand_base: {
|
|
|
85
103
|
* // status: "STRING_VALUE", // required
|
|
86
104
|
* // errorMessage: "STRING_VALUE",
|
|
87
105
|
* // },
|
|
106
|
+
* // permissions: { // Permissions Union: only one key present
|
|
107
|
+
* // s3: [ // S3Permissions
|
|
108
|
+
* // "READ" || "WRITE",
|
|
109
|
+
* // ],
|
|
110
|
+
* // },
|
|
88
111
|
* // },
|
|
89
112
|
* // productListing: { // SubscribedProductListing
|
|
90
113
|
* // entityId: "STRING_VALUE",
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { ListSubscriptionGrantsInput
|
|
4
|
+
import { ListSubscriptionGrantsInput } from "../models/models_1";
|
|
5
|
+
import { ListSubscriptionGrantsOutput } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -43,6 +44,8 @@ declare const ListSubscriptionGrantsCommand_base: {
|
|
|
43
44
|
* subscribedListingId: "STRING_VALUE",
|
|
44
45
|
* subscriptionId: "STRING_VALUE",
|
|
45
46
|
* owningProjectId: "STRING_VALUE",
|
|
47
|
+
* owningUserId: "STRING_VALUE",
|
|
48
|
+
* owningGroupId: "STRING_VALUE",
|
|
46
49
|
* sortBy: "CREATED_AT" || "UPDATED_AT",
|
|
47
50
|
* sortOrder: "ASCENDING" || "DESCENDING",
|
|
48
51
|
* maxResults: Number("int"),
|
|
@@ -59,6 +62,7 @@ declare const ListSubscriptionGrantsCommand_base: {
|
|
|
59
62
|
* // domainId: "STRING_VALUE", // required
|
|
60
63
|
* // createdAt: new Date("TIMESTAMP"), // required
|
|
61
64
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
65
|
+
* // environmentId: "STRING_VALUE",
|
|
62
66
|
* // subscriptionTargetId: "STRING_VALUE", // required
|
|
63
67
|
* // grantedEntity: { // GrantedEntity Union: only one key present
|
|
64
68
|
* // listing: { // ListingRevision
|
|
@@ -86,6 +90,11 @@ declare const ListSubscriptionGrantsCommand_base: {
|
|
|
86
90
|
* // status: "STRING_VALUE", // required
|
|
87
91
|
* // errorMessage: "STRING_VALUE",
|
|
88
92
|
* // },
|
|
93
|
+
* // permissions: { // Permissions Union: only one key present
|
|
94
|
+
* // s3: [ // S3Permissions
|
|
95
|
+
* // "READ" || "WRITE",
|
|
96
|
+
* // ],
|
|
97
|
+
* // },
|
|
89
98
|
* // },
|
|
90
99
|
* // ],
|
|
91
100
|
* // subscriptionId: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { ListSubscriptionRequestsInput, ListSubscriptionRequestsOutput } from "../models/
|
|
4
|
+
import { ListSubscriptionRequestsInput, ListSubscriptionRequestsOutput } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -42,6 +42,8 @@ declare const ListSubscriptionRequestsCommand_base: {
|
|
|
42
42
|
* subscribedListingId: "STRING_VALUE",
|
|
43
43
|
* owningProjectId: "STRING_VALUE",
|
|
44
44
|
* approverProjectId: "STRING_VALUE",
|
|
45
|
+
* owningUserId: "STRING_VALUE",
|
|
46
|
+
* owningGroupId: "STRING_VALUE",
|
|
45
47
|
* sortBy: "CREATED_AT" || "UPDATED_AT",
|
|
46
48
|
* sortOrder: "ASCENDING" || "DESCENDING",
|
|
47
49
|
* maxResults: Number("int"),
|
|
@@ -66,6 +68,24 @@ declare const ListSubscriptionRequestsCommand_base: {
|
|
|
66
68
|
* // id: "STRING_VALUE",
|
|
67
69
|
* // name: "STRING_VALUE",
|
|
68
70
|
* // },
|
|
71
|
+
* // user: { // SubscribedUser
|
|
72
|
+
* // id: "STRING_VALUE",
|
|
73
|
+
* // details: { // UserProfileDetails Union: only one key present
|
|
74
|
+
* // iam: { // IamUserProfileDetails
|
|
75
|
+
* // arn: "STRING_VALUE",
|
|
76
|
+
* // principalId: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // sso: { // SsoUserProfileDetails
|
|
79
|
+
* // username: "STRING_VALUE",
|
|
80
|
+
* // firstName: "STRING_VALUE",
|
|
81
|
+
* // lastName: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // },
|
|
84
|
+
* // },
|
|
85
|
+
* // group: { // SubscribedGroup
|
|
86
|
+
* // id: "STRING_VALUE",
|
|
87
|
+
* // name: "STRING_VALUE",
|
|
88
|
+
* // },
|
|
69
89
|
* // },
|
|
70
90
|
* // ],
|
|
71
91
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -94,6 +114,11 @@ declare const ListSubscriptionRequestsCommand_base: {
|
|
|
94
114
|
* // status: "STRING_VALUE", // required
|
|
95
115
|
* // errorMessage: "STRING_VALUE",
|
|
96
116
|
* // },
|
|
117
|
+
* // permissions: { // Permissions Union: only one key present
|
|
118
|
+
* // s3: [ // S3Permissions
|
|
119
|
+
* // "READ" || "WRITE",
|
|
120
|
+
* // ],
|
|
121
|
+
* // },
|
|
97
122
|
* // },
|
|
98
123
|
* // productListing: { // SubscribedProductListing
|
|
99
124
|
* // entityId: "STRING_VALUE",
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { ListSubscriptionsInput } from "../models/
|
|
5
|
-
import { ListSubscriptionsOutput } from "../models/models_2";
|
|
4
|
+
import { ListSubscriptionsInput, ListSubscriptionsOutput } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -43,6 +42,8 @@ declare const ListSubscriptionsCommand_base: {
|
|
|
43
42
|
* status: "APPROVED" || "REVOKED" || "CANCELLED",
|
|
44
43
|
* subscribedListingId: "STRING_VALUE",
|
|
45
44
|
* owningProjectId: "STRING_VALUE",
|
|
45
|
+
* owningUserId: "STRING_VALUE",
|
|
46
|
+
* owningGroupId: "STRING_VALUE",
|
|
46
47
|
* approverProjectId: "STRING_VALUE",
|
|
47
48
|
* sortBy: "CREATED_AT" || "UPDATED_AT",
|
|
48
49
|
* sortOrder: "ASCENDING" || "DESCENDING",
|
|
@@ -66,6 +67,24 @@ declare const ListSubscriptionsCommand_base: {
|
|
|
66
67
|
* // id: "STRING_VALUE",
|
|
67
68
|
* // name: "STRING_VALUE",
|
|
68
69
|
* // },
|
|
70
|
+
* // user: { // SubscribedUser
|
|
71
|
+
* // id: "STRING_VALUE",
|
|
72
|
+
* // details: { // UserProfileDetails Union: only one key present
|
|
73
|
+
* // iam: { // IamUserProfileDetails
|
|
74
|
+
* // arn: "STRING_VALUE",
|
|
75
|
+
* // principalId: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
77
|
+
* // sso: { // SsoUserProfileDetails
|
|
78
|
+
* // username: "STRING_VALUE",
|
|
79
|
+
* // firstName: "STRING_VALUE",
|
|
80
|
+
* // lastName: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // },
|
|
83
|
+
* // },
|
|
84
|
+
* // group: { // SubscribedGroup
|
|
85
|
+
* // id: "STRING_VALUE",
|
|
86
|
+
* // name: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
69
88
|
* // },
|
|
70
89
|
* // subscribedListing: { // SubscribedListing
|
|
71
90
|
* // id: "STRING_VALUE", // required
|
|
@@ -92,6 +111,11 @@ declare const ListSubscriptionsCommand_base: {
|
|
|
92
111
|
* // status: "STRING_VALUE", // required
|
|
93
112
|
* // errorMessage: "STRING_VALUE",
|
|
94
113
|
* // },
|
|
114
|
+
* // permissions: { // Permissions Union: only one key present
|
|
115
|
+
* // s3: [ // S3Permissions
|
|
116
|
+
* // "READ" || "WRITE",
|
|
117
|
+
* // ],
|
|
118
|
+
* // },
|
|
95
119
|
* // },
|
|
96
120
|
* // productListing: { // SubscribedProductListing
|
|
97
121
|
* // entityId: "STRING_VALUE",
|
|
@@ -58,6 +58,24 @@ declare const RejectSubscriptionRequestCommand_base: {
|
|
|
58
58
|
* // id: "STRING_VALUE",
|
|
59
59
|
* // name: "STRING_VALUE",
|
|
60
60
|
* // },
|
|
61
|
+
* // user: { // SubscribedUser
|
|
62
|
+
* // id: "STRING_VALUE",
|
|
63
|
+
* // details: { // UserProfileDetails Union: only one key present
|
|
64
|
+
* // iam: { // IamUserProfileDetails
|
|
65
|
+
* // arn: "STRING_VALUE",
|
|
66
|
+
* // principalId: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // sso: { // SsoUserProfileDetails
|
|
69
|
+
* // username: "STRING_VALUE",
|
|
70
|
+
* // firstName: "STRING_VALUE",
|
|
71
|
+
* // lastName: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // },
|
|
75
|
+
* // group: { // SubscribedGroup
|
|
76
|
+
* // id: "STRING_VALUE",
|
|
77
|
+
* // name: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
61
79
|
* // },
|
|
62
80
|
* // ],
|
|
63
81
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -86,6 +104,11 @@ declare const RejectSubscriptionRequestCommand_base: {
|
|
|
86
104
|
* // status: "STRING_VALUE", // required
|
|
87
105
|
* // errorMessage: "STRING_VALUE",
|
|
88
106
|
* // },
|
|
107
|
+
* // permissions: { // Permissions Union: only one key present
|
|
108
|
+
* // s3: [ // S3Permissions
|
|
109
|
+
* // "READ" || "WRITE",
|
|
110
|
+
* // ],
|
|
111
|
+
* // },
|
|
89
112
|
* // },
|
|
90
113
|
* // productListing: { // SubscribedProductListing
|
|
91
114
|
* // entityId: "STRING_VALUE",
|
|
@@ -56,6 +56,24 @@ declare const RevokeSubscriptionCommand_base: {
|
|
|
56
56
|
* // id: "STRING_VALUE",
|
|
57
57
|
* // name: "STRING_VALUE",
|
|
58
58
|
* // },
|
|
59
|
+
* // user: { // SubscribedUser
|
|
60
|
+
* // id: "STRING_VALUE",
|
|
61
|
+
* // details: { // UserProfileDetails Union: only one key present
|
|
62
|
+
* // iam: { // IamUserProfileDetails
|
|
63
|
+
* // arn: "STRING_VALUE",
|
|
64
|
+
* // principalId: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // sso: { // SsoUserProfileDetails
|
|
67
|
+
* // username: "STRING_VALUE",
|
|
68
|
+
* // firstName: "STRING_VALUE",
|
|
69
|
+
* // lastName: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // group: { // SubscribedGroup
|
|
74
|
+
* // id: "STRING_VALUE",
|
|
75
|
+
* // name: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
59
77
|
* // },
|
|
60
78
|
* // subscribedListing: { // SubscribedListing
|
|
61
79
|
* // id: "STRING_VALUE", // required
|
|
@@ -82,6 +100,11 @@ declare const RevokeSubscriptionCommand_base: {
|
|
|
82
100
|
* // status: "STRING_VALUE", // required
|
|
83
101
|
* // errorMessage: "STRING_VALUE",
|
|
84
102
|
* // },
|
|
103
|
+
* // permissions: { // Permissions Union: only one key present
|
|
104
|
+
* // s3: [ // S3Permissions
|
|
105
|
+
* // "READ" || "WRITE",
|
|
106
|
+
* // ],
|
|
107
|
+
* // },
|
|
85
108
|
* // },
|
|
86
109
|
* // productListing: { // SubscribedProductListing
|
|
87
110
|
* // entityId: "STRING_VALUE",
|
|
@@ -55,6 +55,7 @@ declare const UpdateSubscriptionGrantStatusCommand_base: {
|
|
|
55
55
|
* // domainId: "STRING_VALUE", // required
|
|
56
56
|
* // createdAt: new Date("TIMESTAMP"), // required
|
|
57
57
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // environmentId: "STRING_VALUE",
|
|
58
59
|
* // subscriptionTargetId: "STRING_VALUE", // required
|
|
59
60
|
* // grantedEntity: { // GrantedEntity Union: only one key present
|
|
60
61
|
* // listing: { // ListingRevision
|
|
@@ -82,6 +83,11 @@ declare const UpdateSubscriptionGrantStatusCommand_base: {
|
|
|
82
83
|
* // status: "STRING_VALUE", // required
|
|
83
84
|
* // errorMessage: "STRING_VALUE",
|
|
84
85
|
* // },
|
|
86
|
+
* // permissions: { // Permissions Union: only one key present
|
|
87
|
+
* // s3: [ // S3Permissions
|
|
88
|
+
* // "READ" || "WRITE",
|
|
89
|
+
* // ],
|
|
90
|
+
* // },
|
|
85
91
|
* // },
|
|
86
92
|
* // ],
|
|
87
93
|
* // subscriptionId: "STRING_VALUE",
|
|
@@ -58,6 +58,24 @@ declare const UpdateSubscriptionRequestCommand_base: {
|
|
|
58
58
|
* // id: "STRING_VALUE",
|
|
59
59
|
* // name: "STRING_VALUE",
|
|
60
60
|
* // },
|
|
61
|
+
* // user: { // SubscribedUser
|
|
62
|
+
* // id: "STRING_VALUE",
|
|
63
|
+
* // details: { // UserProfileDetails Union: only one key present
|
|
64
|
+
* // iam: { // IamUserProfileDetails
|
|
65
|
+
* // arn: "STRING_VALUE",
|
|
66
|
+
* // principalId: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // sso: { // SsoUserProfileDetails
|
|
69
|
+
* // username: "STRING_VALUE",
|
|
70
|
+
* // firstName: "STRING_VALUE",
|
|
71
|
+
* // lastName: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // },
|
|
75
|
+
* // group: { // SubscribedGroup
|
|
76
|
+
* // id: "STRING_VALUE",
|
|
77
|
+
* // name: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
61
79
|
* // },
|
|
62
80
|
* // ],
|
|
63
81
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -86,6 +104,11 @@ declare const UpdateSubscriptionRequestCommand_base: {
|
|
|
86
104
|
* // status: "STRING_VALUE", // required
|
|
87
105
|
* // errorMessage: "STRING_VALUE",
|
|
88
106
|
* // },
|
|
107
|
+
* // permissions: { // Permissions Union: only one key present
|
|
108
|
+
* // s3: [ // S3Permissions
|
|
109
|
+
* // "READ" || "WRITE",
|
|
110
|
+
* // ],
|
|
111
|
+
* // },
|
|
89
112
|
* // },
|
|
90
113
|
* // productListing: { // SubscribedProductListing
|
|
91
114
|
* // entityId: "STRING_VALUE",
|