@aws-sdk/client-datazone 3.670.0 → 3.675.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 CHANGED
@@ -866,7 +866,8 @@ var GroupPolicyGrantPrincipal;
866
866
  })(GroupPolicyGrantPrincipal || (GroupPolicyGrantPrincipal = {}));
867
867
  var ProjectDesignation = {
868
868
  CONTRIBUTOR: "CONTRIBUTOR",
869
- OWNER: "OWNER"
869
+ OWNER: "OWNER",
870
+ PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD"
870
871
  };
871
872
  var ProjectGrantFilter;
872
873
  ((ProjectGrantFilter3) => {
@@ -1184,6 +1185,9 @@ var ProjectStatus = {
1184
1185
  DELETING: "DELETING"
1185
1186
  };
1186
1187
  var UserDesignation = {
1188
+ PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER",
1189
+ PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD",
1190
+ PROJECT_CATALOG_VIEWER: "PROJECT_CATALOG_VIEWER",
1187
1191
  PROJECT_CONTRIBUTOR: "PROJECT_CONTRIBUTOR",
1188
1192
  PROJECT_OWNER: "PROJECT_OWNER"
1189
1193
  };
@@ -214,6 +214,7 @@ export var GroupPolicyGrantPrincipal;
214
214
  export const ProjectDesignation = {
215
215
  CONTRIBUTOR: "CONTRIBUTOR",
216
216
  OWNER: "OWNER",
217
+ PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD",
217
218
  };
218
219
  export var ProjectGrantFilter;
219
220
  (function (ProjectGrantFilter) {
@@ -531,6 +532,9 @@ export const ProjectStatus = {
531
532
  DELETING: "DELETING",
532
533
  };
533
534
  export const UserDesignation = {
535
+ PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER",
536
+ PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD",
537
+ PROJECT_CATALOG_VIEWER: "PROJECT_CATALOG_VIEWER",
534
538
  PROJECT_CONTRIBUTOR: "PROJECT_CONTRIBUTOR",
535
539
  PROJECT_OWNER: "PROJECT_OWNER",
536
540
  };
@@ -49,7 +49,7 @@ declare const AddPolicyGrantCommand_base: {
49
49
  * groupIdentifier: "STRING_VALUE",
50
50
  * },
51
51
  * project: { // ProjectPolicyGrantPrincipal
52
- * projectDesignation: "OWNER" || "CONTRIBUTOR", // required
52
+ * projectDesignation: "OWNER" || "CONTRIBUTOR" || "PROJECT_CATALOG_STEWARD", // required
53
53
  * projectIdentifier: "STRING_VALUE",
54
54
  * projectGrantFilter: { // ProjectGrantFilter Union: only one key present
55
55
  * domainUnitFilter: { // DomainUnitFilterForProject
@@ -41,7 +41,7 @@ declare const CreateProjectMembershipCommand_base: {
41
41
  * userIdentifier: "STRING_VALUE",
42
42
  * groupIdentifier: "STRING_VALUE",
43
43
  * },
44
- * designation: "PROJECT_OWNER" || "PROJECT_CONTRIBUTOR", // required
44
+ * designation: "PROJECT_OWNER" || "PROJECT_CONTRIBUTOR" || "PROJECT_CATALOG_VIEWER" || "PROJECT_CATALOG_CONSUMER" || "PROJECT_CATALOG_STEWARD", // required
45
45
  * };
46
46
  * const command = new CreateProjectMembershipCommand(input);
47
47
  * const response = await client.send(command);
@@ -56,7 +56,7 @@ declare const ListPolicyGrantsCommand_base: {
56
56
  * // groupIdentifier: "STRING_VALUE",
57
57
  * // },
58
58
  * // project: { // ProjectPolicyGrantPrincipal
59
- * // projectDesignation: "OWNER" || "CONTRIBUTOR", // required
59
+ * // projectDesignation: "OWNER" || "CONTRIBUTOR" || "PROJECT_CATALOG_STEWARD", // required
60
60
  * // projectIdentifier: "STRING_VALUE",
61
61
  * // projectGrantFilter: { // ProjectGrantFilter Union: only one key present
62
62
  * // domainUnitFilter: { // DomainUnitFilterForProject
@@ -55,7 +55,7 @@ declare const ListProjectMembershipsCommand_base: {
55
55
  * // groupId: "STRING_VALUE", // required
56
56
  * // },
57
57
  * // },
58
- * // designation: "PROJECT_OWNER" || "PROJECT_CONTRIBUTOR", // required
58
+ * // designation: "PROJECT_OWNER" || "PROJECT_CONTRIBUTOR" || "PROJECT_CATALOG_VIEWER" || "PROJECT_CATALOG_CONSUMER" || "PROJECT_CATALOG_STEWARD", // required
59
59
  * // },
60
60
  * // ],
61
61
  * // nextToken: "STRING_VALUE",
@@ -48,7 +48,7 @@ declare const RemovePolicyGrantCommand_base: {
48
48
  * groupIdentifier: "STRING_VALUE",
49
49
  * },
50
50
  * project: { // ProjectPolicyGrantPrincipal
51
- * projectDesignation: "OWNER" || "CONTRIBUTOR", // required
51
+ * projectDesignation: "OWNER" || "CONTRIBUTOR" || "PROJECT_CATALOG_STEWARD", // required
52
52
  * projectIdentifier: "STRING_VALUE",
53
53
  * projectGrantFilter: { // ProjectGrantFilter Union: only one key present
54
54
  * domainUnitFilter: { // DomainUnitFilterForProject
@@ -1238,6 +1238,7 @@ export declare namespace GroupPolicyGrantPrincipal {
1238
1238
  export declare const ProjectDesignation: {
1239
1239
  readonly CONTRIBUTOR: "CONTRIBUTOR";
1240
1240
  readonly OWNER: "OWNER";
1241
+ readonly PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD";
1241
1242
  };
1242
1243
  /**
1243
1244
  * @public
@@ -5864,6 +5865,9 @@ export interface CreateProjectOutput {
5864
5865
  * @enum
5865
5866
  */
5866
5867
  export declare const UserDesignation: {
5868
+ readonly PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER";
5869
+ readonly PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD";
5870
+ readonly PROJECT_CATALOG_VIEWER: "PROJECT_CATALOG_VIEWER";
5867
5871
  readonly PROJECT_CONTRIBUTOR: "PROJECT_CONTRIBUTOR";
5868
5872
  readonly PROJECT_OWNER: "PROJECT_OWNER";
5869
5873
  };
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
- defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
20
20
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  region: string | import("@smithy/types").Provider<any>;
23
- defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
23
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
24
24
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
25
  maxAttempts: number | import("@smithy/types").Provider<number>;
26
26
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -575,6 +575,7 @@ export declare namespace GroupPolicyGrantPrincipal {
575
575
  export declare const ProjectDesignation: {
576
576
  readonly CONTRIBUTOR: "CONTRIBUTOR";
577
577
  readonly OWNER: "OWNER";
578
+ readonly PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD";
578
579
  };
579
580
  export type ProjectDesignation =
580
581
  (typeof ProjectDesignation)[keyof typeof ProjectDesignation];
@@ -2078,6 +2079,9 @@ export interface CreateProjectOutput {
2078
2079
  domainUnitId?: string;
2079
2080
  }
2080
2081
  export declare const UserDesignation: {
2082
+ readonly PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER";
2083
+ readonly PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD";
2084
+ readonly PROJECT_CATALOG_VIEWER: "PROJECT_CATALOG_VIEWER";
2081
2085
  readonly PROJECT_CONTRIBUTOR: "PROJECT_CONTRIBUTOR";
2082
2086
  readonly PROJECT_OWNER: "PROJECT_OWNER";
2083
2087
  };
@@ -10,7 +10,9 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
10
10
  input: any
11
11
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
12
12
  defaultUserAgentProvider: (
13
- config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
13
+ config?:
14
+ | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
15
+ | undefined
14
16
  ) => Promise<import("@smithy/types").UserAgent>;
15
17
  maxAttempts: number | import("@smithy/types").Provider<number>;
16
18
  region: string | import("@smithy/types").Provider<any>;
@@ -23,7 +23,9 @@ export declare const getRuntimeConfig: (config: DataZoneClientConfig) => {
23
23
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  region: string | import("@smithy/types").Provider<any>;
25
25
  defaultUserAgentProvider: (
26
- config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
26
+ config?:
27
+ | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
28
+ | undefined
27
29
  ) => Promise<import("@smithy/types").UserAgent>;
28
30
  credentialDefaultProvider: (
29
31
  input: any
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datazone",
3
3
  "description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
4
- "version": "3.670.0",
4
+ "version": "3.675.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-datazone",
@@ -20,10 +20,10 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.670.0",
24
- "@aws-sdk/client-sts": "3.670.0",
23
+ "@aws-sdk/client-sso-oidc": "3.675.0",
24
+ "@aws-sdk/client-sts": "3.675.0",
25
25
  "@aws-sdk/core": "3.667.0",
26
- "@aws-sdk/credential-provider-node": "3.670.0",
26
+ "@aws-sdk/credential-provider-node": "3.675.0",
27
27
  "@aws-sdk/middleware-host-header": "3.667.0",
28
28
  "@aws-sdk/middleware-logger": "3.667.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.667.0",
@@ -31,7 +31,7 @@
31
31
  "@aws-sdk/region-config-resolver": "3.667.0",
32
32
  "@aws-sdk/types": "3.667.0",
33
33
  "@aws-sdk/util-endpoints": "3.667.0",
34
- "@aws-sdk/util-user-agent-browser": "3.670.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.675.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.669.0",
36
36
  "@smithy/config-resolver": "^3.0.9",
37
37
  "@smithy/core": "^2.4.8",
@@ -58,13 +58,13 @@
58
58
  "@smithy/util-middleware": "^3.0.7",
59
59
  "@smithy/util-retry": "^3.0.7",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
+ "@types/uuid": "^9.0.1",
61
62
  "tslib": "^2.6.2",
62
63
  "uuid": "^9.0.1"
63
64
  },
64
65
  "devDependencies": {
65
66
  "@tsconfig/node16": "16.1.3",
66
67
  "@types/node": "^16.18.96",
67
- "@types/uuid": "^9.0.4",
68
68
  "concurrently": "7.0.0",
69
69
  "downlevel-dts": "0.10.1",
70
70
  "rimraf": "3.0.2",