@pulumi/auth0 2.14.0 → 2.15.0-alpha.1673555771
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/action.js +22 -22
- package/action.js.map +1 -1
- package/attackProtection.js +18 -18
- package/attackProtection.js.map +1 -1
- package/branding.js +22 -22
- package/branding.js.map +1 -1
- package/brandingTheme.js +22 -22
- package/brandingTheme.js.map +1 -1
- package/client.js +22 -22
- package/client.js.map +1 -1
- package/clientGrant.js +22 -22
- package/clientGrant.js.map +1 -1
- package/connection.js +22 -22
- package/connection.js.map +1 -1
- package/customDomain.js +22 -22
- package/customDomain.js.map +1 -1
- package/customDomainVerification.js +22 -22
- package/customDomainVerification.js.map +1 -1
- package/email.js +22 -22
- package/email.js.map +1 -1
- package/emailTemplate.js +22 -22
- package/emailTemplate.js.map +1 -1
- package/globalClient.js +22 -22
- package/globalClient.js.map +1 -1
- package/guardian.js +22 -22
- package/guardian.js.map +1 -1
- package/hook.js +22 -22
- package/hook.js.map +1 -1
- package/index.d.ts +28 -28
- package/logStream.js +22 -22
- package/logStream.js.map +1 -1
- package/organization.js +20 -20
- package/organization.js.map +1 -1
- package/organizationConnection.js +22 -22
- package/organizationConnection.js.map +1 -1
- package/organizationMember.js +22 -22
- package/organizationMember.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/prompt.js +18 -18
- package/prompt.js.map +1 -1
- package/promptCustomText.js +22 -22
- package/promptCustomText.js.map +1 -1
- package/provider.js +10 -10
- package/provider.js.map +1 -1
- package/resourceServer.js +22 -22
- package/resourceServer.js.map +1 -1
- package/role.js +19 -19
- package/role.js.map +1 -1
- package/rule.js +22 -22
- package/rule.js.map +1 -1
- package/ruleConfig.js +22 -22
- package/ruleConfig.js.map +1 -1
- package/tenant.js +22 -22
- package/tenant.js.map +1 -1
- package/triggerBinding.js +22 -22
- package/triggerBinding.js.map +1 -1
- package/user.js +22 -22
- package/user.js.map +1 -1
|
@@ -17,6 +17,28 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
19
|
class CustomDomainVerification extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing CustomDomainVerification resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name, id, state, opts) {
|
|
30
|
+
return new CustomDomainVerification(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of CustomDomainVerification. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj) {
|
|
37
|
+
if (obj === undefined || obj === null) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
return obj['__pulumiType'] === CustomDomainVerification.__pulumiType;
|
|
41
|
+
}
|
|
20
42
|
constructor(name, argsOrState, opts) {
|
|
21
43
|
let resourceInputs = {};
|
|
22
44
|
opts = opts || {};
|
|
@@ -40,28 +62,6 @@ class CustomDomainVerification extends pulumi.CustomResource {
|
|
|
40
62
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
41
63
|
super(CustomDomainVerification.__pulumiType, name, resourceInputs, opts);
|
|
42
64
|
}
|
|
43
|
-
/**
|
|
44
|
-
* Get an existing CustomDomainVerification resource's state with the given name, ID, and optional extra
|
|
45
|
-
* properties used to qualify the lookup.
|
|
46
|
-
*
|
|
47
|
-
* @param name The _unique_ name of the resulting resource.
|
|
48
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
49
|
-
* @param state Any extra arguments used during the lookup.
|
|
50
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
51
|
-
*/
|
|
52
|
-
static get(name, id, state, opts) {
|
|
53
|
-
return new CustomDomainVerification(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
54
|
-
}
|
|
55
|
-
/**
|
|
56
|
-
* Returns true if the given object is an instance of CustomDomainVerification. This is designed to work even
|
|
57
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
58
|
-
*/
|
|
59
|
-
static isInstance(obj) {
|
|
60
|
-
if (obj === undefined || obj === null) {
|
|
61
|
-
return false;
|
|
62
|
-
}
|
|
63
|
-
return obj['__pulumiType'] === CustomDomainVerification.__pulumiType;
|
|
64
|
-
}
|
|
65
65
|
}
|
|
66
66
|
exports.CustomDomainVerification = CustomDomainVerification;
|
|
67
67
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customDomainVerification.js","sourceRoot":"","sources":["../customDomainVerification.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"customDomainVerification.js","sourceRoot":"","sources":["../customDomainVerification.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;IAwBD,YAAY,IAAY,EAAE,WAA0E,EAAE,IAAmC;QACrI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwD,CAAC;YACvE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;SACnF;aAAM;YACH,MAAM,IAAI,GAAG,WAAuD,CAAC;YACrE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,kBAAkB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC1D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC;QAChE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,wBAAwB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7E,CAAC;;AAvEL,4DAwEC;AA1DG,gBAAgB;AACO,qCAAY,GAAG,+DAA+D,CAAC"}
|
package/email.js
CHANGED
|
@@ -54,6 +54,28 @@ const utilities = require("./utilities");
|
|
|
54
54
|
* ```
|
|
55
55
|
*/
|
|
56
56
|
class Email extends pulumi.CustomResource {
|
|
57
|
+
/**
|
|
58
|
+
* Get an existing Email resource's state with the given name, ID, and optional extra
|
|
59
|
+
* properties used to qualify the lookup.
|
|
60
|
+
*
|
|
61
|
+
* @param name The _unique_ name of the resulting resource.
|
|
62
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
63
|
+
* @param state Any extra arguments used during the lookup.
|
|
64
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
65
|
+
*/
|
|
66
|
+
static get(name, id, state, opts) {
|
|
67
|
+
return new Email(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Returns true if the given object is an instance of Email. This is designed to work even
|
|
71
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
72
|
+
*/
|
|
73
|
+
static isInstance(obj) {
|
|
74
|
+
if (obj === undefined || obj === null) {
|
|
75
|
+
return false;
|
|
76
|
+
}
|
|
77
|
+
return obj['__pulumiType'] === Email.__pulumiType;
|
|
78
|
+
}
|
|
57
79
|
constructor(name, argsOrState, opts) {
|
|
58
80
|
let resourceInputs = {};
|
|
59
81
|
opts = opts || {};
|
|
@@ -80,28 +102,6 @@ class Email extends pulumi.CustomResource {
|
|
|
80
102
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
81
103
|
super(Email.__pulumiType, name, resourceInputs, opts);
|
|
82
104
|
}
|
|
83
|
-
/**
|
|
84
|
-
* Get an existing Email resource's state with the given name, ID, and optional extra
|
|
85
|
-
* properties used to qualify the lookup.
|
|
86
|
-
*
|
|
87
|
-
* @param name The _unique_ name of the resulting resource.
|
|
88
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
89
|
-
* @param state Any extra arguments used during the lookup.
|
|
90
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
91
|
-
*/
|
|
92
|
-
static get(name, id, state, opts) {
|
|
93
|
-
return new Email(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
94
|
-
}
|
|
95
|
-
/**
|
|
96
|
-
* Returns true if the given object is an instance of Email. This is designed to work even
|
|
97
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
98
|
-
*/
|
|
99
|
-
static isInstance(obj) {
|
|
100
|
-
if (obj === undefined || obj === null) {
|
|
101
|
-
return false;
|
|
102
|
-
}
|
|
103
|
-
return obj['__pulumiType'] === Email.__pulumiType;
|
|
104
|
-
}
|
|
105
105
|
}
|
|
106
106
|
exports.Email = Email;
|
|
107
107
|
/** @internal */
|
package/email.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"email.js","sourceRoot":"","sources":["../email.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"email.js","sourceRoot":"","sources":["../email.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAoC,EAAE,IAAmC;QAC/F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqC,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAoC,CAAC;YAClD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,kBAAkB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/D,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;aACrE;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;;AA7EL,sBA8EC;AAhEG,gBAAgB;AACO,kBAAY,GAAG,yBAAyB,CAAC"}
|
package/emailTemplate.js
CHANGED
|
@@ -46,6 +46,28 @@ const utilities = require("./utilities");
|
|
|
46
46
|
* ```
|
|
47
47
|
*/
|
|
48
48
|
class EmailTemplate extends pulumi.CustomResource {
|
|
49
|
+
/**
|
|
50
|
+
* Get an existing EmailTemplate resource's state with the given name, ID, and optional extra
|
|
51
|
+
* properties used to qualify the lookup.
|
|
52
|
+
*
|
|
53
|
+
* @param name The _unique_ name of the resulting resource.
|
|
54
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
55
|
+
* @param state Any extra arguments used during the lookup.
|
|
56
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
57
|
+
*/
|
|
58
|
+
static get(name, id, state, opts) {
|
|
59
|
+
return new EmailTemplate(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Returns true if the given object is an instance of EmailTemplate. This is designed to work even
|
|
63
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
64
|
+
*/
|
|
65
|
+
static isInstance(obj) {
|
|
66
|
+
if (obj === undefined || obj === null) {
|
|
67
|
+
return false;
|
|
68
|
+
}
|
|
69
|
+
return obj['__pulumiType'] === EmailTemplate.__pulumiType;
|
|
70
|
+
}
|
|
49
71
|
constructor(name, argsOrState, opts) {
|
|
50
72
|
let resourceInputs = {};
|
|
51
73
|
opts = opts || {};
|
|
@@ -94,28 +116,6 @@ class EmailTemplate extends pulumi.CustomResource {
|
|
|
94
116
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
95
117
|
super(EmailTemplate.__pulumiType, name, resourceInputs, opts);
|
|
96
118
|
}
|
|
97
|
-
/**
|
|
98
|
-
* Get an existing EmailTemplate resource's state with the given name, ID, and optional extra
|
|
99
|
-
* properties used to qualify the lookup.
|
|
100
|
-
*
|
|
101
|
-
* @param name The _unique_ name of the resulting resource.
|
|
102
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
103
|
-
* @param state Any extra arguments used during the lookup.
|
|
104
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
105
|
-
*/
|
|
106
|
-
static get(name, id, state, opts) {
|
|
107
|
-
return new EmailTemplate(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* Returns true if the given object is an instance of EmailTemplate. This is designed to work even
|
|
111
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
112
|
-
*/
|
|
113
|
-
static isInstance(obj) {
|
|
114
|
-
if (obj === undefined || obj === null) {
|
|
115
|
-
return false;
|
|
116
|
-
}
|
|
117
|
-
return obj['__pulumiType'] === EmailTemplate.__pulumiType;
|
|
118
|
-
}
|
|
119
119
|
}
|
|
120
120
|
exports.EmailTemplate = EmailTemplate;
|
|
121
121
|
/** @internal */
|
package/emailTemplate.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"emailTemplate.js","sourceRoot":"","sources":["../emailTemplate.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"emailTemplate.js","sourceRoot":"","sources":["../emailTemplate.ts"],"names":[],"mappings":"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"}
|
package/globalClient.js
CHANGED
|
@@ -37,6 +37,28 @@ const utilities = require("./utilities");
|
|
|
37
37
|
* ```
|
|
38
38
|
*/
|
|
39
39
|
class GlobalClient extends pulumi.CustomResource {
|
|
40
|
+
/**
|
|
41
|
+
* Get an existing GlobalClient resource's state with the given name, ID, and optional extra
|
|
42
|
+
* properties used to qualify the lookup.
|
|
43
|
+
*
|
|
44
|
+
* @param name The _unique_ name of the resulting resource.
|
|
45
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
46
|
+
* @param state Any extra arguments used during the lookup.
|
|
47
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
48
|
+
*/
|
|
49
|
+
static get(name, id, state, opts) {
|
|
50
|
+
return new GlobalClient(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Returns true if the given object is an instance of GlobalClient. This is designed to work even
|
|
54
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
55
|
+
*/
|
|
56
|
+
static isInstance(obj) {
|
|
57
|
+
if (obj === undefined || obj === null) {
|
|
58
|
+
return false;
|
|
59
|
+
}
|
|
60
|
+
return obj['__pulumiType'] === GlobalClient.__pulumiType;
|
|
61
|
+
}
|
|
40
62
|
constructor(name, argsOrState, opts) {
|
|
41
63
|
let resourceInputs = {};
|
|
42
64
|
opts = opts || {};
|
|
@@ -123,28 +145,6 @@ class GlobalClient extends pulumi.CustomResource {
|
|
|
123
145
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
124
146
|
super(GlobalClient.__pulumiType, name, resourceInputs, opts);
|
|
125
147
|
}
|
|
126
|
-
/**
|
|
127
|
-
* Get an existing GlobalClient resource's state with the given name, ID, and optional extra
|
|
128
|
-
* properties used to qualify the lookup.
|
|
129
|
-
*
|
|
130
|
-
* @param name The _unique_ name of the resulting resource.
|
|
131
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
132
|
-
* @param state Any extra arguments used during the lookup.
|
|
133
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
134
|
-
*/
|
|
135
|
-
static get(name, id, state, opts) {
|
|
136
|
-
return new GlobalClient(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
137
|
-
}
|
|
138
|
-
/**
|
|
139
|
-
* Returns true if the given object is an instance of GlobalClient. This is designed to work even
|
|
140
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
141
|
-
*/
|
|
142
|
-
static isInstance(obj) {
|
|
143
|
-
if (obj === undefined || obj === null) {
|
|
144
|
-
return false;
|
|
145
|
-
}
|
|
146
|
-
return obj['__pulumiType'] === GlobalClient.__pulumiType;
|
|
147
|
-
}
|
|
148
148
|
}
|
|
149
149
|
exports.GlobalClient = GlobalClient;
|
|
150
150
|
/** @internal */
|
package/globalClient.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"globalClient.js","sourceRoot":"","sources":["../globalClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"globalClient.js","sourceRoot":"","sources":["../globalClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IA4JD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,gCAAgC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,8BAA8B,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5G,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,cAAc,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,YAAY,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACnG,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,gCAAgC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,8BAA8B,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1G,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,WAAW,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,cAAc,EAAE,aAAa,CAAC,EAAE,CAAC;QAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AA1QL,oCA2QC;AA7PG,gBAAgB;AACO,yBAAY,GAAG,uCAAuC,CAAC"}
|
package/guardian.js
CHANGED
|
@@ -65,6 +65,28 @@ const utilities = require("./utilities");
|
|
|
65
65
|
* ```
|
|
66
66
|
*/
|
|
67
67
|
class Guardian extends pulumi.CustomResource {
|
|
68
|
+
/**
|
|
69
|
+
* Get an existing Guardian resource's state with the given name, ID, and optional extra
|
|
70
|
+
* properties used to qualify the lookup.
|
|
71
|
+
*
|
|
72
|
+
* @param name The _unique_ name of the resulting resource.
|
|
73
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
74
|
+
* @param state Any extra arguments used during the lookup.
|
|
75
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
76
|
+
*/
|
|
77
|
+
static get(name, id, state, opts) {
|
|
78
|
+
return new Guardian(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* Returns true if the given object is an instance of Guardian. This is designed to work even
|
|
82
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
83
|
+
*/
|
|
84
|
+
static isInstance(obj) {
|
|
85
|
+
if (obj === undefined || obj === null) {
|
|
86
|
+
return false;
|
|
87
|
+
}
|
|
88
|
+
return obj['__pulumiType'] === Guardian.__pulumiType;
|
|
89
|
+
}
|
|
68
90
|
constructor(name, argsOrState, opts) {
|
|
69
91
|
let resourceInputs = {};
|
|
70
92
|
opts = opts || {};
|
|
@@ -98,28 +120,6 @@ class Guardian extends pulumi.CustomResource {
|
|
|
98
120
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
99
121
|
super(Guardian.__pulumiType, name, resourceInputs, opts);
|
|
100
122
|
}
|
|
101
|
-
/**
|
|
102
|
-
* Get an existing Guardian resource's state with the given name, ID, and optional extra
|
|
103
|
-
* properties used to qualify the lookup.
|
|
104
|
-
*
|
|
105
|
-
* @param name The _unique_ name of the resulting resource.
|
|
106
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
107
|
-
* @param state Any extra arguments used during the lookup.
|
|
108
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
109
|
-
*/
|
|
110
|
-
static get(name, id, state, opts) {
|
|
111
|
-
return new Guardian(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
112
|
-
}
|
|
113
|
-
/**
|
|
114
|
-
* Returns true if the given object is an instance of Guardian. This is designed to work even
|
|
115
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
116
|
-
*/
|
|
117
|
-
static isInstance(obj) {
|
|
118
|
-
if (obj === undefined || obj === null) {
|
|
119
|
-
return false;
|
|
120
|
-
}
|
|
121
|
-
return obj['__pulumiType'] === Guardian.__pulumiType;
|
|
122
|
-
}
|
|
123
123
|
}
|
|
124
124
|
exports.Guardian = Guardian;
|
|
125
125
|
/** @internal */
|
package/guardian.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"guardian.js","sourceRoot":"","sources":["../guardian.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0DG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"guardian.js","sourceRoot":"","sources":["../guardian.ts"],"names":[],"mappings":"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"}
|
package/hook.js
CHANGED
|
@@ -39,6 +39,28 @@ const utilities = require("./utilities");
|
|
|
39
39
|
* ```
|
|
40
40
|
*/
|
|
41
41
|
class Hook extends pulumi.CustomResource {
|
|
42
|
+
/**
|
|
43
|
+
* Get an existing Hook resource's state with the given name, ID, and optional extra
|
|
44
|
+
* properties used to qualify the lookup.
|
|
45
|
+
*
|
|
46
|
+
* @param name The _unique_ name of the resulting resource.
|
|
47
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
48
|
+
* @param state Any extra arguments used during the lookup.
|
|
49
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
50
|
+
*/
|
|
51
|
+
static get(name, id, state, opts) {
|
|
52
|
+
return new Hook(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Returns true if the given object is an instance of Hook. This is designed to work even
|
|
56
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
57
|
+
*/
|
|
58
|
+
static isInstance(obj) {
|
|
59
|
+
if (obj === undefined || obj === null) {
|
|
60
|
+
return false;
|
|
61
|
+
}
|
|
62
|
+
return obj['__pulumiType'] === Hook.__pulumiType;
|
|
63
|
+
}
|
|
42
64
|
constructor(name, argsOrState, opts) {
|
|
43
65
|
let resourceInputs = {};
|
|
44
66
|
opts = opts || {};
|
|
@@ -71,28 +93,6 @@ class Hook extends pulumi.CustomResource {
|
|
|
71
93
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
72
94
|
super(Hook.__pulumiType, name, resourceInputs, opts);
|
|
73
95
|
}
|
|
74
|
-
/**
|
|
75
|
-
* Get an existing Hook resource's state with the given name, ID, and optional extra
|
|
76
|
-
* properties used to qualify the lookup.
|
|
77
|
-
*
|
|
78
|
-
* @param name The _unique_ name of the resulting resource.
|
|
79
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
80
|
-
* @param state Any extra arguments used during the lookup.
|
|
81
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
82
|
-
*/
|
|
83
|
-
static get(name, id, state, opts) {
|
|
84
|
-
return new Hook(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
85
|
-
}
|
|
86
|
-
/**
|
|
87
|
-
* Returns true if the given object is an instance of Hook. This is designed to work even
|
|
88
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
89
|
-
*/
|
|
90
|
-
static isInstance(obj) {
|
|
91
|
-
if (obj === undefined || obj === null) {
|
|
92
|
-
return false;
|
|
93
|
-
}
|
|
94
|
-
return obj['__pulumiType'] === Hook.__pulumiType;
|
|
95
|
-
}
|
|
96
96
|
}
|
|
97
97
|
exports.Hook = Hook;
|
|
98
98
|
/** @internal */
|
package/hook.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hook.js","sourceRoot":"","sources":["../hook.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"hook.js","sourceRoot":"","sources":["../hook.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
export { ActionArgs, ActionState } from "./action";
|
|
2
|
-
export
|
|
2
|
+
export type Action = import("./action").Action;
|
|
3
3
|
export declare const Action: typeof import("./action").Action;
|
|
4
4
|
export { AttackProtectionArgs, AttackProtectionState } from "./attackProtection";
|
|
5
|
-
export
|
|
5
|
+
export type AttackProtection = import("./attackProtection").AttackProtection;
|
|
6
6
|
export declare const AttackProtection: typeof import("./attackProtection").AttackProtection;
|
|
7
7
|
export { BrandingArgs, BrandingState } from "./branding";
|
|
8
|
-
export
|
|
8
|
+
export type Branding = import("./branding").Branding;
|
|
9
9
|
export declare const Branding: typeof import("./branding").Branding;
|
|
10
10
|
export { BrandingThemeArgs, BrandingThemeState } from "./brandingTheme";
|
|
11
|
-
export
|
|
11
|
+
export type BrandingTheme = import("./brandingTheme").BrandingTheme;
|
|
12
12
|
export declare const BrandingTheme: typeof import("./brandingTheme").BrandingTheme;
|
|
13
13
|
export { ClientArgs, ClientState } from "./client";
|
|
14
|
-
export
|
|
14
|
+
export type Client = import("./client").Client;
|
|
15
15
|
export declare const Client: typeof import("./client").Client;
|
|
16
16
|
export { ClientGrantArgs, ClientGrantState } from "./clientGrant";
|
|
17
|
-
export
|
|
17
|
+
export type ClientGrant = import("./clientGrant").ClientGrant;
|
|
18
18
|
export declare const ClientGrant: typeof import("./clientGrant").ClientGrant;
|
|
19
19
|
export { ConnectionArgs, ConnectionState } from "./connection";
|
|
20
|
-
export
|
|
20
|
+
export type Connection = import("./connection").Connection;
|
|
21
21
|
export declare const Connection: typeof import("./connection").Connection;
|
|
22
22
|
export { CustomDomainArgs, CustomDomainState } from "./customDomain";
|
|
23
|
-
export
|
|
23
|
+
export type CustomDomain = import("./customDomain").CustomDomain;
|
|
24
24
|
export declare const CustomDomain: typeof import("./customDomain").CustomDomain;
|
|
25
25
|
export { CustomDomainVerificationArgs, CustomDomainVerificationState } from "./customDomainVerification";
|
|
26
|
-
export
|
|
26
|
+
export type CustomDomainVerification = import("./customDomainVerification").CustomDomainVerification;
|
|
27
27
|
export declare const CustomDomainVerification: typeof import("./customDomainVerification").CustomDomainVerification;
|
|
28
28
|
export { EmailArgs, EmailState } from "./email";
|
|
29
|
-
export
|
|
29
|
+
export type Email = import("./email").Email;
|
|
30
30
|
export declare const Email: typeof import("./email").Email;
|
|
31
31
|
export { EmailTemplateArgs, EmailTemplateState } from "./emailTemplate";
|
|
32
|
-
export
|
|
32
|
+
export type EmailTemplate = import("./emailTemplate").EmailTemplate;
|
|
33
33
|
export declare const EmailTemplate: typeof import("./emailTemplate").EmailTemplate;
|
|
34
34
|
export { GetClientArgs, GetClientResult, GetClientOutputArgs } from "./getClient";
|
|
35
35
|
export declare const getClient: typeof import("./getClient").getClient;
|
|
@@ -39,55 +39,55 @@ export declare const getGlobalClient: typeof import("./getGlobalClient").getGlob
|
|
|
39
39
|
export { GetTenantResult } from "./getTenant";
|
|
40
40
|
export declare const getTenant: typeof import("./getTenant").getTenant;
|
|
41
41
|
export { GlobalClientArgs, GlobalClientState } from "./globalClient";
|
|
42
|
-
export
|
|
42
|
+
export type GlobalClient = import("./globalClient").GlobalClient;
|
|
43
43
|
export declare const GlobalClient: typeof import("./globalClient").GlobalClient;
|
|
44
44
|
export { GuardianArgs, GuardianState } from "./guardian";
|
|
45
|
-
export
|
|
45
|
+
export type Guardian = import("./guardian").Guardian;
|
|
46
46
|
export declare const Guardian: typeof import("./guardian").Guardian;
|
|
47
47
|
export { HookArgs, HookState } from "./hook";
|
|
48
|
-
export
|
|
48
|
+
export type Hook = import("./hook").Hook;
|
|
49
49
|
export declare const Hook: typeof import("./hook").Hook;
|
|
50
50
|
export { LogStreamArgs, LogStreamState } from "./logStream";
|
|
51
|
-
export
|
|
51
|
+
export type LogStream = import("./logStream").LogStream;
|
|
52
52
|
export declare const LogStream: typeof import("./logStream").LogStream;
|
|
53
53
|
export { OrganizationArgs, OrganizationState } from "./organization";
|
|
54
|
-
export
|
|
54
|
+
export type Organization = import("./organization").Organization;
|
|
55
55
|
export declare const Organization: typeof import("./organization").Organization;
|
|
56
56
|
export { OrganizationConnectionArgs, OrganizationConnectionState } from "./organizationConnection";
|
|
57
|
-
export
|
|
57
|
+
export type OrganizationConnection = import("./organizationConnection").OrganizationConnection;
|
|
58
58
|
export declare const OrganizationConnection: typeof import("./organizationConnection").OrganizationConnection;
|
|
59
59
|
export { OrganizationMemberArgs, OrganizationMemberState } from "./organizationMember";
|
|
60
|
-
export
|
|
60
|
+
export type OrganizationMember = import("./organizationMember").OrganizationMember;
|
|
61
61
|
export declare const OrganizationMember: typeof import("./organizationMember").OrganizationMember;
|
|
62
62
|
export { PromptArgs, PromptState } from "./prompt";
|
|
63
|
-
export
|
|
63
|
+
export type Prompt = import("./prompt").Prompt;
|
|
64
64
|
export declare const Prompt: typeof import("./prompt").Prompt;
|
|
65
65
|
export { PromptCustomTextArgs, PromptCustomTextState } from "./promptCustomText";
|
|
66
|
-
export
|
|
66
|
+
export type PromptCustomText = import("./promptCustomText").PromptCustomText;
|
|
67
67
|
export declare const PromptCustomText: typeof import("./promptCustomText").PromptCustomText;
|
|
68
68
|
export { ProviderArgs } from "./provider";
|
|
69
|
-
export
|
|
69
|
+
export type Provider = import("./provider").Provider;
|
|
70
70
|
export declare const Provider: typeof import("./provider").Provider;
|
|
71
71
|
export { ResourceServerArgs, ResourceServerState } from "./resourceServer";
|
|
72
|
-
export
|
|
72
|
+
export type ResourceServer = import("./resourceServer").ResourceServer;
|
|
73
73
|
export declare const ResourceServer: typeof import("./resourceServer").ResourceServer;
|
|
74
74
|
export { RoleArgs, RoleState } from "./role";
|
|
75
|
-
export
|
|
75
|
+
export type Role = import("./role").Role;
|
|
76
76
|
export declare const Role: typeof import("./role").Role;
|
|
77
77
|
export { RuleArgs, RuleState } from "./rule";
|
|
78
|
-
export
|
|
78
|
+
export type Rule = import("./rule").Rule;
|
|
79
79
|
export declare const Rule: typeof import("./rule").Rule;
|
|
80
80
|
export { RuleConfigArgs, RuleConfigState } from "./ruleConfig";
|
|
81
|
-
export
|
|
81
|
+
export type RuleConfig = import("./ruleConfig").RuleConfig;
|
|
82
82
|
export declare const RuleConfig: typeof import("./ruleConfig").RuleConfig;
|
|
83
83
|
export { TenantArgs, TenantState } from "./tenant";
|
|
84
|
-
export
|
|
84
|
+
export type Tenant = import("./tenant").Tenant;
|
|
85
85
|
export declare const Tenant: typeof import("./tenant").Tenant;
|
|
86
86
|
export { TriggerBindingArgs, TriggerBindingState } from "./triggerBinding";
|
|
87
|
-
export
|
|
87
|
+
export type TriggerBinding = import("./triggerBinding").TriggerBinding;
|
|
88
88
|
export declare const TriggerBinding: typeof import("./triggerBinding").TriggerBinding;
|
|
89
89
|
export { UserArgs, UserState } from "./user";
|
|
90
|
-
export
|
|
90
|
+
export type User = import("./user").User;
|
|
91
91
|
export declare const User: typeof import("./user").User;
|
|
92
92
|
import * as config from "./config";
|
|
93
93
|
import * as types from "./types";
|
package/logStream.js
CHANGED
|
@@ -58,6 +58,28 @@ const utilities = require("./utilities");
|
|
|
58
58
|
* ```
|
|
59
59
|
*/
|
|
60
60
|
class LogStream extends pulumi.CustomResource {
|
|
61
|
+
/**
|
|
62
|
+
* Get an existing LogStream resource's state with the given name, ID, and optional extra
|
|
63
|
+
* properties used to qualify the lookup.
|
|
64
|
+
*
|
|
65
|
+
* @param name The _unique_ name of the resulting resource.
|
|
66
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
67
|
+
* @param state Any extra arguments used during the lookup.
|
|
68
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
69
|
+
*/
|
|
70
|
+
static get(name, id, state, opts) {
|
|
71
|
+
return new LogStream(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Returns true if the given object is an instance of LogStream. This is designed to work even
|
|
75
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
76
|
+
*/
|
|
77
|
+
static isInstance(obj) {
|
|
78
|
+
if (obj === undefined || obj === null) {
|
|
79
|
+
return false;
|
|
80
|
+
}
|
|
81
|
+
return obj['__pulumiType'] === LogStream.__pulumiType;
|
|
82
|
+
}
|
|
61
83
|
constructor(name, argsOrState, opts) {
|
|
62
84
|
let resourceInputs = {};
|
|
63
85
|
opts = opts || {};
|
|
@@ -86,28 +108,6 @@ class LogStream extends pulumi.CustomResource {
|
|
|
86
108
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
87
109
|
super(LogStream.__pulumiType, name, resourceInputs, opts);
|
|
88
110
|
}
|
|
89
|
-
/**
|
|
90
|
-
* Get an existing LogStream resource's state with the given name, ID, and optional extra
|
|
91
|
-
* properties used to qualify the lookup.
|
|
92
|
-
*
|
|
93
|
-
* @param name The _unique_ name of the resulting resource.
|
|
94
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
95
|
-
* @param state Any extra arguments used during the lookup.
|
|
96
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
97
|
-
*/
|
|
98
|
-
static get(name, id, state, opts) {
|
|
99
|
-
return new LogStream(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
100
|
-
}
|
|
101
|
-
/**
|
|
102
|
-
* Returns true if the given object is an instance of LogStream. This is designed to work even
|
|
103
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
104
|
-
*/
|
|
105
|
-
static isInstance(obj) {
|
|
106
|
-
if (obj === undefined || obj === null) {
|
|
107
|
-
return false;
|
|
108
|
-
}
|
|
109
|
-
return obj['__pulumiType'] === LogStream.__pulumiType;
|
|
110
|
-
}
|
|
111
111
|
}
|
|
112
112
|
exports.LogStream = LogStream;
|
|
113
113
|
/** @internal */
|