@pulumi/oci 4.5.0 → 4.5.1
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/oci/gdpGdpPipeline.d.ts +371 -0
- package/oci/gdpGdpPipeline.js +160 -0
- package/oci/gdpGdpPipeline.js.map +1 -0
- package/oci/getGdpGdpPipeline.d.ts +169 -0
- package/oci/getGdpGdpPipeline.js +58 -0
- package/oci/getGdpGdpPipeline.js.map +1 -0
- package/oci/getGdpGdpPipelines.d.ts +100 -0
- package/oci/getGdpGdpPipelines.js +66 -0
- package/oci/getGdpGdpPipelines.js.map +1 -0
- package/oci/index.d.ts +9 -0
- package/oci/index.js +17 -6
- package/oci/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +34 -0
- package/types/output.d.ts +169 -0
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* This data source provides details about a specific Gdp Pipeline resource in Oracle Cloud Infrastructure Gdp service.
|
|
5
|
+
*
|
|
6
|
+
* Retrieves a pipeline by identifier.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as oci from "@pulumi/oci";
|
|
13
|
+
*
|
|
14
|
+
* const testGdpPipeline = oci.oci.getGdpGdpPipeline({
|
|
15
|
+
* gdpPipelineId: testGdpPipelineOciGdpGdpPipeline.id,
|
|
16
|
+
* env: gdpEnv,
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export declare function getGdpGdpPipeline(args: GetGdpGdpPipelineArgs, opts?: pulumi.InvokeOptions): Promise<GetGdpGdpPipelineResult>;
|
|
21
|
+
/**
|
|
22
|
+
* A collection of arguments for invoking getGdpGdpPipeline.
|
|
23
|
+
*/
|
|
24
|
+
export interface GetGdpGdpPipelineArgs {
|
|
25
|
+
/**
|
|
26
|
+
* The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL.
|
|
27
|
+
*/
|
|
28
|
+
env?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Unique pipeline identifier.
|
|
31
|
+
*/
|
|
32
|
+
gdpPipelineId: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* A collection of values returned by getGdpGdpPipeline.
|
|
36
|
+
*/
|
|
37
|
+
export interface GetGdpGdpPipelineResult {
|
|
38
|
+
/**
|
|
39
|
+
* The KMS vault OCID used for cryptographic approvals of transfers.
|
|
40
|
+
*/
|
|
41
|
+
readonly approvalKeyVaultId: string;
|
|
42
|
+
/**
|
|
43
|
+
* Authorization information about the pipeline being configured.
|
|
44
|
+
*/
|
|
45
|
+
readonly authorizationDetails: string;
|
|
46
|
+
/**
|
|
47
|
+
* Configuration information about the buckets used for this pipeline.
|
|
48
|
+
*/
|
|
49
|
+
readonly bucketDetails: outputs.oci.GetGdpGdpPipelineBucketDetail[];
|
|
50
|
+
/**
|
|
51
|
+
* The OCID of the compartment.
|
|
52
|
+
*/
|
|
53
|
+
readonly compartmentId: string;
|
|
54
|
+
/**
|
|
55
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
|
56
|
+
*/
|
|
57
|
+
readonly definedTags: {
|
|
58
|
+
[key: string]: string;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Short field input by customer for a description of the data pipeline use-case.
|
|
62
|
+
*/
|
|
63
|
+
readonly description: string;
|
|
64
|
+
/**
|
|
65
|
+
* Pipeline short name.
|
|
66
|
+
*/
|
|
67
|
+
readonly displayName: string;
|
|
68
|
+
readonly env?: string;
|
|
69
|
+
/**
|
|
70
|
+
* List of file types allowed to be transferred in the pipeline according to the authorization details (e.g. .pdf, .xml, .doc).
|
|
71
|
+
*/
|
|
72
|
+
readonly fileTypes: string[];
|
|
73
|
+
/**
|
|
74
|
+
* Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
|
75
|
+
*/
|
|
76
|
+
readonly freeformTags: {
|
|
77
|
+
[key: string]: string;
|
|
78
|
+
};
|
|
79
|
+
readonly gdpPipelineId: string;
|
|
80
|
+
/**
|
|
81
|
+
* The OCID of the pipeline.
|
|
82
|
+
*/
|
|
83
|
+
readonly id: string;
|
|
84
|
+
/**
|
|
85
|
+
* Determines whether file transfers need to go through an approval workflow.
|
|
86
|
+
*/
|
|
87
|
+
readonly isApprovalNeeded: boolean;
|
|
88
|
+
/**
|
|
89
|
+
* Determines whether file must be chunked during the transfer. This is only a property of SENDER pipelines.
|
|
90
|
+
*/
|
|
91
|
+
readonly isChunkingEnabled: boolean;
|
|
92
|
+
/**
|
|
93
|
+
* Enable file override feature in destination bucket. If 2 files with same name exist in destination bucket, original file will be overwritten.
|
|
94
|
+
*/
|
|
95
|
+
readonly isFileOverrideInDestinationEnabled: boolean;
|
|
96
|
+
/**
|
|
97
|
+
* Determines whether GDP Scanning should be enabled for the pipeline.
|
|
98
|
+
*/
|
|
99
|
+
readonly isScanningEnabled: boolean;
|
|
100
|
+
/**
|
|
101
|
+
* Additional details about the current state of the pipeline.
|
|
102
|
+
*/
|
|
103
|
+
readonly lifecycleDetails: string;
|
|
104
|
+
/**
|
|
105
|
+
* OCID of the peered pipeline. This null for SENDER pipeline.
|
|
106
|
+
*/
|
|
107
|
+
readonly peeredGdpPipelineId: string;
|
|
108
|
+
/**
|
|
109
|
+
* Public region name where the peered pipeline exists.
|
|
110
|
+
*/
|
|
111
|
+
readonly peeringRegion: string;
|
|
112
|
+
/**
|
|
113
|
+
* Type of pipeline. Can be SENDER or RECEIVER.
|
|
114
|
+
*/
|
|
115
|
+
readonly pipelineType: string;
|
|
116
|
+
/**
|
|
117
|
+
* the OCID of the service log group.
|
|
118
|
+
*/
|
|
119
|
+
readonly serviceLogGroupId: string;
|
|
120
|
+
/**
|
|
121
|
+
* The current state of the pipeline.
|
|
122
|
+
*/
|
|
123
|
+
readonly state: string;
|
|
124
|
+
/**
|
|
125
|
+
* System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
126
|
+
*/
|
|
127
|
+
readonly systemTags: {
|
|
128
|
+
[key: string]: string;
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* The time the the pipeline was created. An RFC3339 formatted datetime string.
|
|
132
|
+
*/
|
|
133
|
+
readonly timeCreated: string;
|
|
134
|
+
/**
|
|
135
|
+
* The time the pipeline was updated. An RFC3339 formatted datetime string.
|
|
136
|
+
*/
|
|
137
|
+
readonly timeUpdated: string;
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* This data source provides details about a specific Gdp Pipeline resource in Oracle Cloud Infrastructure Gdp service.
|
|
141
|
+
*
|
|
142
|
+
* Retrieves a pipeline by identifier.
|
|
143
|
+
*
|
|
144
|
+
* ## Example Usage
|
|
145
|
+
*
|
|
146
|
+
* ```typescript
|
|
147
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
148
|
+
* import * as oci from "@pulumi/oci";
|
|
149
|
+
*
|
|
150
|
+
* const testGdpPipeline = oci.oci.getGdpGdpPipeline({
|
|
151
|
+
* gdpPipelineId: testGdpPipelineOciGdpGdpPipeline.id,
|
|
152
|
+
* env: gdpEnv,
|
|
153
|
+
* });
|
|
154
|
+
* ```
|
|
155
|
+
*/
|
|
156
|
+
export declare function getGdpGdpPipelineOutput(args: GetGdpGdpPipelineOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGdpGdpPipelineResult>;
|
|
157
|
+
/**
|
|
158
|
+
* A collection of arguments for invoking getGdpGdpPipeline.
|
|
159
|
+
*/
|
|
160
|
+
export interface GetGdpGdpPipelineOutputArgs {
|
|
161
|
+
/**
|
|
162
|
+
* The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL.
|
|
163
|
+
*/
|
|
164
|
+
env?: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Unique pipeline identifier.
|
|
167
|
+
*/
|
|
168
|
+
gdpPipelineId: pulumi.Input<string>;
|
|
169
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
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.getGdpGdpPipelineOutput = exports.getGdpGdpPipeline = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source provides details about a specific Gdp Pipeline resource in Oracle Cloud Infrastructure Gdp service.
|
|
10
|
+
*
|
|
11
|
+
* Retrieves a pipeline by identifier.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as oci from "@pulumi/oci";
|
|
18
|
+
*
|
|
19
|
+
* const testGdpPipeline = oci.oci.getGdpGdpPipeline({
|
|
20
|
+
* gdpPipelineId: testGdpPipelineOciGdpGdpPipeline.id,
|
|
21
|
+
* env: gdpEnv,
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
function getGdpGdpPipeline(args, opts) {
|
|
26
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
|
+
return pulumi.runtime.invoke("oci:oci/getGdpGdpPipeline:getGdpGdpPipeline", {
|
|
28
|
+
"env": args.env,
|
|
29
|
+
"gdpPipelineId": args.gdpPipelineId,
|
|
30
|
+
}, opts);
|
|
31
|
+
}
|
|
32
|
+
exports.getGdpGdpPipeline = getGdpGdpPipeline;
|
|
33
|
+
/**
|
|
34
|
+
* This data source provides details about a specific Gdp Pipeline resource in Oracle Cloud Infrastructure Gdp service.
|
|
35
|
+
*
|
|
36
|
+
* Retrieves a pipeline by identifier.
|
|
37
|
+
*
|
|
38
|
+
* ## Example Usage
|
|
39
|
+
*
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
42
|
+
* import * as oci from "@pulumi/oci";
|
|
43
|
+
*
|
|
44
|
+
* const testGdpPipeline = oci.oci.getGdpGdpPipeline({
|
|
45
|
+
* gdpPipelineId: testGdpPipelineOciGdpGdpPipeline.id,
|
|
46
|
+
* env: gdpEnv,
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
function getGdpGdpPipelineOutput(args, opts) {
|
|
51
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
52
|
+
return pulumi.runtime.invokeOutput("oci:oci/getGdpGdpPipeline:getGdpGdpPipeline", {
|
|
53
|
+
"env": args.env,
|
|
54
|
+
"gdpPipelineId": args.gdpPipelineId,
|
|
55
|
+
}, opts);
|
|
56
|
+
}
|
|
57
|
+
exports.getGdpGdpPipelineOutput = getGdpGdpPipelineOutput;
|
|
58
|
+
//# sourceMappingURL=getGdpGdpPipeline.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getGdpGdpPipeline.js","sourceRoot":"","sources":["../../oci/getGdpGdpPipeline.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC;AAmHD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAAiC;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,6CAA6C,EAAE;QAC9E,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0DAMC"}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* This data source provides the list of Gdp Pipelines in Oracle Cloud Infrastructure Gdp service.
|
|
6
|
+
*
|
|
7
|
+
* Returns a list of pipelines.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as oci from "@pulumi/oci";
|
|
14
|
+
*
|
|
15
|
+
* const testGdpPipelines = oci.oci.getGdpGdpPipelines({
|
|
16
|
+
* compartmentId: compartmentId,
|
|
17
|
+
* displayName: gdpPipelineDisplayName,
|
|
18
|
+
* env: gdpEnv,
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare function getGdpGdpPipelines(args?: GetGdpGdpPipelinesArgs, opts?: pulumi.InvokeOptions): Promise<GetGdpGdpPipelinesResult>;
|
|
23
|
+
/**
|
|
24
|
+
* A collection of arguments for invoking getGdpGdpPipelines.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetGdpGdpPipelinesArgs {
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the compartment in which to list resources.
|
|
29
|
+
*/
|
|
30
|
+
compartmentId?: string;
|
|
31
|
+
/**
|
|
32
|
+
* A filter to return only resources that match the entire display name given.
|
|
33
|
+
*/
|
|
34
|
+
displayName?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL.
|
|
37
|
+
*/
|
|
38
|
+
env?: string;
|
|
39
|
+
filters?: inputs.oci.GetGdpGdpPipelinesFilter[];
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* A collection of values returned by getGdpGdpPipelines.
|
|
43
|
+
*/
|
|
44
|
+
export interface GetGdpGdpPipelinesResult {
|
|
45
|
+
/**
|
|
46
|
+
* The OCID of the compartment.
|
|
47
|
+
*/
|
|
48
|
+
readonly compartmentId?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Pipeline short name.
|
|
51
|
+
*/
|
|
52
|
+
readonly displayName?: string;
|
|
53
|
+
readonly env?: string;
|
|
54
|
+
readonly filters?: outputs.oci.GetGdpGdpPipelinesFilter[];
|
|
55
|
+
/**
|
|
56
|
+
* The list of gdp_pipeline_collection.
|
|
57
|
+
*/
|
|
58
|
+
readonly gdpPipelineCollections: outputs.oci.GetGdpGdpPipelinesGdpPipelineCollection[];
|
|
59
|
+
/**
|
|
60
|
+
* The provider-assigned unique ID for this managed resource.
|
|
61
|
+
*/
|
|
62
|
+
readonly id: string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* This data source provides the list of Gdp Pipelines in Oracle Cloud Infrastructure Gdp service.
|
|
66
|
+
*
|
|
67
|
+
* Returns a list of pipelines.
|
|
68
|
+
*
|
|
69
|
+
* ## Example Usage
|
|
70
|
+
*
|
|
71
|
+
* ```typescript
|
|
72
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
73
|
+
* import * as oci from "@pulumi/oci";
|
|
74
|
+
*
|
|
75
|
+
* const testGdpPipelines = oci.oci.getGdpGdpPipelines({
|
|
76
|
+
* compartmentId: compartmentId,
|
|
77
|
+
* displayName: gdpPipelineDisplayName,
|
|
78
|
+
* env: gdpEnv,
|
|
79
|
+
* });
|
|
80
|
+
* ```
|
|
81
|
+
*/
|
|
82
|
+
export declare function getGdpGdpPipelinesOutput(args?: GetGdpGdpPipelinesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGdpGdpPipelinesResult>;
|
|
83
|
+
/**
|
|
84
|
+
* A collection of arguments for invoking getGdpGdpPipelines.
|
|
85
|
+
*/
|
|
86
|
+
export interface GetGdpGdpPipelinesOutputArgs {
|
|
87
|
+
/**
|
|
88
|
+
* The ID of the compartment in which to list resources.
|
|
89
|
+
*/
|
|
90
|
+
compartmentId?: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* A filter to return only resources that match the entire display name given.
|
|
93
|
+
*/
|
|
94
|
+
displayName?: pulumi.Input<string>;
|
|
95
|
+
/**
|
|
96
|
+
* The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL.
|
|
97
|
+
*/
|
|
98
|
+
env?: pulumi.Input<string>;
|
|
99
|
+
filters?: pulumi.Input<pulumi.Input<inputs.oci.GetGdpGdpPipelinesFilterArgs>[]>;
|
|
100
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
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.getGdpGdpPipelinesOutput = exports.getGdpGdpPipelines = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source provides the list of Gdp Pipelines in Oracle Cloud Infrastructure Gdp service.
|
|
10
|
+
*
|
|
11
|
+
* Returns a list of pipelines.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as oci from "@pulumi/oci";
|
|
18
|
+
*
|
|
19
|
+
* const testGdpPipelines = oci.oci.getGdpGdpPipelines({
|
|
20
|
+
* compartmentId: compartmentId,
|
|
21
|
+
* displayName: gdpPipelineDisplayName,
|
|
22
|
+
* env: gdpEnv,
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
function getGdpGdpPipelines(args, opts) {
|
|
27
|
+
args = args || {};
|
|
28
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
29
|
+
return pulumi.runtime.invoke("oci:oci/getGdpGdpPipelines:getGdpGdpPipelines", {
|
|
30
|
+
"compartmentId": args.compartmentId,
|
|
31
|
+
"displayName": args.displayName,
|
|
32
|
+
"env": args.env,
|
|
33
|
+
"filters": args.filters,
|
|
34
|
+
}, opts);
|
|
35
|
+
}
|
|
36
|
+
exports.getGdpGdpPipelines = getGdpGdpPipelines;
|
|
37
|
+
/**
|
|
38
|
+
* This data source provides the list of Gdp Pipelines in Oracle Cloud Infrastructure Gdp service.
|
|
39
|
+
*
|
|
40
|
+
* Returns a list of pipelines.
|
|
41
|
+
*
|
|
42
|
+
* ## Example Usage
|
|
43
|
+
*
|
|
44
|
+
* ```typescript
|
|
45
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
46
|
+
* import * as oci from "@pulumi/oci";
|
|
47
|
+
*
|
|
48
|
+
* const testGdpPipelines = oci.oci.getGdpGdpPipelines({
|
|
49
|
+
* compartmentId: compartmentId,
|
|
50
|
+
* displayName: gdpPipelineDisplayName,
|
|
51
|
+
* env: gdpEnv,
|
|
52
|
+
* });
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
function getGdpGdpPipelinesOutput(args, opts) {
|
|
56
|
+
args = args || {};
|
|
57
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
58
|
+
return pulumi.runtime.invokeOutput("oci:oci/getGdpGdpPipelines:getGdpGdpPipelines", {
|
|
59
|
+
"compartmentId": args.compartmentId,
|
|
60
|
+
"displayName": args.displayName,
|
|
61
|
+
"env": args.env,
|
|
62
|
+
"filters": args.filters,
|
|
63
|
+
}, opts);
|
|
64
|
+
}
|
|
65
|
+
exports.getGdpGdpPipelinesOutput = getGdpGdpPipelinesOutput;
|
|
66
|
+
//# sourceMappingURL=getGdpGdpPipelines.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getGdpGdpPipelines.js","sourceRoot":"","sources":["../../oci/getGdpGdpPipelines.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;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,+CAA+C,EAAE;QAC1E,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gDASC;AA4CD;;;;;;;;;;;;;;;;;GAiBG;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,+CAA+C,EAAE;QAChF,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4DASC"}
|
package/oci/index.d.ts
CHANGED
|
@@ -64,6 +64,9 @@ export declare const DistributedDatabaseDistributedDatabase: typeof import("./di
|
|
|
64
64
|
export { DistributedDatabaseDistributedDatabasePrivateEndpointArgs, DistributedDatabaseDistributedDatabasePrivateEndpointState } from "./distributedDatabaseDistributedDatabasePrivateEndpoint";
|
|
65
65
|
export type DistributedDatabaseDistributedDatabasePrivateEndpoint = import("./distributedDatabaseDistributedDatabasePrivateEndpoint").DistributedDatabaseDistributedDatabasePrivateEndpoint;
|
|
66
66
|
export declare const DistributedDatabaseDistributedDatabasePrivateEndpoint: typeof import("./distributedDatabaseDistributedDatabasePrivateEndpoint").DistributedDatabaseDistributedDatabasePrivateEndpoint;
|
|
67
|
+
export { GdpGdpPipelineArgs, GdpGdpPipelineState } from "./gdpGdpPipeline";
|
|
68
|
+
export type GdpGdpPipeline = import("./gdpGdpPipeline").GdpGdpPipeline;
|
|
69
|
+
export declare const GdpGdpPipeline: typeof import("./gdpGdpPipeline").GdpGdpPipeline;
|
|
67
70
|
export { GetAiDataPlatformAiDataPlatformArgs, GetAiDataPlatformAiDataPlatformResult, GetAiDataPlatformAiDataPlatformOutputArgs } from "./getAiDataPlatformAiDataPlatform";
|
|
68
71
|
export declare const getAiDataPlatformAiDataPlatform: typeof import("./getAiDataPlatformAiDataPlatform").getAiDataPlatformAiDataPlatform;
|
|
69
72
|
export declare const getAiDataPlatformAiDataPlatformOutput: typeof import("./getAiDataPlatformAiDataPlatform").getAiDataPlatformAiDataPlatformOutput;
|
|
@@ -220,6 +223,12 @@ export declare const getDistributedDatabaseDistributedDatabasePrivateEndpointsOu
|
|
|
220
223
|
export { GetDistributedDatabaseDistributedDatabasesArgs, GetDistributedDatabaseDistributedDatabasesResult, GetDistributedDatabaseDistributedDatabasesOutputArgs } from "./getDistributedDatabaseDistributedDatabases";
|
|
221
224
|
export declare const getDistributedDatabaseDistributedDatabases: typeof import("./getDistributedDatabaseDistributedDatabases").getDistributedDatabaseDistributedDatabases;
|
|
222
225
|
export declare const getDistributedDatabaseDistributedDatabasesOutput: typeof import("./getDistributedDatabaseDistributedDatabases").getDistributedDatabaseDistributedDatabasesOutput;
|
|
226
|
+
export { GetGdpGdpPipelineArgs, GetGdpGdpPipelineResult, GetGdpGdpPipelineOutputArgs } from "./getGdpGdpPipeline";
|
|
227
|
+
export declare const getGdpGdpPipeline: typeof import("./getGdpGdpPipeline").getGdpGdpPipeline;
|
|
228
|
+
export declare const getGdpGdpPipelineOutput: typeof import("./getGdpGdpPipeline").getGdpGdpPipelineOutput;
|
|
229
|
+
export { GetGdpGdpPipelinesArgs, GetGdpGdpPipelinesResult, GetGdpGdpPipelinesOutputArgs } from "./getGdpGdpPipelines";
|
|
230
|
+
export declare const getGdpGdpPipelines: typeof import("./getGdpGdpPipelines").getGdpGdpPipelines;
|
|
231
|
+
export declare const getGdpGdpPipelinesOutput: typeof import("./getGdpGdpPipelines").getGdpGdpPipelinesOutput;
|
|
223
232
|
export { GetIotDigitalTwinAdapterArgs, GetIotDigitalTwinAdapterResult, GetIotDigitalTwinAdapterOutputArgs } from "./getIotDigitalTwinAdapter";
|
|
224
233
|
export declare const getIotDigitalTwinAdapter: typeof import("./getIotDigitalTwinAdapter").getIotDigitalTwinAdapter;
|
|
225
234
|
export declare const getIotDigitalTwinAdapterOutput: typeof import("./getIotDigitalTwinAdapter").getIotDigitalTwinAdapterOutput;
|
package/oci/index.js
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.SelfSubscription = exports.ResourceAnalyticsTenancyAttachment = exports.ResourceAnalyticsResourceAnalyticsInstanceOacManagement = exports.ResourceAnalyticsResourceAnalyticsInstance = exports.ResourceAnalyticsMonitoredRegion = exports.PsaPrivateServiceAccess = exports.ManagedKafkaKafkaClusterSuperusersManagement = exports.ManagedKafkaKafkaClusterConfig = exports.ManagedKafkaKafkaCluster = exports.IotIotDomainGroupConfigureDataAccess = exports.IotIotDomainGroup = exports.IotIotDomainConfigureDataAccess = exports.IotIotDomainChangeDataRetentionPeriod = exports.IotIotDomain = exports.IotDigitalTwinRelationship = exports.IotDigitalTwinModel = exports.IotDigitalTwinInstanceInvokeRawCommand = exports.IotDigitalTwinInstance = exports.IotDigitalTwinAdapter = exports.getWlmsWlsDomainsOutput = exports.getWlmsWlsDomains = exports.getWlmsWlsDomainServersOutput = exports.getWlmsWlsDomainServers = exports.getWlmsWlsDomainServerInstalledPatchesOutput = exports.getWlmsWlsDomainServerInstalledPatches = exports.getWlmsWlsDomainServerBackupsOutput = exports.getWlmsWlsDomainServerBackups = void 0;
|
|
5
|
+
exports.getBatchBatchContexts = exports.getBatchBatchContextShapesOutput = exports.getBatchBatchContextShapes = exports.getBatchBatchContextOutput = exports.getBatchBatchContext = exports.getApiaccesscontrolPrivilegedApiRequestsOutput = exports.getApiaccesscontrolPrivilegedApiRequests = exports.getApiaccesscontrolPrivilegedApiRequestOutput = exports.getApiaccesscontrolPrivilegedApiRequest = exports.getApiaccesscontrolPrivilegedApiControlsOutput = exports.getApiaccesscontrolPrivilegedApiControls = exports.getApiaccesscontrolPrivilegedApiControlOutput = exports.getApiaccesscontrolPrivilegedApiControl = exports.getApiaccesscontrolApiMetadatasOutput = exports.getApiaccesscontrolApiMetadatas = exports.getApiaccesscontrolApiMetadataByEntityTypesOutput = exports.getApiaccesscontrolApiMetadataByEntityTypes = exports.getApiaccesscontrolApiMetadataOutput = exports.getApiaccesscontrolApiMetadata = exports.getApiPlatformApiPlatformInstancesOutput = exports.getApiPlatformApiPlatformInstances = exports.getApiPlatformApiPlatformInstanceOutput = exports.getApiPlatformApiPlatformInstance = exports.getAiDataPlatformAiDataPlatformsOutput = exports.getAiDataPlatformAiDataPlatforms = exports.getAiDataPlatformAiDataPlatformOutput = exports.getAiDataPlatformAiDataPlatform = exports.GdpGdpPipeline = exports.DistributedDatabaseDistributedDatabasePrivateEndpoint = exports.DistributedDatabaseDistributedDatabase = exports.DistributedDatabaseDistributedAutonomousDatabase = exports.DifStack = exports.DbmulticloudOracleDbGcpKeyRing = exports.DbmulticloudOracleDbGcpIdentityConnector = exports.DbmulticloudOracleDbAzureVaultAssociation = exports.DbmulticloudOracleDbAzureVault = exports.DbmulticloudOracleDbAzureConnector = exports.DbmulticloudOracleDbAzureBlobMount = exports.DbmulticloudOracleDbAzureBlobContainer = exports.DbmulticloudOracleDbAwsKey = exports.DbmulticloudOracleDbAwsIdentityConnector = exports.DbmulticloudMultiCloudResourceDiscovery = exports.BatchBatchTaskProfile = exports.BatchBatchTaskEnvironment = exports.BatchBatchJobPool = exports.BatchBatchContext = exports.ApiaccesscontrolPrivilegedApiRequest = exports.ApiaccesscontrolPrivilegedApiControl = exports.ApiPlatformApiPlatformInstance = exports.AiDataPlatformAiDataPlatform = void 0;
|
|
6
|
+
exports.getDbmulticloudOracleDbGcpIdentityConnector = exports.getDbmulticloudOracleDbAzureVaultsOutput = exports.getDbmulticloudOracleDbAzureVaults = exports.getDbmulticloudOracleDbAzureVaultAssociationsOutput = exports.getDbmulticloudOracleDbAzureVaultAssociations = exports.getDbmulticloudOracleDbAzureVaultAssociationOutput = exports.getDbmulticloudOracleDbAzureVaultAssociation = exports.getDbmulticloudOracleDbAzureVaultOutput = exports.getDbmulticloudOracleDbAzureVault = exports.getDbmulticloudOracleDbAzureKeysOutput = exports.getDbmulticloudOracleDbAzureKeys = exports.getDbmulticloudOracleDbAzureKeyOutput = exports.getDbmulticloudOracleDbAzureKey = exports.getDbmulticloudOracleDbAzureConnectorsOutput = exports.getDbmulticloudOracleDbAzureConnectors = exports.getDbmulticloudOracleDbAzureConnectorOutput = exports.getDbmulticloudOracleDbAzureConnector = exports.getDbmulticloudOracleDbAzureBlobMountsOutput = exports.getDbmulticloudOracleDbAzureBlobMounts = exports.getDbmulticloudOracleDbAzureBlobMountOutput = exports.getDbmulticloudOracleDbAzureBlobMount = exports.getDbmulticloudOracleDbAzureBlobContainersOutput = exports.getDbmulticloudOracleDbAzureBlobContainers = exports.getDbmulticloudOracleDbAzureBlobContainerOutput = exports.getDbmulticloudOracleDbAzureBlobContainer = exports.getDbmulticloudOracleDbAwsKeysOutput = exports.getDbmulticloudOracleDbAwsKeys = exports.getDbmulticloudOracleDbAwsKeyOutput = exports.getDbmulticloudOracleDbAwsKey = exports.getDbmulticloudOracleDbAwsIdentityConnectorsOutput = exports.getDbmulticloudOracleDbAwsIdentityConnectors = exports.getDbmulticloudOracleDbAwsIdentityConnectorOutput = exports.getDbmulticloudOracleDbAwsIdentityConnector = exports.getDbmulticloudMultiCloudResourceDiscoveryOutput = exports.getDbmulticloudMultiCloudResourceDiscovery = exports.getDbmulticloudMultiCloudResourceDiscoveriesOutput = exports.getDbmulticloudMultiCloudResourceDiscoveries = exports.getBatchBatchTaskProfilesOutput = exports.getBatchBatchTaskProfiles = exports.getBatchBatchTaskProfileOutput = exports.getBatchBatchTaskProfile = exports.getBatchBatchTaskEnvironmentsOutput = exports.getBatchBatchTaskEnvironments = exports.getBatchBatchTaskEnvironmentOutput = exports.getBatchBatchTaskEnvironment = exports.getBatchBatchJobPoolsOutput = exports.getBatchBatchJobPools = exports.getBatchBatchJobPoolOutput = exports.getBatchBatchJobPool = exports.getBatchBatchContextsOutput = void 0;
|
|
7
|
+
exports.getIotDigitalTwinRelationships = exports.getIotDigitalTwinRelationshipOutput = exports.getIotDigitalTwinRelationship = exports.getIotDigitalTwinModelsOutput = exports.getIotDigitalTwinModels = exports.getIotDigitalTwinModelSpecOutput = exports.getIotDigitalTwinModelSpec = exports.getIotDigitalTwinModelOutput = exports.getIotDigitalTwinModel = exports.getIotDigitalTwinInstancesOutput = exports.getIotDigitalTwinInstances = exports.getIotDigitalTwinInstanceContentOutput = exports.getIotDigitalTwinInstanceContent = exports.getIotDigitalTwinInstanceOutput = exports.getIotDigitalTwinInstance = exports.getIotDigitalTwinAdaptersOutput = exports.getIotDigitalTwinAdapters = exports.getIotDigitalTwinAdapterOutput = exports.getIotDigitalTwinAdapter = exports.getGdpGdpPipelinesOutput = exports.getGdpGdpPipelines = exports.getGdpGdpPipelineOutput = exports.getGdpGdpPipeline = exports.getDistributedDatabaseDistributedDatabasesOutput = exports.getDistributedDatabaseDistributedDatabases = exports.getDistributedDatabaseDistributedDatabasePrivateEndpointsOutput = exports.getDistributedDatabaseDistributedDatabasePrivateEndpoints = exports.getDistributedDatabaseDistributedDatabasePrivateEndpointOutput = exports.getDistributedDatabaseDistributedDatabasePrivateEndpoint = exports.getDistributedDatabaseDistributedDatabaseOutput = exports.getDistributedDatabaseDistributedDatabase = exports.getDistributedDatabaseDistributedAutonomousDatabasesOutput = exports.getDistributedDatabaseDistributedAutonomousDatabases = exports.getDistributedDatabaseDistributedAutonomousDatabaseOutput = exports.getDistributedDatabaseDistributedAutonomousDatabase = exports.getDifStacksOutput = exports.getDifStacks = exports.getDifStackOutput = exports.getDifStack = exports.getDbmulticloudOracleDbGcpKeysOutput = exports.getDbmulticloudOracleDbGcpKeys = exports.getDbmulticloudOracleDbGcpKeyRingsOutput = exports.getDbmulticloudOracleDbGcpKeyRings = exports.getDbmulticloudOracleDbGcpKeyRingOutput = exports.getDbmulticloudOracleDbGcpKeyRing = exports.getDbmulticloudOracleDbGcpKeyOutput = exports.getDbmulticloudOracleDbGcpKey = exports.getDbmulticloudOracleDbGcpIdentityConnectorsOutput = exports.getDbmulticloudOracleDbGcpIdentityConnectors = exports.getDbmulticloudOracleDbGcpIdentityConnectorOutput = void 0;
|
|
8
|
+
exports.getPsaPsaServices = exports.getPsaPrivateServiceAccessesOutput = exports.getPsaPrivateServiceAccesses = exports.getPsaPrivateServiceAccessOutput = exports.getPsaPrivateServiceAccess = exports.getMulticloudResourceAnchorsOutput = exports.getMulticloudResourceAnchors = exports.getMulticloudResourceAnchorOutput = exports.getMulticloudResourceAnchor = exports.getMulticloudOmHubMulticloudResourcesOutput = exports.getMulticloudOmHubMulticloudResources = exports.getMulticloudOmHubMultiCloudsMetadataOutput = exports.getMulticloudOmHubMultiCloudsMetadata = exports.getMulticloudOmHubMultiCloudMetadataOutput = exports.getMulticloudOmHubMultiCloudMetadata = exports.getMulticloudNetworkAnchorsOutput = exports.getMulticloudNetworkAnchors = exports.getMulticloudNetworkAnchorOutput = exports.getMulticloudNetworkAnchor = exports.getMulticloudMulticloudsubscriptionsOutput = exports.getMulticloudMulticloudsubscriptions = exports.getMulticloudExternalLocationsMetadataOutput = exports.getMulticloudExternalLocationsMetadata = exports.getMulticloudExternalLocationSummariesMetadataOutput = exports.getMulticloudExternalLocationSummariesMetadata = exports.getMulticloudExternalLocationMappingMetadataOutput = exports.getMulticloudExternalLocationMappingMetadata = exports.getManagedKafkaNodeShapesOutput = exports.getManagedKafkaNodeShapes = exports.getManagedKafkaKafkaClustersOutput = exports.getManagedKafkaKafkaClusters = exports.getManagedKafkaKafkaClusterConfigsOutput = exports.getManagedKafkaKafkaClusterConfigs = exports.getManagedKafkaKafkaClusterConfigVersionsOutput = exports.getManagedKafkaKafkaClusterConfigVersions = exports.getManagedKafkaKafkaClusterConfigVersionOutput = exports.getManagedKafkaKafkaClusterConfigVersion = exports.getManagedKafkaKafkaClusterConfigOutput = exports.getManagedKafkaKafkaClusterConfig = exports.getManagedKafkaKafkaClusterOutput = exports.getManagedKafkaKafkaCluster = exports.getIotIotDomainsOutput = exports.getIotIotDomains = exports.getIotIotDomainGroupsOutput = exports.getIotIotDomainGroups = exports.getIotIotDomainGroupOutput = exports.getIotIotDomainGroup = exports.getIotIotDomainOutput = exports.getIotIotDomain = exports.getIotDigitalTwinRelationshipsOutput = void 0;
|
|
9
|
+
exports.getWlmsWlsDomainServer = exports.getWlmsWlsDomainScanResultsOutput = exports.getWlmsWlsDomainScanResults = exports.getWlmsWlsDomainApplicablePatchesOutput = exports.getWlmsWlsDomainApplicablePatches = exports.getWlmsWlsDomainAgreementRecordsOutput = exports.getWlmsWlsDomainAgreementRecords = exports.getWlmsWlsDomainOutput = exports.getWlmsWlsDomain = exports.getWlmsManagedInstancesOutput = exports.getWlmsManagedInstances = exports.getWlmsManagedInstanceServersOutput = exports.getWlmsManagedInstanceServers = exports.getWlmsManagedInstanceServerInstalledPatchesOutput = exports.getWlmsManagedInstanceServerInstalledPatches = exports.getWlmsManagedInstanceServerOutput = exports.getWlmsManagedInstanceServer = exports.getWlmsManagedInstanceScanResultsOutput = exports.getWlmsManagedInstanceScanResults = exports.getWlmsManagedInstanceOutput = exports.getWlmsManagedInstance = exports.getSelfSubscriptionsOutput = exports.getSelfSubscriptions = exports.getSelfSubscriptionTokenOutput = exports.getSelfSubscriptionToken = exports.getSelfSubscriptionOutput = exports.getSelfSubscription = exports.getSelfPartnerSubscriptionsOutput = exports.getSelfPartnerSubscriptions = exports.getResourceAnalyticsTenancyAttachmentsOutput = exports.getResourceAnalyticsTenancyAttachments = exports.getResourceAnalyticsTenancyAttachmentOutput = exports.getResourceAnalyticsTenancyAttachment = exports.getResourceAnalyticsResourceAnalyticsInstancesOutput = exports.getResourceAnalyticsResourceAnalyticsInstances = exports.getResourceAnalyticsResourceAnalyticsInstanceOutput = exports.getResourceAnalyticsResourceAnalyticsInstance = exports.getResourceAnalyticsMonitoredRegionsOutput = exports.getResourceAnalyticsMonitoredRegions = exports.getResourceAnalyticsMonitoredRegionOutput = exports.getResourceAnalyticsMonitoredRegion = exports.getPsaPsaWorkRequestsOutput = exports.getPsaPsaWorkRequests = exports.getPsaPsaWorkRequestLogsOutput = exports.getPsaPsaWorkRequestLogs = exports.getPsaPsaWorkRequestErrorsOutput = exports.getPsaPsaWorkRequestErrors = exports.getPsaPsaWorkRequestOutput = exports.getPsaPsaWorkRequest = exports.getPsaPsaServicesOutput = void 0;
|
|
10
|
+
exports.SelfSubscription = exports.ResourceAnalyticsTenancyAttachment = exports.ResourceAnalyticsResourceAnalyticsInstanceOacManagement = exports.ResourceAnalyticsResourceAnalyticsInstance = exports.ResourceAnalyticsMonitoredRegion = exports.PsaPrivateServiceAccess = exports.ManagedKafkaKafkaClusterSuperusersManagement = exports.ManagedKafkaKafkaClusterConfig = exports.ManagedKafkaKafkaCluster = exports.IotIotDomainGroupConfigureDataAccess = exports.IotIotDomainGroup = exports.IotIotDomainConfigureDataAccess = exports.IotIotDomainChangeDataRetentionPeriod = exports.IotIotDomain = exports.IotDigitalTwinRelationship = exports.IotDigitalTwinModel = exports.IotDigitalTwinInstanceInvokeRawCommand = exports.IotDigitalTwinInstance = exports.IotDigitalTwinAdapter = exports.getWlmsWlsDomainsOutput = exports.getWlmsWlsDomains = exports.getWlmsWlsDomainServersOutput = exports.getWlmsWlsDomainServers = exports.getWlmsWlsDomainServerInstalledPatchesOutput = exports.getWlmsWlsDomainServerInstalledPatches = exports.getWlmsWlsDomainServerBackupsOutput = exports.getWlmsWlsDomainServerBackups = exports.getWlmsWlsDomainServerBackupContentOutput = exports.getWlmsWlsDomainServerBackupContent = exports.getWlmsWlsDomainServerBackupOutput = exports.getWlmsWlsDomainServerBackup = exports.getWlmsWlsDomainServerOutput = void 0;
|
|
11
11
|
const pulumi = require("@pulumi/pulumi");
|
|
12
12
|
const utilities = require("../utilities");
|
|
13
13
|
exports.AiDataPlatformAiDataPlatform = null;
|
|
@@ -54,6 +54,8 @@ exports.DistributedDatabaseDistributedDatabase = null;
|
|
|
54
54
|
utilities.lazyLoad(exports, ["DistributedDatabaseDistributedDatabase"], () => require("./distributedDatabaseDistributedDatabase"));
|
|
55
55
|
exports.DistributedDatabaseDistributedDatabasePrivateEndpoint = null;
|
|
56
56
|
utilities.lazyLoad(exports, ["DistributedDatabaseDistributedDatabasePrivateEndpoint"], () => require("./distributedDatabaseDistributedDatabasePrivateEndpoint"));
|
|
57
|
+
exports.GdpGdpPipeline = null;
|
|
58
|
+
utilities.lazyLoad(exports, ["GdpGdpPipeline"], () => require("./gdpGdpPipeline"));
|
|
57
59
|
exports.getAiDataPlatformAiDataPlatform = null;
|
|
58
60
|
exports.getAiDataPlatformAiDataPlatformOutput = null;
|
|
59
61
|
utilities.lazyLoad(exports, ["getAiDataPlatformAiDataPlatform", "getAiDataPlatformAiDataPlatformOutput"], () => require("./getAiDataPlatformAiDataPlatform"));
|
|
@@ -210,6 +212,12 @@ utilities.lazyLoad(exports, ["getDistributedDatabaseDistributedDatabasePrivateEn
|
|
|
210
212
|
exports.getDistributedDatabaseDistributedDatabases = null;
|
|
211
213
|
exports.getDistributedDatabaseDistributedDatabasesOutput = null;
|
|
212
214
|
utilities.lazyLoad(exports, ["getDistributedDatabaseDistributedDatabases", "getDistributedDatabaseDistributedDatabasesOutput"], () => require("./getDistributedDatabaseDistributedDatabases"));
|
|
215
|
+
exports.getGdpGdpPipeline = null;
|
|
216
|
+
exports.getGdpGdpPipelineOutput = null;
|
|
217
|
+
utilities.lazyLoad(exports, ["getGdpGdpPipeline", "getGdpGdpPipelineOutput"], () => require("./getGdpGdpPipeline"));
|
|
218
|
+
exports.getGdpGdpPipelines = null;
|
|
219
|
+
exports.getGdpGdpPipelinesOutput = null;
|
|
220
|
+
utilities.lazyLoad(exports, ["getGdpGdpPipelines", "getGdpGdpPipelinesOutput"], () => require("./getGdpGdpPipelines"));
|
|
213
221
|
exports.getIotDigitalTwinAdapter = null;
|
|
214
222
|
exports.getIotDigitalTwinAdapterOutput = null;
|
|
215
223
|
utilities.lazyLoad(exports, ["getIotDigitalTwinAdapter", "getIotDigitalTwinAdapterOutput"], () => require("./getIotDigitalTwinAdapter"));
|
|
@@ -494,6 +502,8 @@ const _module = {
|
|
|
494
502
|
return new exports.DistributedDatabaseDistributedDatabase(name, undefined, { urn });
|
|
495
503
|
case "oci:oci/distributedDatabaseDistributedDatabasePrivateEndpoint:DistributedDatabaseDistributedDatabasePrivateEndpoint":
|
|
496
504
|
return new exports.DistributedDatabaseDistributedDatabasePrivateEndpoint(name, undefined, { urn });
|
|
505
|
+
case "oci:oci/gdpGdpPipeline:GdpGdpPipeline":
|
|
506
|
+
return new exports.GdpGdpPipeline(name, undefined, { urn });
|
|
497
507
|
case "oci:oci/iotDigitalTwinAdapter:IotDigitalTwinAdapter":
|
|
498
508
|
return new exports.IotDigitalTwinAdapter(name, undefined, { urn });
|
|
499
509
|
case "oci:oci/iotDigitalTwinInstance:IotDigitalTwinInstance":
|
|
@@ -559,6 +569,7 @@ pulumi.runtime.registerResourceModule("oci", "oci/difStack", _module);
|
|
|
559
569
|
pulumi.runtime.registerResourceModule("oci", "oci/distributedDatabaseDistributedAutonomousDatabase", _module);
|
|
560
570
|
pulumi.runtime.registerResourceModule("oci", "oci/distributedDatabaseDistributedDatabase", _module);
|
|
561
571
|
pulumi.runtime.registerResourceModule("oci", "oci/distributedDatabaseDistributedDatabasePrivateEndpoint", _module);
|
|
572
|
+
pulumi.runtime.registerResourceModule("oci", "oci/gdpGdpPipeline", _module);
|
|
562
573
|
pulumi.runtime.registerResourceModule("oci", "oci/iotDigitalTwinAdapter", _module);
|
|
563
574
|
pulumi.runtime.registerResourceModule("oci", "oci/iotDigitalTwinInstance", _module);
|
|
564
575
|
pulumi.runtime.registerResourceModule("oci", "oci/iotDigitalTwinInstanceInvokeRawCommand", _module);
|