@pulumi/oci 4.2.0 → 4.3.0-alpha.1773204600
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/core/instanceConfiguration.d.ts +16 -4
- package/core/instanceConfiguration.js +16 -4
- package/core/instanceConfiguration.js.map +1 -1
- package/core/vnicAttachment.d.ts +6 -1
- package/core/vnicAttachment.js +6 -1
- package/core/vnicAttachment.js.map +1 -1
- package/email/emailIpPool.d.ts +13 -0
- package/email/emailIpPool.js +3 -0
- package/email/emailIpPool.js.map +1 -1
- package/email/getEmailIpPool.d.ts +4 -0
- package/email/getEmailIpPool.js.map +1 -1
- package/identity/domainsGroup.d.ts +1 -1
- package/identity/domainsIdentityProofingProvider.d.ts +855 -0
- package/identity/domainsIdentityProofingProvider.js +163 -0
- package/identity/domainsIdentityProofingProvider.js.map +1 -0
- package/identity/domainsIdentityProofingProviderTemplate.d.ts +716 -0
- package/identity/domainsIdentityProofingProviderTemplate.js +149 -0
- package/identity/domainsIdentityProofingProviderTemplate.js.map +1 -0
- package/identity/getDomainsIdentityProofingProvider.d.ts +203 -0
- package/identity/getDomainsIdentityProofingProvider.js +74 -0
- package/identity/getDomainsIdentityProofingProvider.js.map +1 -0
- package/identity/getDomainsIdentityProofingProviderTemplate.d.ts +191 -0
- package/identity/getDomainsIdentityProofingProviderTemplate.js +74 -0
- package/identity/getDomainsIdentityProofingProviderTemplate.js.map +1 -0
- package/identity/getDomainsIdentityProofingProviderTemplates.d.ts +160 -0
- package/identity/getDomainsIdentityProofingProviderTemplates.js +88 -0
- package/identity/getDomainsIdentityProofingProviderTemplates.js.map +1 -0
- package/identity/getDomainsIdentityProofingProviders.d.ts +160 -0
- package/identity/getDomainsIdentityProofingProviders.js +88 -0
- package/identity/getDomainsIdentityProofingProviders.js.map +1 -0
- package/identity/index.d.ts +18 -0
- package/identity/index.js +30 -8
- package/identity/index.js.map +1 -1
- package/mysql/getMysqlConfiguration.d.ts +4 -0
- package/mysql/getMysqlConfiguration.js.map +1 -1
- package/mysql/mysqlConfiguration.d.ts +12 -0
- package/mysql/mysqlConfiguration.js.map +1 -1
- 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 +961 -190
- package/types/output.d.ts +1852 -226
|
@@ -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
|
@@ -55,6 +55,9 @@ export declare const DbmulticloudOracleDbGcpKeyRing: typeof import("./dbmulticlo
|
|
|
55
55
|
export { DifStackArgs, DifStackState } from "./difStack";
|
|
56
56
|
export type DifStack = import("./difStack").DifStack;
|
|
57
57
|
export declare const DifStack: typeof import("./difStack").DifStack;
|
|
58
|
+
export { GdpGdpPipelineArgs, GdpGdpPipelineState } from "./gdpGdpPipeline";
|
|
59
|
+
export type GdpGdpPipeline = import("./gdpGdpPipeline").GdpGdpPipeline;
|
|
60
|
+
export declare const GdpGdpPipeline: typeof import("./gdpGdpPipeline").GdpGdpPipeline;
|
|
58
61
|
export { GetAiDataPlatformAiDataPlatformArgs, GetAiDataPlatformAiDataPlatformResult, GetAiDataPlatformAiDataPlatformOutputArgs } from "./getAiDataPlatformAiDataPlatform";
|
|
59
62
|
export declare const getAiDataPlatformAiDataPlatform: typeof import("./getAiDataPlatformAiDataPlatform").getAiDataPlatformAiDataPlatform;
|
|
60
63
|
export declare const getAiDataPlatformAiDataPlatformOutput: typeof import("./getAiDataPlatformAiDataPlatform").getAiDataPlatformAiDataPlatformOutput;
|
|
@@ -193,6 +196,12 @@ export declare const getDifStackOutput: typeof import("./getDifStack").getDifSta
|
|
|
193
196
|
export { GetDifStacksArgs, GetDifStacksResult, GetDifStacksOutputArgs } from "./getDifStacks";
|
|
194
197
|
export declare const getDifStacks: typeof import("./getDifStacks").getDifStacks;
|
|
195
198
|
export declare const getDifStacksOutput: typeof import("./getDifStacks").getDifStacksOutput;
|
|
199
|
+
export { GetGdpGdpPipelineArgs, GetGdpGdpPipelineResult, GetGdpGdpPipelineOutputArgs } from "./getGdpGdpPipeline";
|
|
200
|
+
export declare const getGdpGdpPipeline: typeof import("./getGdpGdpPipeline").getGdpGdpPipeline;
|
|
201
|
+
export declare const getGdpGdpPipelineOutput: typeof import("./getGdpGdpPipeline").getGdpGdpPipelineOutput;
|
|
202
|
+
export { GetGdpGdpPipelinesArgs, GetGdpGdpPipelinesResult, GetGdpGdpPipelinesOutputArgs } from "./getGdpGdpPipelines";
|
|
203
|
+
export declare const getGdpGdpPipelines: typeof import("./getGdpGdpPipelines").getGdpGdpPipelines;
|
|
204
|
+
export declare const getGdpGdpPipelinesOutput: typeof import("./getGdpGdpPipelines").getGdpGdpPipelinesOutput;
|
|
196
205
|
export { GetIotDigitalTwinAdapterArgs, GetIotDigitalTwinAdapterResult, GetIotDigitalTwinAdapterOutputArgs } from "./getIotDigitalTwinAdapter";
|
|
197
206
|
export declare const getIotDigitalTwinAdapter: typeof import("./getIotDigitalTwinAdapter").getIotDigitalTwinAdapter;
|
|
198
207
|
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.ResourceAnalyticsTenancyAttachment = exports.ResourceAnalyticsResourceAnalyticsInstanceOacManagement = exports.ResourceAnalyticsResourceAnalyticsInstance = void 0;
|
|
5
|
+
exports.getBatchBatchJobPoolOutput = exports.getBatchBatchJobPool = exports.getBatchBatchContextsOutput = 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.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.getDbmulticloudOracleDbGcpIdentityConnectorsOutput = exports.getDbmulticloudOracleDbGcpIdentityConnectors = exports.getDbmulticloudOracleDbGcpIdentityConnectorOutput = 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 = void 0;
|
|
7
|
+
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 = 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.getDifStacksOutput = exports.getDifStacks = exports.getDifStackOutput = exports.getDifStack = exports.getDbmulticloudOracleDbGcpKeysOutput = exports.getDbmulticloudOracleDbGcpKeys = exports.getDbmulticloudOracleDbGcpKeyRingsOutput = exports.getDbmulticloudOracleDbGcpKeyRings = exports.getDbmulticloudOracleDbGcpKeyRingOutput = exports.getDbmulticloudOracleDbGcpKeyRing = exports.getDbmulticloudOracleDbGcpKeyOutput = exports.getDbmulticloudOracleDbGcpKey = void 0;
|
|
8
|
+
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 = 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 = void 0;
|
|
9
|
+
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 = 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.getResourceAnalyticsTenancyAttachmentsOutput = exports.getResourceAnalyticsTenancyAttachments = exports.getResourceAnalyticsTenancyAttachmentOutput = exports.getResourceAnalyticsTenancyAttachment = exports.getResourceAnalyticsResourceAnalyticsInstancesOutput = exports.getResourceAnalyticsResourceAnalyticsInstances = void 0;
|
|
10
|
+
exports.ResourceAnalyticsTenancyAttachment = exports.ResourceAnalyticsResourceAnalyticsInstanceOacManagement = exports.ResourceAnalyticsResourceAnalyticsInstance = exports.ResourceAnalyticsMonitoredRegion = exports.PsaPrivateServiceAccess = exports.ManagedKafkaKafkaClusterSuperusersManagement = exports.ManagedKafkaKafkaClusterConfig = exports.ManagedKafkaKafkaCluster = void 0;
|
|
11
11
|
const pulumi = require("@pulumi/pulumi");
|
|
12
12
|
const utilities = require("../utilities");
|
|
13
13
|
exports.AiDataPlatformAiDataPlatform = null;
|
|
@@ -48,6 +48,8 @@ exports.DbmulticloudOracleDbGcpKeyRing = null;
|
|
|
48
48
|
utilities.lazyLoad(exports, ["DbmulticloudOracleDbGcpKeyRing"], () => require("./dbmulticloudOracleDbGcpKeyRing"));
|
|
49
49
|
exports.DifStack = null;
|
|
50
50
|
utilities.lazyLoad(exports, ["DifStack"], () => require("./difStack"));
|
|
51
|
+
exports.GdpGdpPipeline = null;
|
|
52
|
+
utilities.lazyLoad(exports, ["GdpGdpPipeline"], () => require("./gdpGdpPipeline"));
|
|
51
53
|
exports.getAiDataPlatformAiDataPlatform = null;
|
|
52
54
|
exports.getAiDataPlatformAiDataPlatformOutput = null;
|
|
53
55
|
utilities.lazyLoad(exports, ["getAiDataPlatformAiDataPlatform", "getAiDataPlatformAiDataPlatformOutput"], () => require("./getAiDataPlatformAiDataPlatform"));
|
|
@@ -186,6 +188,12 @@ utilities.lazyLoad(exports, ["getDifStack", "getDifStackOutput"], () => require(
|
|
|
186
188
|
exports.getDifStacks = null;
|
|
187
189
|
exports.getDifStacksOutput = null;
|
|
188
190
|
utilities.lazyLoad(exports, ["getDifStacks", "getDifStacksOutput"], () => require("./getDifStacks"));
|
|
191
|
+
exports.getGdpGdpPipeline = null;
|
|
192
|
+
exports.getGdpGdpPipelineOutput = null;
|
|
193
|
+
utilities.lazyLoad(exports, ["getGdpGdpPipeline", "getGdpGdpPipelineOutput"], () => require("./getGdpGdpPipeline"));
|
|
194
|
+
exports.getGdpGdpPipelines = null;
|
|
195
|
+
exports.getGdpGdpPipelinesOutput = null;
|
|
196
|
+
utilities.lazyLoad(exports, ["getGdpGdpPipelines", "getGdpGdpPipelinesOutput"], () => require("./getGdpGdpPipelines"));
|
|
189
197
|
exports.getIotDigitalTwinAdapter = null;
|
|
190
198
|
exports.getIotDigitalTwinAdapterOutput = null;
|
|
191
199
|
utilities.lazyLoad(exports, ["getIotDigitalTwinAdapter", "getIotDigitalTwinAdapterOutput"], () => require("./getIotDigitalTwinAdapter"));
|
|
@@ -450,6 +458,8 @@ const _module = {
|
|
|
450
458
|
return new exports.DbmulticloudOracleDbGcpKeyRing(name, undefined, { urn });
|
|
451
459
|
case "oci:oci/difStack:DifStack":
|
|
452
460
|
return new exports.DifStack(name, undefined, { urn });
|
|
461
|
+
case "oci:oci/gdpGdpPipeline:GdpGdpPipeline":
|
|
462
|
+
return new exports.GdpGdpPipeline(name, undefined, { urn });
|
|
453
463
|
case "oci:oci/iotDigitalTwinAdapter:IotDigitalTwinAdapter":
|
|
454
464
|
return new exports.IotDigitalTwinAdapter(name, undefined, { urn });
|
|
455
465
|
case "oci:oci/iotDigitalTwinInstance:IotDigitalTwinInstance":
|
|
@@ -510,6 +520,7 @@ pulumi.runtime.registerResourceModule("oci", "oci/dbmulticloudOracleDbAzureVault
|
|
|
510
520
|
pulumi.runtime.registerResourceModule("oci", "oci/dbmulticloudOracleDbGcpIdentityConnector", _module);
|
|
511
521
|
pulumi.runtime.registerResourceModule("oci", "oci/dbmulticloudOracleDbGcpKeyRing", _module);
|
|
512
522
|
pulumi.runtime.registerResourceModule("oci", "oci/difStack", _module);
|
|
523
|
+
pulumi.runtime.registerResourceModule("oci", "oci/gdpGdpPipeline", _module);
|
|
513
524
|
pulumi.runtime.registerResourceModule("oci", "oci/iotDigitalTwinAdapter", _module);
|
|
514
525
|
pulumi.runtime.registerResourceModule("oci", "oci/iotDigitalTwinInstance", _module);
|
|
515
526
|
pulumi.runtime.registerResourceModule("oci", "oci/iotDigitalTwinInstanceInvokeRawCommand", _module);
|