@pulumi/openstack 5.1.0-alpha.1747981761 → 5.1.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/blockstorage/quoteSetV3.d.ts +0 -3
- package/blockstorage/quoteSetV3.js +0 -3
- package/blockstorage/quoteSetV3.js.map +1 -1
- package/blockstorage/volume.d.ts +24 -6
- package/blockstorage/volume.js +2 -0
- package/blockstorage/volume.js.map +1 -1
- package/compute/getHypervisorV2.d.ts +4 -4
- package/compute/getHypervisorV2.js +2 -0
- package/compute/getHypervisorV2.js.map +1 -1
- package/compute/instance.d.ts +36 -6
- package/compute/instance.js +2 -0
- package/compute/instance.js.map +1 -1
- package/dns/zone.d.ts +10 -13
- package/dns/zone.js +1 -1
- package/dns/zone.js.map +1 -1
- package/identity/getUser.d.ts +1 -1
- package/index.d.ts +3 -0
- package/index.js +4 -1
- package/index.js.map +1 -1
- package/objectstorage/container.d.ts +106 -60
- package/objectstorage/container.js +15 -0
- package/objectstorage/container.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +3 -1
- package/types/output.d.ts +3 -1
- package/vpnaas/ikePolicy.d.ts +21 -15
- package/vpnaas/ikePolicy.js.map +1 -1
- package/vpnaas/ipSecPolicy.d.ts +21 -15
- package/vpnaas/ipSecPolicy.js.map +1 -1
- package/workflowWorkflowV2.d.ts +120 -0
- package/workflowWorkflowV2.js +58 -0
- package/workflowWorkflowV2.js.map +1 -0
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to get the ID of an available workflow.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as openstack from "@pulumi/openstack";
|
|
10
|
+
*
|
|
11
|
+
* const workflow1 = openstack.WorkflowWorkflowV2({
|
|
12
|
+
* name: "workflow_1",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function workflowWorkflowV2(args?: WorkflowWorkflowV2Args, opts?: pulumi.InvokeOptions): Promise<WorkflowWorkflowV2Result>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking WorkflowWorkflowV2.
|
|
19
|
+
*/
|
|
20
|
+
export interface WorkflowWorkflowV2Args {
|
|
21
|
+
/**
|
|
22
|
+
* The name of the workflow.
|
|
23
|
+
*/
|
|
24
|
+
name?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The namespace of the workflow.
|
|
27
|
+
*/
|
|
28
|
+
namespace?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The id of the project to retrieve the workflow.
|
|
31
|
+
* Requires admin privileges.
|
|
32
|
+
*/
|
|
33
|
+
projectId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* The region in which to obtain the V2 Workflow client.
|
|
36
|
+
*/
|
|
37
|
+
region?: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* A collection of values returned by WorkflowWorkflowV2.
|
|
41
|
+
*/
|
|
42
|
+
export interface WorkflowWorkflowV2Result {
|
|
43
|
+
/**
|
|
44
|
+
* The date the workflow was created.
|
|
45
|
+
*/
|
|
46
|
+
readonly createdAt: string;
|
|
47
|
+
/**
|
|
48
|
+
* The workflow definition in Mistral v2 DSL.
|
|
49
|
+
*/
|
|
50
|
+
readonly definition: string;
|
|
51
|
+
/**
|
|
52
|
+
* The provider-assigned unique ID for this managed resource.
|
|
53
|
+
*/
|
|
54
|
+
readonly id: string;
|
|
55
|
+
/**
|
|
56
|
+
* A set of input parameters required for workflow execution.
|
|
57
|
+
*/
|
|
58
|
+
readonly input: string;
|
|
59
|
+
/**
|
|
60
|
+
* See Argument Reference above.
|
|
61
|
+
*/
|
|
62
|
+
readonly name: string;
|
|
63
|
+
/**
|
|
64
|
+
* See Argument Reference above.
|
|
65
|
+
*/
|
|
66
|
+
readonly namespace: string;
|
|
67
|
+
/**
|
|
68
|
+
* See Argument Reference above.
|
|
69
|
+
*/
|
|
70
|
+
readonly projectId: string;
|
|
71
|
+
/**
|
|
72
|
+
* See Argument Reference above.
|
|
73
|
+
*/
|
|
74
|
+
readonly region: string;
|
|
75
|
+
/**
|
|
76
|
+
* Scope (private or public).
|
|
77
|
+
*/
|
|
78
|
+
readonly scope: string;
|
|
79
|
+
/**
|
|
80
|
+
* A set of string tags for the workflow.
|
|
81
|
+
*/
|
|
82
|
+
readonly tags: string[];
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Use this data source to get the ID of an available workflow.
|
|
86
|
+
*
|
|
87
|
+
* ## Example Usage
|
|
88
|
+
*
|
|
89
|
+
* ```typescript
|
|
90
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
91
|
+
* import * as openstack from "@pulumi/openstack";
|
|
92
|
+
*
|
|
93
|
+
* const workflow1 = openstack.WorkflowWorkflowV2({
|
|
94
|
+
* name: "workflow_1",
|
|
95
|
+
* });
|
|
96
|
+
* ```
|
|
97
|
+
*/
|
|
98
|
+
export declare function workflowWorkflowV2Output(args?: WorkflowWorkflowV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<WorkflowWorkflowV2Result>;
|
|
99
|
+
/**
|
|
100
|
+
* A collection of arguments for invoking WorkflowWorkflowV2.
|
|
101
|
+
*/
|
|
102
|
+
export interface WorkflowWorkflowV2OutputArgs {
|
|
103
|
+
/**
|
|
104
|
+
* The name of the workflow.
|
|
105
|
+
*/
|
|
106
|
+
name?: pulumi.Input<string>;
|
|
107
|
+
/**
|
|
108
|
+
* The namespace of the workflow.
|
|
109
|
+
*/
|
|
110
|
+
namespace?: pulumi.Input<string>;
|
|
111
|
+
/**
|
|
112
|
+
* The id of the project to retrieve the workflow.
|
|
113
|
+
* Requires admin privileges.
|
|
114
|
+
*/
|
|
115
|
+
projectId?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* The region in which to obtain the V2 Workflow client.
|
|
118
|
+
*/
|
|
119
|
+
region?: pulumi.Input<string>;
|
|
120
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.workflowWorkflowV2Output = exports.workflowWorkflowV2 = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to get the ID of an available workflow.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as openstack from "@pulumi/openstack";
|
|
16
|
+
*
|
|
17
|
+
* const workflow1 = openstack.WorkflowWorkflowV2({
|
|
18
|
+
* name: "workflow_1",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function workflowWorkflowV2(args, opts) {
|
|
23
|
+
args = args || {};
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("openstack:index/workflowWorkflowV2:WorkflowWorkflowV2", {
|
|
26
|
+
"name": args.name,
|
|
27
|
+
"namespace": args.namespace,
|
|
28
|
+
"projectId": args.projectId,
|
|
29
|
+
"region": args.region,
|
|
30
|
+
}, opts);
|
|
31
|
+
}
|
|
32
|
+
exports.workflowWorkflowV2 = workflowWorkflowV2;
|
|
33
|
+
/**
|
|
34
|
+
* Use this data source to get the ID of an available workflow.
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as openstack from "@pulumi/openstack";
|
|
41
|
+
*
|
|
42
|
+
* const workflow1 = openstack.WorkflowWorkflowV2({
|
|
43
|
+
* name: "workflow_1",
|
|
44
|
+
* });
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
function workflowWorkflowV2Output(args, opts) {
|
|
48
|
+
args = args || {};
|
|
49
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
50
|
+
return pulumi.runtime.invokeOutput("openstack:index/workflowWorkflowV2:WorkflowWorkflowV2", {
|
|
51
|
+
"name": args.name,
|
|
52
|
+
"namespace": args.namespace,
|
|
53
|
+
"projectId": args.projectId,
|
|
54
|
+
"region": args.region,
|
|
55
|
+
}, opts);
|
|
56
|
+
}
|
|
57
|
+
exports.workflowWorkflowV2Output = workflowWorkflowV2Output;
|
|
58
|
+
//# sourceMappingURL=workflowWorkflowV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workflowWorkflowV2.js","sourceRoot":"","sources":["../workflowWorkflowV2.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uDAAuD,EAAE;QAClF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gDASC;AAsED;;;;;;;;;;;;;GAaG;AACH,SAAgB,wBAAwB,CAAC,IAAmC,EAAE,IAAiC;IAC3G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uDAAuD,EAAE;QACxF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4DASC"}
|