@pulumi/confluentcloud 1.12.0-alpha.1679413757 → 1.12.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/getInvitation.d.ts +2 -8
- package/getInvitation.js +2 -8
- package/getInvitation.js.map +1 -1
- package/getNetworkLinkEndpoint.d.ts +101 -0
- package/getNetworkLinkEndpoint.js +66 -0
- package/getNetworkLinkEndpoint.js.map +1 -0
- package/getNetworkLinkService.d.ts +109 -0
- package/getNetworkLinkService.js +67 -0
- package/getNetworkLinkService.js.map +1 -0
- package/getUsers.d.ts +33 -0
- package/getUsers.js +31 -0
- package/getUsers.js.map +1 -0
- package/index.d.ts +14 -0
- package/index.js +20 -2
- package/index.js.map +1 -1
- package/invitation.d.ts +4 -0
- package/invitation.js +4 -0
- package/invitation.js.map +1 -1
- package/networkLinkEndpoint.d.ts +111 -0
- package/networkLinkEndpoint.js +79 -0
- package/networkLinkEndpoint.js.map +1 -0
- package/networkLinkService.d.ts +111 -0
- package/networkLinkService.js +76 -0
- package/networkLinkService.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/types/input.d.ts +84 -0
- package/types/output.d.ts +80 -0
package/getInvitation.d.ts
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
8
5
|
*
|
|
9
6
|
* `confluentcloud.Invitation` describes an Invitation data source.
|
|
10
7
|
*
|
|
@@ -68,10 +65,7 @@ export interface GetInvitationResult {
|
|
|
68
65
|
readonly users: outputs.GetInvitationUser[];
|
|
69
66
|
}
|
|
70
67
|
/**
|
|
71
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
75
69
|
*
|
|
76
70
|
* `confluentcloud.Invitation` describes an Invitation data source.
|
|
77
71
|
*
|
package/getInvitation.js
CHANGED
|
@@ -6,10 +6,7 @@ exports.getInvitationOutput = exports.getInvitation = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
13
10
|
*
|
|
14
11
|
* `confluentcloud.Invitation` describes an Invitation data source.
|
|
15
12
|
*
|
|
@@ -33,10 +30,7 @@ function getInvitation(args, opts) {
|
|
|
33
30
|
}
|
|
34
31
|
exports.getInvitation = getInvitation;
|
|
35
32
|
/**
|
|
36
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
40
34
|
*
|
|
41
35
|
* `confluentcloud.Invitation` describes an Invitation data source.
|
|
42
36
|
*
|
package/getInvitation.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInvitation.js","sourceRoot":"","sources":["../getInvitation.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getInvitation.js","sourceRoot":"","sources":["../getInvitation.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAE9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AAiDD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
6
|
+
*
|
|
7
|
+
* > **Note:** `confluentcloud.NetworkLinkEndpoint` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
8
|
+
* **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Early Access releases of the Early Access features at any time in Confluent’s sole discretion.
|
|
9
|
+
*
|
|
10
|
+
* `confluentcloud.NetworkLinkEndpoint` describes a Network Link Endpoint data source.
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
17
|
+
*
|
|
18
|
+
* const nle = confluentcloud.getNetworkLinkEndpoint({
|
|
19
|
+
* id: "nle-1357",
|
|
20
|
+
* environment: {
|
|
21
|
+
* id: "env-1234",
|
|
22
|
+
* },
|
|
23
|
+
* });
|
|
24
|
+
* export const networkLinkEndpoint = nle;
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
export declare function getNetworkLinkEndpoint(args: GetNetworkLinkEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkLinkEndpointResult>;
|
|
28
|
+
/**
|
|
29
|
+
* A collection of arguments for invoking getNetworkLinkEndpoint.
|
|
30
|
+
*/
|
|
31
|
+
export interface GetNetworkLinkEndpointArgs {
|
|
32
|
+
environment: inputs.GetNetworkLinkEndpointEnvironment;
|
|
33
|
+
/**
|
|
34
|
+
* The ID of the Environment that the Network Link Endpoint belongs to, for example, `env-xyz456`.
|
|
35
|
+
*/
|
|
36
|
+
id: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* A collection of values returned by getNetworkLinkEndpoint.
|
|
40
|
+
*/
|
|
41
|
+
export interface GetNetworkLinkEndpointResult {
|
|
42
|
+
/**
|
|
43
|
+
* (Optional String) The description of the Network Link Endpoint.
|
|
44
|
+
*/
|
|
45
|
+
readonly description: string;
|
|
46
|
+
/**
|
|
47
|
+
* (Optional String) The name of the Network Link Endpoint.
|
|
48
|
+
*/
|
|
49
|
+
readonly displayName: string;
|
|
50
|
+
readonly environment: outputs.GetNetworkLinkEndpointEnvironment;
|
|
51
|
+
/**
|
|
52
|
+
* (Required String) The ID of the Network Link Service
|
|
53
|
+
*/
|
|
54
|
+
readonly id: string;
|
|
55
|
+
/**
|
|
56
|
+
* (Required Configuration Block) supports the following:
|
|
57
|
+
*/
|
|
58
|
+
readonly networkLinkServices: outputs.GetNetworkLinkEndpointNetworkLinkService[];
|
|
59
|
+
/**
|
|
60
|
+
* (Required Configuration Block) supports the following:
|
|
61
|
+
*/
|
|
62
|
+
readonly networks: outputs.GetNetworkLinkEndpointNetwork[];
|
|
63
|
+
/**
|
|
64
|
+
* (Required String) The Confluent Resource Name of the Network Link Endpoint.
|
|
65
|
+
*/
|
|
66
|
+
readonly resourceName: string;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
70
|
+
*
|
|
71
|
+
* > **Note:** `confluentcloud.NetworkLinkEndpoint` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
72
|
+
* **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Early Access releases of the Early Access features at any time in Confluent’s sole discretion.
|
|
73
|
+
*
|
|
74
|
+
* `confluentcloud.NetworkLinkEndpoint` describes a Network Link Endpoint data source.
|
|
75
|
+
*
|
|
76
|
+
* ## Example Usage
|
|
77
|
+
*
|
|
78
|
+
* ```typescript
|
|
79
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
80
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
81
|
+
*
|
|
82
|
+
* const nle = confluentcloud.getNetworkLinkEndpoint({
|
|
83
|
+
* id: "nle-1357",
|
|
84
|
+
* environment: {
|
|
85
|
+
* id: "env-1234",
|
|
86
|
+
* },
|
|
87
|
+
* });
|
|
88
|
+
* export const networkLinkEndpoint = nle;
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
export declare function getNetworkLinkEndpointOutput(args: GetNetworkLinkEndpointOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNetworkLinkEndpointResult>;
|
|
92
|
+
/**
|
|
93
|
+
* A collection of arguments for invoking getNetworkLinkEndpoint.
|
|
94
|
+
*/
|
|
95
|
+
export interface GetNetworkLinkEndpointOutputArgs {
|
|
96
|
+
environment: pulumi.Input<inputs.GetNetworkLinkEndpointEnvironmentArgs>;
|
|
97
|
+
/**
|
|
98
|
+
* The ID of the Environment that the Network Link Endpoint belongs to, for example, `env-xyz456`.
|
|
99
|
+
*/
|
|
100
|
+
id: pulumi.Input<string>;
|
|
101
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
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.getNetworkLinkEndpointOutput = exports.getNetworkLinkEndpoint = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** `confluentcloud.NetworkLinkEndpoint` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
12
|
+
* **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Early Access releases of the Early Access features at any time in Confluent’s sole discretion.
|
|
13
|
+
*
|
|
14
|
+
* `confluentcloud.NetworkLinkEndpoint` describes a Network Link Endpoint data source.
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
21
|
+
*
|
|
22
|
+
* const nle = confluentcloud.getNetworkLinkEndpoint({
|
|
23
|
+
* id: "nle-1357",
|
|
24
|
+
* environment: {
|
|
25
|
+
* id: "env-1234",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* export const networkLinkEndpoint = nle;
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
function getNetworkLinkEndpoint(args, opts) {
|
|
32
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
33
|
+
return pulumi.runtime.invoke("confluentcloud:index/getNetworkLinkEndpoint:getNetworkLinkEndpoint", {
|
|
34
|
+
"environment": args.environment,
|
|
35
|
+
"id": args.id,
|
|
36
|
+
}, opts);
|
|
37
|
+
}
|
|
38
|
+
exports.getNetworkLinkEndpoint = getNetworkLinkEndpoint;
|
|
39
|
+
/**
|
|
40
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
41
|
+
*
|
|
42
|
+
* > **Note:** `confluentcloud.NetworkLinkEndpoint` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
43
|
+
* **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Early Access releases of the Early Access features at any time in Confluent’s sole discretion.
|
|
44
|
+
*
|
|
45
|
+
* `confluentcloud.NetworkLinkEndpoint` describes a Network Link Endpoint data source.
|
|
46
|
+
*
|
|
47
|
+
* ## Example Usage
|
|
48
|
+
*
|
|
49
|
+
* ```typescript
|
|
50
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
51
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
52
|
+
*
|
|
53
|
+
* const nle = confluentcloud.getNetworkLinkEndpoint({
|
|
54
|
+
* id: "nle-1357",
|
|
55
|
+
* environment: {
|
|
56
|
+
* id: "env-1234",
|
|
57
|
+
* },
|
|
58
|
+
* });
|
|
59
|
+
* export const networkLinkEndpoint = nle;
|
|
60
|
+
* ```
|
|
61
|
+
*/
|
|
62
|
+
function getNetworkLinkEndpointOutput(args, opts) {
|
|
63
|
+
return pulumi.output(args).apply((a) => getNetworkLinkEndpoint(a, opts));
|
|
64
|
+
}
|
|
65
|
+
exports.getNetworkLinkEndpointOutput = getNetworkLinkEndpointOutput;
|
|
66
|
+
//# sourceMappingURL=getNetworkLinkEndpoint.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getNetworkLinkEndpoint.js","sourceRoot":"","sources":["../getNetworkLinkEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAEhG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oEAAoE,EAAE;QAC/F,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wDAOC;AA2CD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;IAC5G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,sBAAsB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACjF,CAAC;AAFD,oEAEC"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
6
|
+
*
|
|
7
|
+
* > **Note:** `confluentcloud.NetworkLinkService` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
8
|
+
* **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Early Access releases of the Early Access features at any time in Confluent’s sole discretion.
|
|
9
|
+
*
|
|
10
|
+
* `confluentcloud.NetworkLinkService` describes a Network Link Service data source.
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
17
|
+
*
|
|
18
|
+
* const nls = confluentcloud.getNetworkLinkService({
|
|
19
|
+
* id: "nls-zyw30",
|
|
20
|
+
* environment: {
|
|
21
|
+
* id: "env-1234",
|
|
22
|
+
* },
|
|
23
|
+
* });
|
|
24
|
+
* export const networkLinkService = nls;
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
export declare function getNetworkLinkService(args: GetNetworkLinkServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkLinkServiceResult>;
|
|
28
|
+
/**
|
|
29
|
+
* A collection of arguments for invoking getNetworkLinkService.
|
|
30
|
+
*/
|
|
31
|
+
export interface GetNetworkLinkServiceArgs {
|
|
32
|
+
/**
|
|
33
|
+
* (Optional Configuration Block) supports the following:
|
|
34
|
+
*/
|
|
35
|
+
accept?: inputs.GetNetworkLinkServiceAccept;
|
|
36
|
+
environment: inputs.GetNetworkLinkServiceEnvironment;
|
|
37
|
+
/**
|
|
38
|
+
* The ID of the Environment that the Network Link Service belongs to, for example, `env-1234`.
|
|
39
|
+
*/
|
|
40
|
+
id: string;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* A collection of values returned by getNetworkLinkService.
|
|
44
|
+
*/
|
|
45
|
+
export interface GetNetworkLinkServiceResult {
|
|
46
|
+
/**
|
|
47
|
+
* (Optional Configuration Block) supports the following:
|
|
48
|
+
*/
|
|
49
|
+
readonly accept: outputs.GetNetworkLinkServiceAccept;
|
|
50
|
+
/**
|
|
51
|
+
* (Optional String) The description of the Network Link Service.
|
|
52
|
+
*/
|
|
53
|
+
readonly description: string;
|
|
54
|
+
/**
|
|
55
|
+
* (Optional String) The name of the Network Link Service.
|
|
56
|
+
*/
|
|
57
|
+
readonly displayName: string;
|
|
58
|
+
readonly environment: outputs.GetNetworkLinkServiceEnvironment;
|
|
59
|
+
/**
|
|
60
|
+
* (Required String) The ID of the Network that the Network Link Service belongs to, for example, `n-abc123`.
|
|
61
|
+
*/
|
|
62
|
+
readonly id: string;
|
|
63
|
+
/**
|
|
64
|
+
* (Required Configuration Block) supports the following:
|
|
65
|
+
*/
|
|
66
|
+
readonly networks: outputs.GetNetworkLinkServiceNetwork[];
|
|
67
|
+
/**
|
|
68
|
+
* (Required String) The Confluent Resource Name of the Network Link Service.
|
|
69
|
+
*/
|
|
70
|
+
readonly resourceName: string;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
74
|
+
*
|
|
75
|
+
* > **Note:** `confluentcloud.NetworkLinkService` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
76
|
+
* **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Early Access releases of the Early Access features at any time in Confluent’s sole discretion.
|
|
77
|
+
*
|
|
78
|
+
* `confluentcloud.NetworkLinkService` describes a Network Link Service data source.
|
|
79
|
+
*
|
|
80
|
+
* ## Example Usage
|
|
81
|
+
*
|
|
82
|
+
* ```typescript
|
|
83
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
84
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
85
|
+
*
|
|
86
|
+
* const nls = confluentcloud.getNetworkLinkService({
|
|
87
|
+
* id: "nls-zyw30",
|
|
88
|
+
* environment: {
|
|
89
|
+
* id: "env-1234",
|
|
90
|
+
* },
|
|
91
|
+
* });
|
|
92
|
+
* export const networkLinkService = nls;
|
|
93
|
+
* ```
|
|
94
|
+
*/
|
|
95
|
+
export declare function getNetworkLinkServiceOutput(args: GetNetworkLinkServiceOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNetworkLinkServiceResult>;
|
|
96
|
+
/**
|
|
97
|
+
* A collection of arguments for invoking getNetworkLinkService.
|
|
98
|
+
*/
|
|
99
|
+
export interface GetNetworkLinkServiceOutputArgs {
|
|
100
|
+
/**
|
|
101
|
+
* (Optional Configuration Block) supports the following:
|
|
102
|
+
*/
|
|
103
|
+
accept?: pulumi.Input<inputs.GetNetworkLinkServiceAcceptArgs>;
|
|
104
|
+
environment: pulumi.Input<inputs.GetNetworkLinkServiceEnvironmentArgs>;
|
|
105
|
+
/**
|
|
106
|
+
* The ID of the Environment that the Network Link Service belongs to, for example, `env-1234`.
|
|
107
|
+
*/
|
|
108
|
+
id: pulumi.Input<string>;
|
|
109
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
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.getNetworkLinkServiceOutput = exports.getNetworkLinkService = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** `confluentcloud.NetworkLinkService` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
12
|
+
* **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Early Access releases of the Early Access features at any time in Confluent’s sole discretion.
|
|
13
|
+
*
|
|
14
|
+
* `confluentcloud.NetworkLinkService` describes a Network Link Service data source.
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
21
|
+
*
|
|
22
|
+
* const nls = confluentcloud.getNetworkLinkService({
|
|
23
|
+
* id: "nls-zyw30",
|
|
24
|
+
* environment: {
|
|
25
|
+
* id: "env-1234",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* export const networkLinkService = nls;
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
function getNetworkLinkService(args, opts) {
|
|
32
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
33
|
+
return pulumi.runtime.invoke("confluentcloud:index/getNetworkLinkService:getNetworkLinkService", {
|
|
34
|
+
"accept": args.accept,
|
|
35
|
+
"environment": args.environment,
|
|
36
|
+
"id": args.id,
|
|
37
|
+
}, opts);
|
|
38
|
+
}
|
|
39
|
+
exports.getNetworkLinkService = getNetworkLinkService;
|
|
40
|
+
/**
|
|
41
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
42
|
+
*
|
|
43
|
+
* > **Note:** `confluentcloud.NetworkLinkService` data source is available in **Early Access** for early adopters. Early Access features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
44
|
+
* **Early Access** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Early Access features. Early Access features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Early Access releases of the Early Access features at any time in Confluent’s sole discretion.
|
|
45
|
+
*
|
|
46
|
+
* `confluentcloud.NetworkLinkService` describes a Network Link Service data source.
|
|
47
|
+
*
|
|
48
|
+
* ## Example Usage
|
|
49
|
+
*
|
|
50
|
+
* ```typescript
|
|
51
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
52
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
53
|
+
*
|
|
54
|
+
* const nls = confluentcloud.getNetworkLinkService({
|
|
55
|
+
* id: "nls-zyw30",
|
|
56
|
+
* environment: {
|
|
57
|
+
* id: "env-1234",
|
|
58
|
+
* },
|
|
59
|
+
* });
|
|
60
|
+
* export const networkLinkService = nls;
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
63
|
+
function getNetworkLinkServiceOutput(args, opts) {
|
|
64
|
+
return pulumi.output(args).apply((a) => getNetworkLinkService(a, opts));
|
|
65
|
+
}
|
|
66
|
+
exports.getNetworkLinkServiceOutput = getNetworkLinkServiceOutput;
|
|
67
|
+
//# sourceMappingURL=getNetworkLinkService.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getNetworkLinkService.js","sourceRoot":"","sources":["../getNetworkLinkService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAE9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kEAAkE,EAAE;QAC7F,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,sDAQC;AA+CD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,qBAAqB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAChF,CAAC;AAFD,kEAEC"}
|
package/getUsers.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
4
|
+
*
|
|
5
|
+
* > **Note:** `confluentcloud.getUsers` data source is available in **Preview** for early adopters. Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
6
|
+
* **Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Preview features. Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Preview features at any time in Confluent’s sole discretion.
|
|
7
|
+
*
|
|
8
|
+
* `confluentcloud.getUsers` describes a data source for Users.
|
|
9
|
+
*
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
15
|
+
*
|
|
16
|
+
* const main = confluentcloud.getUsers({});
|
|
17
|
+
* export const users = main.then(main => main.ids);
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export declare function getUsers(opts?: pulumi.InvokeOptions): Promise<GetUsersResult>;
|
|
21
|
+
/**
|
|
22
|
+
* A collection of values returned by getUsers.
|
|
23
|
+
*/
|
|
24
|
+
export interface GetUsersResult {
|
|
25
|
+
/**
|
|
26
|
+
* The provider-assigned unique ID for this managed resource.
|
|
27
|
+
*/
|
|
28
|
+
readonly id: string;
|
|
29
|
+
/**
|
|
30
|
+
* (Required List of Strings) The list of User IDs, for example: `["u-abc123", "u-abc124"]`.
|
|
31
|
+
*/
|
|
32
|
+
readonly ids: string[];
|
|
33
|
+
}
|
package/getUsers.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
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.getUsers = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** `confluentcloud.getUsers` data source is available in **Preview** for early adopters. Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
12
|
+
* **Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Preview features. Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Preview features at any time in Confluent’s sole discretion.
|
|
13
|
+
*
|
|
14
|
+
* `confluentcloud.getUsers` describes a data source for Users.
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
21
|
+
*
|
|
22
|
+
* const main = confluentcloud.getUsers({});
|
|
23
|
+
* export const users = main.then(main => main.ids);
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
function getUsers(opts) {
|
|
27
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
28
|
+
return pulumi.runtime.invoke("confluentcloud:index/getUsers:getUsers", {}, opts);
|
|
29
|
+
}
|
|
30
|
+
exports.getUsers = getUsers;
|
|
31
|
+
//# sourceMappingURL=getUsers.js.map
|
package/getUsers.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getUsers.js","sourceRoot":"","sources":["../getUsers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,QAAQ,CAAC,IAA2B;IAEhD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE,EACtE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4BAKC"}
|
package/index.d.ts
CHANGED
|
@@ -43,6 +43,12 @@ export declare const getKsqlClusterOutput: typeof import("./getKsqlCluster").get
|
|
|
43
43
|
export { GetNetworkArgs, GetNetworkResult, GetNetworkOutputArgs } from "./getNetwork";
|
|
44
44
|
export declare const getNetwork: typeof import("./getNetwork").getNetwork;
|
|
45
45
|
export declare const getNetworkOutput: typeof import("./getNetwork").getNetworkOutput;
|
|
46
|
+
export { GetNetworkLinkEndpointArgs, GetNetworkLinkEndpointResult, GetNetworkLinkEndpointOutputArgs } from "./getNetworkLinkEndpoint";
|
|
47
|
+
export declare const getNetworkLinkEndpoint: typeof import("./getNetworkLinkEndpoint").getNetworkLinkEndpoint;
|
|
48
|
+
export declare const getNetworkLinkEndpointOutput: typeof import("./getNetworkLinkEndpoint").getNetworkLinkEndpointOutput;
|
|
49
|
+
export { GetNetworkLinkServiceArgs, GetNetworkLinkServiceResult, GetNetworkLinkServiceOutputArgs } from "./getNetworkLinkService";
|
|
50
|
+
export declare const getNetworkLinkService: typeof import("./getNetworkLinkService").getNetworkLinkService;
|
|
51
|
+
export declare const getNetworkLinkServiceOutput: typeof import("./getNetworkLinkService").getNetworkLinkServiceOutput;
|
|
46
52
|
export { GetOrganizationResult } from "./getOrganization";
|
|
47
53
|
export declare const getOrganization: typeof import("./getOrganization").getOrganization;
|
|
48
54
|
export { GetPeeringArgs, GetPeeringResult, GetPeeringOutputArgs } from "./getPeering";
|
|
@@ -87,6 +93,8 @@ export declare const getTransitGatewayAttachmentOutput: typeof import("./getTran
|
|
|
87
93
|
export { GetUserArgs, GetUserResult, GetUserOutputArgs } from "./getUser";
|
|
88
94
|
export declare const getUser: typeof import("./getUser").getUser;
|
|
89
95
|
export declare const getUserOutput: typeof import("./getUser").getUserOutput;
|
|
96
|
+
export { GetUsersResult } from "./getUsers";
|
|
97
|
+
export declare const getUsers: typeof import("./getUsers").getUsers;
|
|
90
98
|
export { IdentityPoolArgs, IdentityPoolState } from "./identityPool";
|
|
91
99
|
export type IdentityPool = import("./identityPool").IdentityPool;
|
|
92
100
|
export declare const IdentityPool: typeof import("./identityPool").IdentityPool;
|
|
@@ -120,6 +128,12 @@ export declare const KsqlCluster: typeof import("./ksqlCluster").KsqlCluster;
|
|
|
120
128
|
export { NetworkArgs, NetworkState } from "./network";
|
|
121
129
|
export type Network = import("./network").Network;
|
|
122
130
|
export declare const Network: typeof import("./network").Network;
|
|
131
|
+
export { NetworkLinkEndpointArgs, NetworkLinkEndpointState } from "./networkLinkEndpoint";
|
|
132
|
+
export type NetworkLinkEndpoint = import("./networkLinkEndpoint").NetworkLinkEndpoint;
|
|
133
|
+
export declare const NetworkLinkEndpoint: typeof import("./networkLinkEndpoint").NetworkLinkEndpoint;
|
|
134
|
+
export { NetworkLinkServiceArgs, NetworkLinkServiceState } from "./networkLinkService";
|
|
135
|
+
export type NetworkLinkService = import("./networkLinkService").NetworkLinkService;
|
|
136
|
+
export declare const NetworkLinkService: typeof import("./networkLinkService").NetworkLinkService;
|
|
123
137
|
export { PeeringArgs, PeeringState } from "./peering";
|
|
124
138
|
export type Peering = import("./peering").Peering;
|
|
125
139
|
export declare const Peering: typeof import("./peering").Peering;
|
package/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.types = exports.config = exports.TransitGatewayAttachment = exports.SubjectMode = exports.SubjectConfig = exports.ServiceAccount = exports.SchemaRegistryClusterMode = exports.SchemaRegistryClusterConfig = exports.SchemaRegistryCluster = exports.Schema = exports.RoleBinding = exports.Provider = exports.PrivateLinkAccess = exports.Peering = exports.Network = exports.KsqlCluster = exports.KafkaTopic = exports.KafkaMirrorTopic = exports.KafkaClusterConfig = exports.KafkaCluster = exports.KafkaClientQuota = exports.KafkaAcl = exports.Invitation = exports.IdentityProvider = exports.IdentityPool = exports.getUserOutput = exports.getUser = exports.getTransitGatewayAttachmentOutput = exports.getTransitGatewayAttachment = void 0;
|
|
5
|
+
exports.getServiceAccountOutput = exports.getServiceAccount = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaRegistryRegionOutput = exports.getSchemaRegistryRegion = exports.getSchemaRegistryClusterModeOutput = exports.getSchemaRegistryClusterMode = exports.getSchemaRegistryClusterConfigOutput = exports.getSchemaRegistryClusterConfig = exports.getSchemaRegistryClusterOutput = exports.getSchemaRegistryCluster = exports.getSchemaOutput = exports.getSchema = exports.getRoleBindingOutput = exports.getRoleBinding = exports.getPrivateLinkAccessOutput = exports.getPrivateLinkAccess = exports.getPeeringOutput = exports.getPeering = exports.getOrganization = exports.getNetworkLinkServiceOutput = exports.getNetworkLinkService = exports.getNetworkLinkEndpointOutput = exports.getNetworkLinkEndpoint = exports.getNetworkOutput = exports.getNetwork = exports.getKsqlClusterOutput = exports.getKsqlCluster = exports.getKafkaTopicOutput = exports.getKafkaTopic = exports.getKafkaClusterOutput = exports.getKafkaCluster = exports.getKafkaClientQuotaOutput = exports.getKafkaClientQuota = exports.getInvitationOutput = exports.getInvitation = exports.getIdentityProviderOutput = exports.getIdentityProvider = exports.getIdentityPoolOutput = exports.getIdentityPool = exports.getEnvironmentOutput = exports.getEnvironment = exports.getByokKeyOutput = exports.getByokKey = exports.Environment = exports.Connector = exports.ClusterLink = exports.ByokKey = exports.ApiKey = void 0;
|
|
6
|
+
exports.types = exports.config = exports.TransitGatewayAttachment = exports.SubjectMode = exports.SubjectConfig = exports.ServiceAccount = exports.SchemaRegistryClusterMode = exports.SchemaRegistryClusterConfig = exports.SchemaRegistryCluster = exports.Schema = exports.RoleBinding = exports.Provider = exports.PrivateLinkAccess = exports.Peering = exports.NetworkLinkService = exports.NetworkLinkEndpoint = exports.Network = exports.KsqlCluster = exports.KafkaTopic = exports.KafkaMirrorTopic = exports.KafkaClusterConfig = exports.KafkaCluster = exports.KafkaClientQuota = exports.KafkaAcl = exports.Invitation = exports.IdentityProvider = exports.IdentityPool = exports.getUsers = exports.getUserOutput = exports.getUser = exports.getTransitGatewayAttachmentOutput = exports.getTransitGatewayAttachment = exports.getSubjectModeOutput = exports.getSubjectMode = exports.getSubjectConfigOutput = exports.getSubjectConfig = void 0;
|
|
7
7
|
const pulumi = require("@pulumi/pulumi");
|
|
8
8
|
const utilities = require("./utilities");
|
|
9
9
|
exports.ApiKey = null;
|
|
@@ -46,6 +46,12 @@ utilities.lazyLoad(exports, ["getKsqlCluster", "getKsqlClusterOutput"], () => re
|
|
|
46
46
|
exports.getNetwork = null;
|
|
47
47
|
exports.getNetworkOutput = null;
|
|
48
48
|
utilities.lazyLoad(exports, ["getNetwork", "getNetworkOutput"], () => require("./getNetwork"));
|
|
49
|
+
exports.getNetworkLinkEndpoint = null;
|
|
50
|
+
exports.getNetworkLinkEndpointOutput = null;
|
|
51
|
+
utilities.lazyLoad(exports, ["getNetworkLinkEndpoint", "getNetworkLinkEndpointOutput"], () => require("./getNetworkLinkEndpoint"));
|
|
52
|
+
exports.getNetworkLinkService = null;
|
|
53
|
+
exports.getNetworkLinkServiceOutput = null;
|
|
54
|
+
utilities.lazyLoad(exports, ["getNetworkLinkService", "getNetworkLinkServiceOutput"], () => require("./getNetworkLinkService"));
|
|
49
55
|
exports.getOrganization = null;
|
|
50
56
|
utilities.lazyLoad(exports, ["getOrganization"], () => require("./getOrganization"));
|
|
51
57
|
exports.getPeering = null;
|
|
@@ -90,6 +96,8 @@ utilities.lazyLoad(exports, ["getTransitGatewayAttachment", "getTransitGatewayAt
|
|
|
90
96
|
exports.getUser = null;
|
|
91
97
|
exports.getUserOutput = null;
|
|
92
98
|
utilities.lazyLoad(exports, ["getUser", "getUserOutput"], () => require("./getUser"));
|
|
99
|
+
exports.getUsers = null;
|
|
100
|
+
utilities.lazyLoad(exports, ["getUsers"], () => require("./getUsers"));
|
|
93
101
|
exports.IdentityPool = null;
|
|
94
102
|
utilities.lazyLoad(exports, ["IdentityPool"], () => require("./identityPool"));
|
|
95
103
|
exports.IdentityProvider = null;
|
|
@@ -112,6 +120,10 @@ exports.KsqlCluster = null;
|
|
|
112
120
|
utilities.lazyLoad(exports, ["KsqlCluster"], () => require("./ksqlCluster"));
|
|
113
121
|
exports.Network = null;
|
|
114
122
|
utilities.lazyLoad(exports, ["Network"], () => require("./network"));
|
|
123
|
+
exports.NetworkLinkEndpoint = null;
|
|
124
|
+
utilities.lazyLoad(exports, ["NetworkLinkEndpoint"], () => require("./networkLinkEndpoint"));
|
|
125
|
+
exports.NetworkLinkService = null;
|
|
126
|
+
utilities.lazyLoad(exports, ["NetworkLinkService"], () => require("./networkLinkService"));
|
|
115
127
|
exports.Peering = null;
|
|
116
128
|
utilities.lazyLoad(exports, ["Peering"], () => require("./peering"));
|
|
117
129
|
exports.PrivateLinkAccess = null;
|
|
@@ -177,6 +189,10 @@ const _module = {
|
|
|
177
189
|
return new exports.KsqlCluster(name, undefined, { urn });
|
|
178
190
|
case "confluentcloud:index/network:Network":
|
|
179
191
|
return new exports.Network(name, undefined, { urn });
|
|
192
|
+
case "confluentcloud:index/networkLinkEndpoint:NetworkLinkEndpoint":
|
|
193
|
+
return new exports.NetworkLinkEndpoint(name, undefined, { urn });
|
|
194
|
+
case "confluentcloud:index/networkLinkService:NetworkLinkService":
|
|
195
|
+
return new exports.NetworkLinkService(name, undefined, { urn });
|
|
180
196
|
case "confluentcloud:index/peering:Peering":
|
|
181
197
|
return new exports.Peering(name, undefined, { urn });
|
|
182
198
|
case "confluentcloud:index/privateLinkAccess:PrivateLinkAccess":
|
|
@@ -220,6 +236,8 @@ pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaMirrorTopic"
|
|
|
220
236
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaTopic", _module);
|
|
221
237
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/ksqlCluster", _module);
|
|
222
238
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/network", _module);
|
|
239
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/networkLinkEndpoint", _module);
|
|
240
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/networkLinkService", _module);
|
|
223
241
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/peering", _module);
|
|
224
242
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/privateLinkAccess", _module);
|
|
225
243
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/roleBinding", _module);
|