@pulumi/aws-native 0.106.0 → 0.107.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/datazone/getGroupProfile.d.ts +45 -0
- package/datazone/getGroupProfile.js +26 -0
- package/datazone/getGroupProfile.js.map +1 -0
- package/datazone/getUserProfile.d.ts +44 -0
- package/datazone/getUserProfile.js +26 -0
- package/datazone/getUserProfile.js.map +1 -0
- package/datazone/groupProfile.d.ts +64 -0
- package/datazone/groupProfile.js +74 -0
- package/datazone/groupProfile.js.map +1 -0
- package/datazone/index.d.ts +15 -0
- package/datazone/index.js +19 -1
- package/datazone/index.js.map +1 -1
- package/datazone/projectMembership.d.ts +44 -0
- package/datazone/projectMembership.js +76 -0
- package/datazone/projectMembership.js.map +1 -0
- package/datazone/userProfile.d.ts +65 -0
- package/datazone/userProfile.js +78 -0
- package/datazone/userProfile.js.map +1 -0
- package/lambda/eventSourceMapping.d.ts +19 -19
- package/lambda/eventSourceMapping.js +7 -7
- package/lambda/getEventSourceMapping.d.ts +17 -17
- package/lambda/getEventSourceMapping.js +14 -14
- package/mwaa/environment.d.ts +4 -0
- package/mwaa/environment.js +4 -0
- package/mwaa/environment.js.map +1 -1
- package/mwaa/getEnvironment.d.ts +2 -0
- package/mwaa/getEnvironment.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/securitylake/getSubscriber.d.ts +1 -1
- package/securitylake/subscriber.d.ts +2 -2
- package/types/enums/datazone/index.d.ts +40 -0
- package/types/enums/datazone/index.js +24 -1
- package/types/enums/datazone/index.js.map +1 -1
- package/types/input.d.ts +33 -5
- package/types/output.d.ts +65 -5
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as enums from "../types/enums";
|
|
3
|
+
/**
|
|
4
|
+
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
|
|
5
|
+
*/
|
|
6
|
+
export declare function getGroupProfile(args: GetGroupProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupProfileResult>;
|
|
7
|
+
export interface GetGroupProfileArgs {
|
|
8
|
+
/**
|
|
9
|
+
* The identifier of the Amazon DataZone domain in which the group profile is created.
|
|
10
|
+
*/
|
|
11
|
+
domainId: string;
|
|
12
|
+
/**
|
|
13
|
+
* The ID of the Amazon DataZone group profile.
|
|
14
|
+
*/
|
|
15
|
+
id: string;
|
|
16
|
+
}
|
|
17
|
+
export interface GetGroupProfileResult {
|
|
18
|
+
/**
|
|
19
|
+
* The identifier of the Amazon DataZone domain in which the group profile is created.
|
|
20
|
+
*/
|
|
21
|
+
readonly domainId?: string;
|
|
22
|
+
/**
|
|
23
|
+
* The group-name of the Group Profile.
|
|
24
|
+
*/
|
|
25
|
+
readonly groupName?: string;
|
|
26
|
+
/**
|
|
27
|
+
* The ID of the Amazon DataZone group profile.
|
|
28
|
+
*/
|
|
29
|
+
readonly id?: string;
|
|
30
|
+
readonly status?: enums.datazone.GroupProfileStatus;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
|
|
34
|
+
*/
|
|
35
|
+
export declare function getGroupProfileOutput(args: GetGroupProfileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGroupProfileResult>;
|
|
36
|
+
export interface GetGroupProfileOutputArgs {
|
|
37
|
+
/**
|
|
38
|
+
* The identifier of the Amazon DataZone domain in which the group profile is created.
|
|
39
|
+
*/
|
|
40
|
+
domainId: pulumi.Input<string>;
|
|
41
|
+
/**
|
|
42
|
+
* The ID of the Amazon DataZone group profile.
|
|
43
|
+
*/
|
|
44
|
+
id: pulumi.Input<string>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getGroupProfileOutput = exports.getGroupProfile = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
|
|
10
|
+
*/
|
|
11
|
+
function getGroupProfile(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("aws-native:datazone:getGroupProfile", {
|
|
14
|
+
"domainId": args.domainId,
|
|
15
|
+
"id": args.id,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getGroupProfile = getGroupProfile;
|
|
19
|
+
/**
|
|
20
|
+
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
|
|
21
|
+
*/
|
|
22
|
+
function getGroupProfileOutput(args, opts) {
|
|
23
|
+
return pulumi.output(args).apply((a) => getGroupProfile(a, opts));
|
|
24
|
+
}
|
|
25
|
+
exports.getGroupProfileOutput = getGroupProfileOutput;
|
|
26
|
+
//# sourceMappingURL=getGroupProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getGroupProfile.js","sourceRoot":"","sources":["../../datazone/getGroupProfile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0CAOC;AA4BD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
import * as enums from "../types/enums";
|
|
4
|
+
/**
|
|
5
|
+
* A user profile represents Amazon DataZone users. Amazon DataZone supports both IAM roles and SSO identities to interact with the Amazon DataZone Management Console and the data portal for different purposes. Domain administrators use IAM roles to perform the initial administrative domain-related work in the Amazon DataZone Management Console, including creating new Amazon DataZone domains, configuring metadata form types, and implementing policies. Data workers use their SSO corporate identities via Identity Center to log into the Amazon DataZone Data Portal and access projects where they have memberships.
|
|
6
|
+
*/
|
|
7
|
+
export declare function getUserProfile(args: GetUserProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetUserProfileResult>;
|
|
8
|
+
export interface GetUserProfileArgs {
|
|
9
|
+
/**
|
|
10
|
+
* The identifier of the Amazon DataZone domain in which the user profile is created.
|
|
11
|
+
*/
|
|
12
|
+
domainId: string;
|
|
13
|
+
/**
|
|
14
|
+
* The ID of the Amazon DataZone user profile.
|
|
15
|
+
*/
|
|
16
|
+
id: string;
|
|
17
|
+
}
|
|
18
|
+
export interface GetUserProfileResult {
|
|
19
|
+
readonly details?: outputs.datazone.UserProfileDetails0Properties | outputs.datazone.UserProfileDetails1Properties;
|
|
20
|
+
/**
|
|
21
|
+
* The identifier of the Amazon DataZone domain in which the user profile is created.
|
|
22
|
+
*/
|
|
23
|
+
readonly domainId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The ID of the Amazon DataZone user profile.
|
|
26
|
+
*/
|
|
27
|
+
readonly id?: string;
|
|
28
|
+
readonly status?: enums.datazone.UserProfileStatus;
|
|
29
|
+
readonly type?: enums.datazone.UserProfileType;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* A user profile represents Amazon DataZone users. Amazon DataZone supports both IAM roles and SSO identities to interact with the Amazon DataZone Management Console and the data portal for different purposes. Domain administrators use IAM roles to perform the initial administrative domain-related work in the Amazon DataZone Management Console, including creating new Amazon DataZone domains, configuring metadata form types, and implementing policies. Data workers use their SSO corporate identities via Identity Center to log into the Amazon DataZone Data Portal and access projects where they have memberships.
|
|
33
|
+
*/
|
|
34
|
+
export declare function getUserProfileOutput(args: GetUserProfileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetUserProfileResult>;
|
|
35
|
+
export interface GetUserProfileOutputArgs {
|
|
36
|
+
/**
|
|
37
|
+
* The identifier of the Amazon DataZone domain in which the user profile is created.
|
|
38
|
+
*/
|
|
39
|
+
domainId: pulumi.Input<string>;
|
|
40
|
+
/**
|
|
41
|
+
* The ID of the Amazon DataZone user profile.
|
|
42
|
+
*/
|
|
43
|
+
id: pulumi.Input<string>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getUserProfileOutput = exports.getUserProfile = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* A user profile represents Amazon DataZone users. Amazon DataZone supports both IAM roles and SSO identities to interact with the Amazon DataZone Management Console and the data portal for different purposes. Domain administrators use IAM roles to perform the initial administrative domain-related work in the Amazon DataZone Management Console, including creating new Amazon DataZone domains, configuring metadata form types, and implementing policies. Data workers use their SSO corporate identities via Identity Center to log into the Amazon DataZone Data Portal and access projects where they have memberships.
|
|
10
|
+
*/
|
|
11
|
+
function getUserProfile(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("aws-native:datazone:getUserProfile", {
|
|
14
|
+
"domainId": args.domainId,
|
|
15
|
+
"id": args.id,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getUserProfile = getUserProfile;
|
|
19
|
+
/**
|
|
20
|
+
* A user profile represents Amazon DataZone users. Amazon DataZone supports both IAM roles and SSO identities to interact with the Amazon DataZone Management Console and the data portal for different purposes. Domain administrators use IAM roles to perform the initial administrative domain-related work in the Amazon DataZone Management Console, including creating new Amazon DataZone domains, configuring metadata form types, and implementing policies. Data workers use their SSO corporate identities via Identity Center to log into the Amazon DataZone Data Portal and access projects where they have memberships.
|
|
21
|
+
*/
|
|
22
|
+
function getUserProfileOutput(args, opts) {
|
|
23
|
+
return pulumi.output(args).apply((a) => getUserProfile(a, opts));
|
|
24
|
+
}
|
|
25
|
+
exports.getUserProfileOutput = getUserProfileOutput;
|
|
26
|
+
//# sourceMappingURL=getUserProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getUserProfile.js","sourceRoot":"","sources":["../../datazone/getUserProfile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AA0BD;;GAEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as enums from "../types/enums";
|
|
3
|
+
/**
|
|
4
|
+
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
|
|
5
|
+
*/
|
|
6
|
+
export declare class GroupProfile extends pulumi.CustomResource {
|
|
7
|
+
/**
|
|
8
|
+
* Get an existing GroupProfile resource's state with the given name, ID, and optional extra
|
|
9
|
+
* properties used to qualify the lookup.
|
|
10
|
+
*
|
|
11
|
+
* @param name The _unique_ name of the resulting resource.
|
|
12
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
13
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
14
|
+
*/
|
|
15
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): GroupProfile;
|
|
16
|
+
/**
|
|
17
|
+
* Returns true if the given object is an instance of GroupProfile. This is designed to work even
|
|
18
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
19
|
+
*/
|
|
20
|
+
static isInstance(obj: any): obj is GroupProfile;
|
|
21
|
+
/**
|
|
22
|
+
* The ID of the Amazon DataZone group profile.
|
|
23
|
+
*/
|
|
24
|
+
readonly awsId: pulumi.Output<string>;
|
|
25
|
+
/**
|
|
26
|
+
* The identifier of the Amazon DataZone domain in which the group profile is created.
|
|
27
|
+
*/
|
|
28
|
+
readonly domainId: pulumi.Output<string>;
|
|
29
|
+
/**
|
|
30
|
+
* The identifier of the Amazon DataZone domain in which the group profile would be created.
|
|
31
|
+
*/
|
|
32
|
+
readonly domainIdentifier: pulumi.Output<string>;
|
|
33
|
+
/**
|
|
34
|
+
* The ID of the group.
|
|
35
|
+
*/
|
|
36
|
+
readonly groupIdentifier: pulumi.Output<string>;
|
|
37
|
+
/**
|
|
38
|
+
* The group-name of the Group Profile.
|
|
39
|
+
*/
|
|
40
|
+
readonly groupName: pulumi.Output<string>;
|
|
41
|
+
readonly status: pulumi.Output<enums.datazone.GroupProfileStatus | undefined>;
|
|
42
|
+
/**
|
|
43
|
+
* Create a GroupProfile resource with the given unique name, arguments, and options.
|
|
44
|
+
*
|
|
45
|
+
* @param name The _unique_ name of the resource.
|
|
46
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
47
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
48
|
+
*/
|
|
49
|
+
constructor(name: string, args: GroupProfileArgs, opts?: pulumi.CustomResourceOptions);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* The set of arguments for constructing a GroupProfile resource.
|
|
53
|
+
*/
|
|
54
|
+
export interface GroupProfileArgs {
|
|
55
|
+
/**
|
|
56
|
+
* The identifier of the Amazon DataZone domain in which the group profile would be created.
|
|
57
|
+
*/
|
|
58
|
+
domainIdentifier: pulumi.Input<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The ID of the group.
|
|
61
|
+
*/
|
|
62
|
+
groupIdentifier: pulumi.Input<string>;
|
|
63
|
+
status?: pulumi.Input<enums.datazone.GroupProfileStatus>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.GroupProfile = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
|
|
10
|
+
*/
|
|
11
|
+
class GroupProfile extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing GroupProfile resource's state with the given name, ID, and optional extra
|
|
14
|
+
* properties used to qualify the lookup.
|
|
15
|
+
*
|
|
16
|
+
* @param name The _unique_ name of the resulting resource.
|
|
17
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
19
|
+
*/
|
|
20
|
+
static get(name, id, opts) {
|
|
21
|
+
return new GroupProfile(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Returns true if the given object is an instance of GroupProfile. This is designed to work even
|
|
25
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
26
|
+
*/
|
|
27
|
+
static isInstance(obj) {
|
|
28
|
+
if (obj === undefined || obj === null) {
|
|
29
|
+
return false;
|
|
30
|
+
}
|
|
31
|
+
return obj['__pulumiType'] === GroupProfile.__pulumiType;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Create a GroupProfile resource with the given unique name, arguments, and options.
|
|
35
|
+
*
|
|
36
|
+
* @param name The _unique_ name of the resource.
|
|
37
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
38
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
39
|
+
*/
|
|
40
|
+
constructor(name, args, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (!opts.id) {
|
|
44
|
+
if ((!args || args.domainIdentifier === undefined) && !opts.urn) {
|
|
45
|
+
throw new Error("Missing required property 'domainIdentifier'");
|
|
46
|
+
}
|
|
47
|
+
if ((!args || args.groupIdentifier === undefined) && !opts.urn) {
|
|
48
|
+
throw new Error("Missing required property 'groupIdentifier'");
|
|
49
|
+
}
|
|
50
|
+
resourceInputs["domainIdentifier"] = args ? args.domainIdentifier : undefined;
|
|
51
|
+
resourceInputs["groupIdentifier"] = args ? args.groupIdentifier : undefined;
|
|
52
|
+
resourceInputs["status"] = args ? args.status : undefined;
|
|
53
|
+
resourceInputs["awsId"] = undefined /*out*/;
|
|
54
|
+
resourceInputs["domainId"] = undefined /*out*/;
|
|
55
|
+
resourceInputs["groupName"] = undefined /*out*/;
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
resourceInputs["awsId"] = undefined /*out*/;
|
|
59
|
+
resourceInputs["domainId"] = undefined /*out*/;
|
|
60
|
+
resourceInputs["domainIdentifier"] = undefined /*out*/;
|
|
61
|
+
resourceInputs["groupIdentifier"] = undefined /*out*/;
|
|
62
|
+
resourceInputs["groupName"] = undefined /*out*/;
|
|
63
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
64
|
+
}
|
|
65
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
66
|
+
const replaceOnChanges = { replaceOnChanges: ["domainIdentifier", "groupIdentifier"] };
|
|
67
|
+
opts = pulumi.mergeOptions(opts, replaceOnChanges);
|
|
68
|
+
super(GroupProfile.__pulumiType, name, resourceInputs, opts);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
exports.GroupProfile = GroupProfile;
|
|
72
|
+
/** @internal */
|
|
73
|
+
GroupProfile.__pulumiType = 'aws-native:datazone:GroupProfile';
|
|
74
|
+
//# sourceMappingURL=groupProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"groupProfile.js","sourceRoot":"","sources":["../../datazone/groupProfile.ts"],"names":[],"mappings":"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"}
|
package/datazone/index.d.ts
CHANGED
|
@@ -28,16 +28,31 @@ export declare const getEnvironmentBlueprintConfigurationOutput: typeof import("
|
|
|
28
28
|
export { GetEnvironmentProfileArgs, GetEnvironmentProfileResult, GetEnvironmentProfileOutputArgs } from "./getEnvironmentProfile";
|
|
29
29
|
export declare const getEnvironmentProfile: typeof import("./getEnvironmentProfile").getEnvironmentProfile;
|
|
30
30
|
export declare const getEnvironmentProfileOutput: typeof import("./getEnvironmentProfile").getEnvironmentProfileOutput;
|
|
31
|
+
export { GetGroupProfileArgs, GetGroupProfileResult, GetGroupProfileOutputArgs } from "./getGroupProfile";
|
|
32
|
+
export declare const getGroupProfile: typeof import("./getGroupProfile").getGroupProfile;
|
|
33
|
+
export declare const getGroupProfileOutput: typeof import("./getGroupProfile").getGroupProfileOutput;
|
|
31
34
|
export { GetProjectArgs, GetProjectResult, GetProjectOutputArgs } from "./getProject";
|
|
32
35
|
export declare const getProject: typeof import("./getProject").getProject;
|
|
33
36
|
export declare const getProjectOutput: typeof import("./getProject").getProjectOutput;
|
|
34
37
|
export { GetSubscriptionTargetArgs, GetSubscriptionTargetResult, GetSubscriptionTargetOutputArgs } from "./getSubscriptionTarget";
|
|
35
38
|
export declare const getSubscriptionTarget: typeof import("./getSubscriptionTarget").getSubscriptionTarget;
|
|
36
39
|
export declare const getSubscriptionTargetOutput: typeof import("./getSubscriptionTarget").getSubscriptionTargetOutput;
|
|
40
|
+
export { GetUserProfileArgs, GetUserProfileResult, GetUserProfileOutputArgs } from "./getUserProfile";
|
|
41
|
+
export declare const getUserProfile: typeof import("./getUserProfile").getUserProfile;
|
|
42
|
+
export declare const getUserProfileOutput: typeof import("./getUserProfile").getUserProfileOutput;
|
|
43
|
+
export { GroupProfileArgs } from "./groupProfile";
|
|
44
|
+
export type GroupProfile = import("./groupProfile").GroupProfile;
|
|
45
|
+
export declare const GroupProfile: typeof import("./groupProfile").GroupProfile;
|
|
37
46
|
export { ProjectArgs } from "./project";
|
|
38
47
|
export type Project = import("./project").Project;
|
|
39
48
|
export declare const Project: typeof import("./project").Project;
|
|
49
|
+
export { ProjectMembershipArgs } from "./projectMembership";
|
|
50
|
+
export type ProjectMembership = import("./projectMembership").ProjectMembership;
|
|
51
|
+
export declare const ProjectMembership: typeof import("./projectMembership").ProjectMembership;
|
|
40
52
|
export { SubscriptionTargetArgs } from "./subscriptionTarget";
|
|
41
53
|
export type SubscriptionTarget = import("./subscriptionTarget").SubscriptionTarget;
|
|
42
54
|
export declare const SubscriptionTarget: typeof import("./subscriptionTarget").SubscriptionTarget;
|
|
55
|
+
export { UserProfileArgs } from "./userProfile";
|
|
56
|
+
export type UserProfile = import("./userProfile").UserProfile;
|
|
57
|
+
export declare const UserProfile: typeof import("./userProfile").UserProfile;
|
|
43
58
|
export * from "../types/enums/datazone";
|
package/datazone/index.js
CHANGED
|
@@ -16,7 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.SubscriptionTarget = exports.Project = exports.getSubscriptionTargetOutput = exports.getSubscriptionTarget = exports.getProjectOutput = exports.getProject = exports.getEnvironmentProfileOutput = exports.getEnvironmentProfile = exports.getEnvironmentBlueprintConfigurationOutput = exports.getEnvironmentBlueprintConfiguration = exports.getEnvironmentOutput = exports.getEnvironment = exports.getDomainOutput = exports.getDomain = exports.getDataSourceOutput = exports.getDataSource = exports.EnvironmentProfile = exports.EnvironmentBlueprintConfiguration = exports.Environment = exports.Domain = exports.DataSource = void 0;
|
|
19
|
+
exports.UserProfile = exports.SubscriptionTarget = exports.ProjectMembership = exports.Project = exports.GroupProfile = exports.getUserProfileOutput = exports.getUserProfile = exports.getSubscriptionTargetOutput = exports.getSubscriptionTarget = exports.getProjectOutput = exports.getProject = exports.getGroupProfileOutput = exports.getGroupProfile = exports.getEnvironmentProfileOutput = exports.getEnvironmentProfile = exports.getEnvironmentBlueprintConfigurationOutput = exports.getEnvironmentBlueprintConfiguration = exports.getEnvironmentOutput = exports.getEnvironment = exports.getDomainOutput = exports.getDomain = exports.getDataSourceOutput = exports.getDataSource = exports.EnvironmentProfile = exports.EnvironmentBlueprintConfiguration = exports.Environment = exports.Domain = exports.DataSource = void 0;
|
|
20
20
|
const pulumi = require("@pulumi/pulumi");
|
|
21
21
|
const utilities = require("../utilities");
|
|
22
22
|
exports.DataSource = null;
|
|
@@ -44,16 +44,28 @@ utilities.lazyLoad(exports, ["getEnvironmentBlueprintConfiguration", "getEnviron
|
|
|
44
44
|
exports.getEnvironmentProfile = null;
|
|
45
45
|
exports.getEnvironmentProfileOutput = null;
|
|
46
46
|
utilities.lazyLoad(exports, ["getEnvironmentProfile", "getEnvironmentProfileOutput"], () => require("./getEnvironmentProfile"));
|
|
47
|
+
exports.getGroupProfile = null;
|
|
48
|
+
exports.getGroupProfileOutput = null;
|
|
49
|
+
utilities.lazyLoad(exports, ["getGroupProfile", "getGroupProfileOutput"], () => require("./getGroupProfile"));
|
|
47
50
|
exports.getProject = null;
|
|
48
51
|
exports.getProjectOutput = null;
|
|
49
52
|
utilities.lazyLoad(exports, ["getProject", "getProjectOutput"], () => require("./getProject"));
|
|
50
53
|
exports.getSubscriptionTarget = null;
|
|
51
54
|
exports.getSubscriptionTargetOutput = null;
|
|
52
55
|
utilities.lazyLoad(exports, ["getSubscriptionTarget", "getSubscriptionTargetOutput"], () => require("./getSubscriptionTarget"));
|
|
56
|
+
exports.getUserProfile = null;
|
|
57
|
+
exports.getUserProfileOutput = null;
|
|
58
|
+
utilities.lazyLoad(exports, ["getUserProfile", "getUserProfileOutput"], () => require("./getUserProfile"));
|
|
59
|
+
exports.GroupProfile = null;
|
|
60
|
+
utilities.lazyLoad(exports, ["GroupProfile"], () => require("./groupProfile"));
|
|
53
61
|
exports.Project = null;
|
|
54
62
|
utilities.lazyLoad(exports, ["Project"], () => require("./project"));
|
|
63
|
+
exports.ProjectMembership = null;
|
|
64
|
+
utilities.lazyLoad(exports, ["ProjectMembership"], () => require("./projectMembership"));
|
|
55
65
|
exports.SubscriptionTarget = null;
|
|
56
66
|
utilities.lazyLoad(exports, ["SubscriptionTarget"], () => require("./subscriptionTarget"));
|
|
67
|
+
exports.UserProfile = null;
|
|
68
|
+
utilities.lazyLoad(exports, ["UserProfile"], () => require("./userProfile"));
|
|
57
69
|
// Export enums:
|
|
58
70
|
__exportStar(require("../types/enums/datazone"), exports);
|
|
59
71
|
const _module = {
|
|
@@ -70,10 +82,16 @@ const _module = {
|
|
|
70
82
|
return new exports.EnvironmentBlueprintConfiguration(name, undefined, { urn });
|
|
71
83
|
case "aws-native:datazone:EnvironmentProfile":
|
|
72
84
|
return new exports.EnvironmentProfile(name, undefined, { urn });
|
|
85
|
+
case "aws-native:datazone:GroupProfile":
|
|
86
|
+
return new exports.GroupProfile(name, undefined, { urn });
|
|
73
87
|
case "aws-native:datazone:Project":
|
|
74
88
|
return new exports.Project(name, undefined, { urn });
|
|
89
|
+
case "aws-native:datazone:ProjectMembership":
|
|
90
|
+
return new exports.ProjectMembership(name, undefined, { urn });
|
|
75
91
|
case "aws-native:datazone:SubscriptionTarget":
|
|
76
92
|
return new exports.SubscriptionTarget(name, undefined, { urn });
|
|
93
|
+
case "aws-native:datazone:UserProfile":
|
|
94
|
+
return new exports.UserProfile(name, undefined, { urn });
|
|
77
95
|
default:
|
|
78
96
|
throw new Error(`unknown resource type ${type}`);
|
|
79
97
|
}
|
package/datazone/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../datazone/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../datazone/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
import * as enums from "../types/enums";
|
|
5
|
+
/**
|
|
6
|
+
* Definition of AWS::DataZone::ProjectMembership Resource Type
|
|
7
|
+
*/
|
|
8
|
+
export declare class ProjectMembership extends pulumi.CustomResource {
|
|
9
|
+
/**
|
|
10
|
+
* Get an existing ProjectMembership resource's state with the given name, ID, and optional extra
|
|
11
|
+
* properties used to qualify the lookup.
|
|
12
|
+
*
|
|
13
|
+
* @param name The _unique_ name of the resulting resource.
|
|
14
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
15
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
16
|
+
*/
|
|
17
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ProjectMembership;
|
|
18
|
+
/**
|
|
19
|
+
* Returns true if the given object is an instance of ProjectMembership. This is designed to work even
|
|
20
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
21
|
+
*/
|
|
22
|
+
static isInstance(obj: any): obj is ProjectMembership;
|
|
23
|
+
readonly designation: pulumi.Output<enums.datazone.ProjectMembershipUserDesignation>;
|
|
24
|
+
readonly domainIdentifier: pulumi.Output<string>;
|
|
25
|
+
readonly member: pulumi.Output<outputs.datazone.ProjectMembershipMember0Properties | outputs.datazone.ProjectMembershipMember1Properties>;
|
|
26
|
+
readonly projectIdentifier: pulumi.Output<string>;
|
|
27
|
+
/**
|
|
28
|
+
* Create a ProjectMembership resource with the given unique name, arguments, and options.
|
|
29
|
+
*
|
|
30
|
+
* @param name The _unique_ name of the resource.
|
|
31
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
32
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
33
|
+
*/
|
|
34
|
+
constructor(name: string, args: ProjectMembershipArgs, opts?: pulumi.CustomResourceOptions);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* The set of arguments for constructing a ProjectMembership resource.
|
|
38
|
+
*/
|
|
39
|
+
export interface ProjectMembershipArgs {
|
|
40
|
+
designation: pulumi.Input<enums.datazone.ProjectMembershipUserDesignation>;
|
|
41
|
+
domainIdentifier: pulumi.Input<string>;
|
|
42
|
+
member: pulumi.Input<inputs.datazone.ProjectMembershipMember0PropertiesArgs | inputs.datazone.ProjectMembershipMember1PropertiesArgs>;
|
|
43
|
+
projectIdentifier: pulumi.Input<string>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.ProjectMembership = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Definition of AWS::DataZone::ProjectMembership Resource Type
|
|
10
|
+
*/
|
|
11
|
+
class ProjectMembership extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing ProjectMembership resource's state with the given name, ID, and optional extra
|
|
14
|
+
* properties used to qualify the lookup.
|
|
15
|
+
*
|
|
16
|
+
* @param name The _unique_ name of the resulting resource.
|
|
17
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
19
|
+
*/
|
|
20
|
+
static get(name, id, opts) {
|
|
21
|
+
return new ProjectMembership(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Returns true if the given object is an instance of ProjectMembership. This is designed to work even
|
|
25
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
26
|
+
*/
|
|
27
|
+
static isInstance(obj) {
|
|
28
|
+
if (obj === undefined || obj === null) {
|
|
29
|
+
return false;
|
|
30
|
+
}
|
|
31
|
+
return obj['__pulumiType'] === ProjectMembership.__pulumiType;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Create a ProjectMembership resource with the given unique name, arguments, and options.
|
|
35
|
+
*
|
|
36
|
+
* @param name The _unique_ name of the resource.
|
|
37
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
38
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
39
|
+
*/
|
|
40
|
+
constructor(name, args, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (!opts.id) {
|
|
44
|
+
if ((!args || args.designation === undefined) && !opts.urn) {
|
|
45
|
+
throw new Error("Missing required property 'designation'");
|
|
46
|
+
}
|
|
47
|
+
if ((!args || args.domainIdentifier === undefined) && !opts.urn) {
|
|
48
|
+
throw new Error("Missing required property 'domainIdentifier'");
|
|
49
|
+
}
|
|
50
|
+
if ((!args || args.member === undefined) && !opts.urn) {
|
|
51
|
+
throw new Error("Missing required property 'member'");
|
|
52
|
+
}
|
|
53
|
+
if ((!args || args.projectIdentifier === undefined) && !opts.urn) {
|
|
54
|
+
throw new Error("Missing required property 'projectIdentifier'");
|
|
55
|
+
}
|
|
56
|
+
resourceInputs["designation"] = args ? args.designation : undefined;
|
|
57
|
+
resourceInputs["domainIdentifier"] = args ? args.domainIdentifier : undefined;
|
|
58
|
+
resourceInputs["member"] = args ? args.member : undefined;
|
|
59
|
+
resourceInputs["projectIdentifier"] = args ? args.projectIdentifier : undefined;
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
resourceInputs["designation"] = undefined /*out*/;
|
|
63
|
+
resourceInputs["domainIdentifier"] = undefined /*out*/;
|
|
64
|
+
resourceInputs["member"] = undefined /*out*/;
|
|
65
|
+
resourceInputs["projectIdentifier"] = undefined /*out*/;
|
|
66
|
+
}
|
|
67
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
68
|
+
const replaceOnChanges = { replaceOnChanges: ["domainIdentifier", "member", "projectIdentifier"] };
|
|
69
|
+
opts = pulumi.mergeOptions(opts, replaceOnChanges);
|
|
70
|
+
super(ProjectMembership.__pulumiType, name, resourceInputs, opts);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
exports.ProjectMembership = ProjectMembership;
|
|
74
|
+
/** @internal */
|
|
75
|
+
ProjectMembership.__pulumiType = 'aws-native:datazone:ProjectMembership';
|
|
76
|
+
//# sourceMappingURL=projectMembership.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"projectMembership.js","sourceRoot":"","sources":["../../datazone/projectMembership.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
import * as enums from "../types/enums";
|
|
4
|
+
/**
|
|
5
|
+
* A user profile represents Amazon DataZone users. Amazon DataZone supports both IAM roles and SSO identities to interact with the Amazon DataZone Management Console and the data portal for different purposes. Domain administrators use IAM roles to perform the initial administrative domain-related work in the Amazon DataZone Management Console, including creating new Amazon DataZone domains, configuring metadata form types, and implementing policies. Data workers use their SSO corporate identities via Identity Center to log into the Amazon DataZone Data Portal and access projects where they have memberships.
|
|
6
|
+
*/
|
|
7
|
+
export declare class UserProfile extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing UserProfile resource's state with the given name, ID, and optional extra
|
|
10
|
+
* properties used to qualify the lookup.
|
|
11
|
+
*
|
|
12
|
+
* @param name The _unique_ name of the resulting resource.
|
|
13
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
14
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
15
|
+
*/
|
|
16
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): UserProfile;
|
|
17
|
+
/**
|
|
18
|
+
* Returns true if the given object is an instance of UserProfile. This is designed to work even
|
|
19
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
20
|
+
*/
|
|
21
|
+
static isInstance(obj: any): obj is UserProfile;
|
|
22
|
+
/**
|
|
23
|
+
* The ID of the Amazon DataZone user profile.
|
|
24
|
+
*/
|
|
25
|
+
readonly awsId: pulumi.Output<string>;
|
|
26
|
+
readonly details: pulumi.Output<outputs.datazone.UserProfileDetails0Properties | outputs.datazone.UserProfileDetails1Properties>;
|
|
27
|
+
/**
|
|
28
|
+
* The identifier of the Amazon DataZone domain in which the user profile is created.
|
|
29
|
+
*/
|
|
30
|
+
readonly domainId: pulumi.Output<string>;
|
|
31
|
+
/**
|
|
32
|
+
* The identifier of the Amazon DataZone domain in which the user profile would be created.
|
|
33
|
+
*/
|
|
34
|
+
readonly domainIdentifier: pulumi.Output<string>;
|
|
35
|
+
readonly status: pulumi.Output<enums.datazone.UserProfileStatus | undefined>;
|
|
36
|
+
readonly type: pulumi.Output<enums.datazone.UserProfileType>;
|
|
37
|
+
/**
|
|
38
|
+
* The ID of the user.
|
|
39
|
+
*/
|
|
40
|
+
readonly userIdentifier: pulumi.Output<string>;
|
|
41
|
+
readonly userType: pulumi.Output<enums.datazone.UserProfileUserType | undefined>;
|
|
42
|
+
/**
|
|
43
|
+
* Create a UserProfile resource with the given unique name, arguments, and options.
|
|
44
|
+
*
|
|
45
|
+
* @param name The _unique_ name of the resource.
|
|
46
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
47
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
48
|
+
*/
|
|
49
|
+
constructor(name: string, args: UserProfileArgs, opts?: pulumi.CustomResourceOptions);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* The set of arguments for constructing a UserProfile resource.
|
|
53
|
+
*/
|
|
54
|
+
export interface UserProfileArgs {
|
|
55
|
+
/**
|
|
56
|
+
* The identifier of the Amazon DataZone domain in which the user profile would be created.
|
|
57
|
+
*/
|
|
58
|
+
domainIdentifier: pulumi.Input<string>;
|
|
59
|
+
status?: pulumi.Input<enums.datazone.UserProfileStatus>;
|
|
60
|
+
/**
|
|
61
|
+
* The ID of the user.
|
|
62
|
+
*/
|
|
63
|
+
userIdentifier: pulumi.Input<string>;
|
|
64
|
+
userType?: pulumi.Input<enums.datazone.UserProfileUserType>;
|
|
65
|
+
}
|