-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.ts
More file actions
211 lines (203 loc) · 7.97 KB
/
user.ts
File metadata and controls
211 lines (203 loc) · 7.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as utilities from "./utilities";
export class User extends pulumi.CustomResource {
/**
* Get an existing User resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: UserState, opts?: pulumi.CustomResourceOptions): User {
return new User(name, <any>state, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'fivetran:index/user:User';
/**
* Returns true if the given object is an instance of User. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
public static isInstance(obj: any): obj is User {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === User.__pulumiType;
}
/**
* The timestamp that the user created their Fivetran account.
*/
declare public /*out*/ readonly createdAt: pulumi.Output<string>;
/**
* The email address that the user has associated with their user profile.
*/
declare public readonly email: pulumi.Output<string>;
/**
* The last name of the user.
*/
declare public readonly familyName: pulumi.Output<string>;
/**
* The first name of the user.
*/
declare public readonly givenName: pulumi.Output<string>;
/**
* The field indicates whether the user has been invited to your account.
*/
declare public readonly invited: pulumi.Output<boolean>;
/**
* The last time that the user has logged into their Fivetran account.
*/
declare public /*out*/ readonly loggedInAt: pulumi.Output<string>;
/**
* The phone number of the user.
*/
declare public readonly phone: pulumi.Output<string | undefined>;
/**
* The user's avatar as a URL link (for example, 'http://mycompany.com/avatars/john_white.png') or base64 data URI (for
* example, 'data:image/png;base64,aHR0cDovL215Y29tcGFueS5jb20vYXZhdGFycy9qb2huX3doaXRlLnBuZw==')
*/
declare public readonly picture: pulumi.Output<string | undefined>;
/**
* The role that you would like to assign to the user.
*/
declare public readonly role: pulumi.Output<string | undefined>;
/**
* The field indicates whether the user has verified their email address in the account creation process.
*/
declare public readonly verified: pulumi.Output<boolean>;
/**
* Create a User resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: UserArgs, opts?: pulumi.CustomResourceOptions)
constructor(name: string, argsOrState?: UserArgs | UserState, opts?: pulumi.CustomResourceOptions) {
let resourceInputs: pulumi.Inputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState as UserState | undefined;
resourceInputs["createdAt"] = state?.createdAt;
resourceInputs["email"] = state?.email;
resourceInputs["familyName"] = state?.familyName;
resourceInputs["givenName"] = state?.givenName;
resourceInputs["invited"] = state?.invited;
resourceInputs["loggedInAt"] = state?.loggedInAt;
resourceInputs["phone"] = state?.phone;
resourceInputs["picture"] = state?.picture;
resourceInputs["role"] = state?.role;
resourceInputs["verified"] = state?.verified;
} else {
const args = argsOrState as UserArgs | undefined;
if (args?.email === undefined && !opts.urn) {
throw new Error("Missing required property 'email'");
}
if (args?.familyName === undefined && !opts.urn) {
throw new Error("Missing required property 'familyName'");
}
if (args?.givenName === undefined && !opts.urn) {
throw new Error("Missing required property 'givenName'");
}
resourceInputs["email"] = args?.email;
resourceInputs["familyName"] = args?.familyName;
resourceInputs["givenName"] = args?.givenName;
resourceInputs["invited"] = args?.invited;
resourceInputs["phone"] = args?.phone;
resourceInputs["picture"] = args?.picture;
resourceInputs["role"] = args?.role;
resourceInputs["verified"] = args?.verified;
resourceInputs["createdAt"] = undefined /*out*/;
resourceInputs["loggedInAt"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(User.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
}
}
/**
* Input properties used for looking up and filtering User resources.
*/
export interface UserState {
/**
* The timestamp that the user created their Fivetran account.
*/
createdAt?: pulumi.Input<string>;
/**
* The email address that the user has associated with their user profile.
*/
email?: pulumi.Input<string>;
/**
* The last name of the user.
*/
familyName?: pulumi.Input<string>;
/**
* The first name of the user.
*/
givenName?: pulumi.Input<string>;
/**
* The field indicates whether the user has been invited to your account.
*/
invited?: pulumi.Input<boolean>;
/**
* The last time that the user has logged into their Fivetran account.
*/
loggedInAt?: pulumi.Input<string>;
/**
* The phone number of the user.
*/
phone?: pulumi.Input<string>;
/**
* The user's avatar as a URL link (for example, 'http://mycompany.com/avatars/john_white.png') or base64 data URI (for
* example, 'data:image/png;base64,aHR0cDovL215Y29tcGFueS5jb20vYXZhdGFycy9qb2huX3doaXRlLnBuZw==')
*/
picture?: pulumi.Input<string>;
/**
* The role that you would like to assign to the user.
*/
role?: pulumi.Input<string>;
/**
* The field indicates whether the user has verified their email address in the account creation process.
*/
verified?: pulumi.Input<boolean>;
}
/**
* The set of arguments for constructing a User resource.
*/
export interface UserArgs {
/**
* The email address that the user has associated with their user profile.
*/
email: pulumi.Input<string>;
/**
* The last name of the user.
*/
familyName: pulumi.Input<string>;
/**
* The first name of the user.
*/
givenName: pulumi.Input<string>;
/**
* The field indicates whether the user has been invited to your account.
*/
invited?: pulumi.Input<boolean>;
/**
* The phone number of the user.
*/
phone?: pulumi.Input<string>;
/**
* The user's avatar as a URL link (for example, 'http://mycompany.com/avatars/john_white.png') or base64 data URI (for
* example, 'data:image/png;base64,aHR0cDovL215Y29tcGFueS5jb20vYXZhdGFycy9qb2huX3doaXRlLnBuZw==')
*/
picture?: pulumi.Input<string>;
/**
* The role that you would like to assign to the user.
*/
role?: pulumi.Input<string>;
/**
* The field indicates whether the user has verified their email address in the account creation process.
*/
verified?: pulumi.Input<boolean>;
}