@pierskarsenbarg/sdm 1.23.0 → 1.24.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/getWorkflow.d.ts +24 -0
- package/getWorkflow.js +4 -0
- package/getWorkflow.js.map +1 -1
- package/package.json +1 -1
- package/resource.d.ts +30 -18
- package/resource.js +14 -0
- package/resource.js.map +1 -1
- package/types/input.d.ts +389 -0
- package/types/output.d.ts +991 -170
- package/workflow.d.ts +36 -0
- package/workflow.js +4 -0
- package/workflow.js.map +1 -1
package/workflow.d.ts
CHANGED
|
@@ -27,6 +27,18 @@ export declare class Workflow extends pulumi.CustomResource {
|
|
|
27
27
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
28
28
|
*/
|
|
29
29
|
static isInstance(obj: any): obj is Workflow;
|
|
30
|
+
/**
|
|
31
|
+
* Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If
|
|
32
|
+
* neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level
|
|
33
|
+
* settings.
|
|
34
|
+
*/
|
|
35
|
+
readonly accessRequestFixedDuration: pulumi.Output<string | undefined>;
|
|
36
|
+
/**
|
|
37
|
+
* Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty.
|
|
38
|
+
* If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level
|
|
39
|
+
* settings.
|
|
40
|
+
*/
|
|
41
|
+
readonly accessRequestMaxDuration: pulumi.Output<string | undefined>;
|
|
30
42
|
/**
|
|
31
43
|
* AccessRules is a list of access rules defining the resources this Workflow provides access to.
|
|
32
44
|
*/
|
|
@@ -68,6 +80,18 @@ export declare class Workflow extends pulumi.CustomResource {
|
|
|
68
80
|
* Input properties used for looking up and filtering Workflow resources.
|
|
69
81
|
*/
|
|
70
82
|
export interface WorkflowState {
|
|
83
|
+
/**
|
|
84
|
+
* Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If
|
|
85
|
+
* neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level
|
|
86
|
+
* settings.
|
|
87
|
+
*/
|
|
88
|
+
accessRequestFixedDuration?: pulumi.Input<string>;
|
|
89
|
+
/**
|
|
90
|
+
* Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty.
|
|
91
|
+
* If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level
|
|
92
|
+
* settings.
|
|
93
|
+
*/
|
|
94
|
+
accessRequestMaxDuration?: pulumi.Input<string>;
|
|
71
95
|
/**
|
|
72
96
|
* AccessRules is a list of access rules defining the resources this Workflow provides access to.
|
|
73
97
|
*/
|
|
@@ -101,6 +125,18 @@ export interface WorkflowState {
|
|
|
101
125
|
* The set of arguments for constructing a Workflow resource.
|
|
102
126
|
*/
|
|
103
127
|
export interface WorkflowArgs {
|
|
128
|
+
/**
|
|
129
|
+
* Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If
|
|
130
|
+
* neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level
|
|
131
|
+
* settings.
|
|
132
|
+
*/
|
|
133
|
+
accessRequestFixedDuration?: pulumi.Input<string>;
|
|
134
|
+
/**
|
|
135
|
+
* Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty.
|
|
136
|
+
* If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level
|
|
137
|
+
* settings.
|
|
138
|
+
*/
|
|
139
|
+
accessRequestMaxDuration?: pulumi.Input<string>;
|
|
104
140
|
/**
|
|
105
141
|
* AccessRules is a list of access rules defining the resources this Workflow provides access to.
|
|
106
142
|
*/
|
package/workflow.js
CHANGED
|
@@ -45,6 +45,8 @@ class Workflow extends pulumi.CustomResource {
|
|
|
45
45
|
opts = opts || {};
|
|
46
46
|
if (opts.id) {
|
|
47
47
|
const state = argsOrState;
|
|
48
|
+
resourceInputs["accessRequestFixedDuration"] = state ? state.accessRequestFixedDuration : undefined;
|
|
49
|
+
resourceInputs["accessRequestMaxDuration"] = state ? state.accessRequestMaxDuration : undefined;
|
|
48
50
|
resourceInputs["accessRules"] = state ? state.accessRules : undefined;
|
|
49
51
|
resourceInputs["approvalFlowId"] = state ? state.approvalFlowId : undefined;
|
|
50
52
|
resourceInputs["autoGrant"] = state ? state.autoGrant : undefined;
|
|
@@ -55,6 +57,8 @@ class Workflow extends pulumi.CustomResource {
|
|
|
55
57
|
}
|
|
56
58
|
else {
|
|
57
59
|
const args = argsOrState;
|
|
60
|
+
resourceInputs["accessRequestFixedDuration"] = args ? args.accessRequestFixedDuration : undefined;
|
|
61
|
+
resourceInputs["accessRequestMaxDuration"] = args ? args.accessRequestMaxDuration : undefined;
|
|
58
62
|
resourceInputs["accessRules"] = args ? args.accessRules : undefined;
|
|
59
63
|
resourceInputs["approvalFlowId"] = args ? args.approvalFlowId : undefined;
|
|
60
64
|
resourceInputs["autoGrant"] = args ? args.autoGrant : undefined;
|
package/workflow.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow.js","sourceRoot":"","sources":["../workflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"workflow.js","sourceRoot":"","sources":["../workflow.ts"],"names":[],"mappings":"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"}
|