@pulumi/confluentcloud 1.24.0-alpha.1690815618 → 1.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/businessMetadataBinding.d.ts +3 -3
- package/getBusinessMetadataBinding.d.ts +2 -2
- package/getKafkaCluster.d.ts +12 -0
- package/getKafkaCluster.js +1 -0
- package/getKafkaCluster.js.map +1 -1
- package/getPrivateLinkAttachment.d.ts +106 -0
- package/getPrivateLinkAttachment.js +68 -0
- package/getPrivateLinkAttachment.js.map +1 -0
- package/getPrivateLinkAttachmentConnection.d.ts +101 -0
- package/getPrivateLinkAttachmentConnection.js +68 -0
- package/getPrivateLinkAttachmentConnection.js.map +1 -0
- package/getTagBinding.d.ts +2 -2
- package/index.d.ts +12 -0
- package/index.js +19 -3
- package/index.js.map +1 -1
- package/kafkaCluster.d.ts +12 -0
- package/kafkaCluster.js +2 -0
- package/kafkaCluster.js.map +1 -1
- package/package.json +2 -2
- package/privateLinkAttachment.d.ts +150 -0
- package/privateLinkAttachment.js +110 -0
- package/privateLinkAttachment.js.map +1 -0
- package/privateLinkAttachmentConnection.d.ts +131 -0
- package/privateLinkAttachmentConnection.js +107 -0
- package/privateLinkAttachmentConnection.js.map +1 -0
- package/tagBinding.d.ts +3 -3
- package/types/input.d.ts +75 -0
- package/types/output.d.ts +94 -0
|
@@ -43,7 +43,7 @@ export declare class BusinessMetadataBinding extends pulumi.CustomResource {
|
|
|
43
43
|
*/
|
|
44
44
|
readonly credentials: pulumi.Output<outputs.BusinessMetadataBindingCredentials | undefined>;
|
|
45
45
|
/**
|
|
46
|
-
* The qualified name of the entity., for example,
|
|
46
|
+
* The qualified name of the entity., for example, `${confluent_schema_registry_cluster.main.id}:.:${confluent_schema.purchase.schema_identifier}`, `${confluent_schema_registry_cluster.main.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
47
47
|
*/
|
|
48
48
|
readonly entityName: pulumi.Output<string>;
|
|
49
49
|
/**
|
|
@@ -83,7 +83,7 @@ export interface BusinessMetadataBindingState {
|
|
|
83
83
|
*/
|
|
84
84
|
credentials?: pulumi.Input<inputs.BusinessMetadataBindingCredentials>;
|
|
85
85
|
/**
|
|
86
|
-
* The qualified name of the entity., for example,
|
|
86
|
+
* The qualified name of the entity., for example, `${confluent_schema_registry_cluster.main.id}:.:${confluent_schema.purchase.schema_identifier}`, `${confluent_schema_registry_cluster.main.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
87
87
|
*/
|
|
88
88
|
entityName?: pulumi.Input<string>;
|
|
89
89
|
/**
|
|
@@ -115,7 +115,7 @@ export interface BusinessMetadataBindingArgs {
|
|
|
115
115
|
*/
|
|
116
116
|
credentials?: pulumi.Input<inputs.BusinessMetadataBindingCredentials>;
|
|
117
117
|
/**
|
|
118
|
-
* The qualified name of the entity., for example,
|
|
118
|
+
* The qualified name of the entity., for example, `${confluent_schema_registry_cluster.main.id}:.:${confluent_schema.purchase.schema_identifier}`, `${confluent_schema_registry_cluster.main.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
119
119
|
*/
|
|
120
120
|
entityName: pulumi.Input<string>;
|
|
121
121
|
/**
|
|
@@ -12,7 +12,7 @@ export interface GetBusinessMetadataBindingArgs {
|
|
|
12
12
|
businessMetadataName: string;
|
|
13
13
|
credentials?: inputs.GetBusinessMetadataBindingCredentials;
|
|
14
14
|
/**
|
|
15
|
-
* The qualified name of the entity., for example,
|
|
15
|
+
* The qualified name of the entity., for example, `${confluent_schema_registry_cluster.main.id}:.:${confluent_schema.purchase.schema_identifier}`, `${confluent_schema_registry_cluster.main.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
16
16
|
*/
|
|
17
17
|
entityName: string;
|
|
18
18
|
/**
|
|
@@ -57,7 +57,7 @@ export interface GetBusinessMetadataBindingOutputArgs {
|
|
|
57
57
|
businessMetadataName: pulumi.Input<string>;
|
|
58
58
|
credentials?: pulumi.Input<inputs.GetBusinessMetadataBindingCredentialsArgs>;
|
|
59
59
|
/**
|
|
60
|
-
* The qualified name of the entity., for example,
|
|
60
|
+
* The qualified name of the entity., for example, `${confluent_schema_registry_cluster.main.id}:.:${confluent_schema.purchase.schema_identifier}`, `${confluent_schema_registry_cluster.main.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
61
61
|
*/
|
|
62
62
|
entityName: pulumi.Input<string>;
|
|
63
63
|
/**
|
package/getKafkaCluster.d.ts
CHANGED
|
@@ -45,6 +45,10 @@ export interface GetKafkaClusterArgs {
|
|
|
45
45
|
* A human-readable name for the Kafka cluster.
|
|
46
46
|
*/
|
|
47
47
|
displayName?: string;
|
|
48
|
+
/**
|
|
49
|
+
* (Optional Configuration Block) The configuration of the Enterprise Kafka cluster.
|
|
50
|
+
*/
|
|
51
|
+
enterprises?: inputs.GetKafkaClusterEnterprise[];
|
|
48
52
|
environment: inputs.GetKafkaClusterEnvironment;
|
|
49
53
|
/**
|
|
50
54
|
* The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
|
|
@@ -93,6 +97,10 @@ export interface GetKafkaClusterResult {
|
|
|
93
97
|
* (Required String) The name of the Kafka cluster.
|
|
94
98
|
*/
|
|
95
99
|
readonly displayName: string;
|
|
100
|
+
/**
|
|
101
|
+
* (Optional Configuration Block) The configuration of the Enterprise Kafka cluster.
|
|
102
|
+
*/
|
|
103
|
+
readonly enterprises?: outputs.GetKafkaClusterEnterprise[];
|
|
96
104
|
readonly environment: outputs.GetKafkaClusterEnvironment;
|
|
97
105
|
/**
|
|
98
106
|
* (Required String) The ID of the Confluent key that is used to encrypt the data in the Kafka cluster, for example, `cck-lye5m`.
|
|
@@ -167,6 +175,10 @@ export interface GetKafkaClusterOutputArgs {
|
|
|
167
175
|
* A human-readable name for the Kafka cluster.
|
|
168
176
|
*/
|
|
169
177
|
displayName?: pulumi.Input<string>;
|
|
178
|
+
/**
|
|
179
|
+
* (Optional Configuration Block) The configuration of the Enterprise Kafka cluster.
|
|
180
|
+
*/
|
|
181
|
+
enterprises?: pulumi.Input<pulumi.Input<inputs.GetKafkaClusterEnterpriseArgs>[]>;
|
|
170
182
|
environment: pulumi.Input<inputs.GetKafkaClusterEnvironmentArgs>;
|
|
171
183
|
/**
|
|
172
184
|
* The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
|
package/getKafkaCluster.js
CHANGED
package/getKafkaCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getKafkaCluster.js","sourceRoot":"","sources":["../getKafkaCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getKafkaCluster.js","sourceRoot":"","sources":["../getKafkaCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,0CAYC;AAyGD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
|
@@ -0,0 +1,106 @@
|
|
|
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
|
+
* [](mailto:ccloud-api-access+networking-v1-limited-availability@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Limited%20Availability&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Limited%20Availability%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
7
|
+
*
|
|
8
|
+
* > **Note:** `confluentcloud.PrivateLinkAttachment` data source is available in **Limited Availability** for early adopters. Limited Availability 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.\
|
|
9
|
+
* **Limited Availability** 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 Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Limited Availability releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
10
|
+
*
|
|
11
|
+
* `confluentcloud.PrivateLinkAttachment` describes a Private Link Attachment data source.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
18
|
+
*
|
|
19
|
+
* const main = confluentcloud.getPrivateLinkAttachment({
|
|
20
|
+
* id: "platt-abcde",
|
|
21
|
+
* environment: {
|
|
22
|
+
* id: "env-1234",
|
|
23
|
+
* },
|
|
24
|
+
* });
|
|
25
|
+
* export const platt = main;
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export declare function getPrivateLinkAttachment(args: GetPrivateLinkAttachmentArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateLinkAttachmentResult>;
|
|
29
|
+
/**
|
|
30
|
+
* A collection of arguments for invoking getPrivateLinkAttachment.
|
|
31
|
+
*/
|
|
32
|
+
export interface GetPrivateLinkAttachmentArgs {
|
|
33
|
+
environment: inputs.GetPrivateLinkAttachmentEnvironment;
|
|
34
|
+
/**
|
|
35
|
+
* The ID of the Environment that the Private Link Attachment belongs to, for example `env-xyz456`.
|
|
36
|
+
*/
|
|
37
|
+
id: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* A collection of values returned by getPrivateLinkAttachment.
|
|
41
|
+
*/
|
|
42
|
+
export interface GetPrivateLinkAttachmentResult {
|
|
43
|
+
/**
|
|
44
|
+
* (Optional Configuration Block) supports the following:
|
|
45
|
+
*/
|
|
46
|
+
readonly aws: outputs.GetPrivateLinkAttachmentAw[];
|
|
47
|
+
readonly azures: outputs.GetPrivateLinkAttachmentAzure[];
|
|
48
|
+
/**
|
|
49
|
+
* (Optional String) The cloud service provider that hosts the resources to access with the Private Link Attachment.
|
|
50
|
+
*/
|
|
51
|
+
readonly cloud: string;
|
|
52
|
+
/**
|
|
53
|
+
* (Optional String) The name of the Private Link Attachment.
|
|
54
|
+
*/
|
|
55
|
+
readonly displayName: string;
|
|
56
|
+
/**
|
|
57
|
+
* (Required String) The root DNS domain for the Private Link Attachment, for example, `pr123a.us-east-2.aws.confluent.
|
|
58
|
+
*/
|
|
59
|
+
readonly dnsDomain: string;
|
|
60
|
+
readonly environment: outputs.GetPrivateLinkAttachmentEnvironment;
|
|
61
|
+
readonly gcps: outputs.GetPrivateLinkAttachmentGcp[];
|
|
62
|
+
readonly id: string;
|
|
63
|
+
/**
|
|
64
|
+
* (Optional String) The cloud service provider region where the resources to be accessed using the Private Link Attachment are located.
|
|
65
|
+
*/
|
|
66
|
+
readonly region: string;
|
|
67
|
+
/**
|
|
68
|
+
* (Required String) The Confluent Resource Name of the Private Link Attachment, for example `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0`.
|
|
69
|
+
*/
|
|
70
|
+
readonly resourceName: string;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
74
|
+
* [](mailto:ccloud-api-access+networking-v1-limited-availability@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Limited%20Availability&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Limited%20Availability%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
75
|
+
*
|
|
76
|
+
* > **Note:** `confluentcloud.PrivateLinkAttachment` data source is available in **Limited Availability** for early adopters. Limited Availability 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.\
|
|
77
|
+
* **Limited Availability** 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 Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Limited Availability releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
78
|
+
*
|
|
79
|
+
* `confluentcloud.PrivateLinkAttachment` describes a Private Link Attachment data source.
|
|
80
|
+
*
|
|
81
|
+
* ## Example Usage
|
|
82
|
+
*
|
|
83
|
+
* ```typescript
|
|
84
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
85
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
86
|
+
*
|
|
87
|
+
* const main = confluentcloud.getPrivateLinkAttachment({
|
|
88
|
+
* id: "platt-abcde",
|
|
89
|
+
* environment: {
|
|
90
|
+
* id: "env-1234",
|
|
91
|
+
* },
|
|
92
|
+
* });
|
|
93
|
+
* export const platt = main;
|
|
94
|
+
* ```
|
|
95
|
+
*/
|
|
96
|
+
export declare function getPrivateLinkAttachmentOutput(args: GetPrivateLinkAttachmentOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPrivateLinkAttachmentResult>;
|
|
97
|
+
/**
|
|
98
|
+
* A collection of arguments for invoking getPrivateLinkAttachment.
|
|
99
|
+
*/
|
|
100
|
+
export interface GetPrivateLinkAttachmentOutputArgs {
|
|
101
|
+
environment: pulumi.Input<inputs.GetPrivateLinkAttachmentEnvironmentArgs>;
|
|
102
|
+
/**
|
|
103
|
+
* The ID of the Environment that the Private Link Attachment belongs to, for example `env-xyz456`.
|
|
104
|
+
*/
|
|
105
|
+
id: pulumi.Input<string>;
|
|
106
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
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.getPrivateLinkAttachmentOutput = exports.getPrivateLinkAttachment = 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
|
+
* [](mailto:ccloud-api-access+networking-v1-limited-availability@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Limited%20Availability&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Limited%20Availability%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
11
|
+
*
|
|
12
|
+
* > **Note:** `confluentcloud.PrivateLinkAttachment` data source is available in **Limited Availability** for early adopters. Limited Availability 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.\
|
|
13
|
+
* **Limited Availability** 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 Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Limited Availability releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
14
|
+
*
|
|
15
|
+
* `confluentcloud.PrivateLinkAttachment` describes a Private Link Attachment data source.
|
|
16
|
+
*
|
|
17
|
+
* ## Example Usage
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
22
|
+
*
|
|
23
|
+
* const main = confluentcloud.getPrivateLinkAttachment({
|
|
24
|
+
* id: "platt-abcde",
|
|
25
|
+
* environment: {
|
|
26
|
+
* id: "env-1234",
|
|
27
|
+
* },
|
|
28
|
+
* });
|
|
29
|
+
* export const platt = main;
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
function getPrivateLinkAttachment(args, opts) {
|
|
33
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
34
|
+
return pulumi.runtime.invoke("confluentcloud:index/getPrivateLinkAttachment:getPrivateLinkAttachment", {
|
|
35
|
+
"environment": args.environment,
|
|
36
|
+
"id": args.id,
|
|
37
|
+
}, opts);
|
|
38
|
+
}
|
|
39
|
+
exports.getPrivateLinkAttachment = getPrivateLinkAttachment;
|
|
40
|
+
/**
|
|
41
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
42
|
+
* [](mailto:ccloud-api-access+networking-v1-limited-availability@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Limited%20Availability&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Limited%20Availability%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
43
|
+
*
|
|
44
|
+
* > **Note:** `confluentcloud.PrivateLinkAttachment` data source is available in **Limited Availability** for early adopters. Limited Availability 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.\
|
|
45
|
+
* **Limited Availability** 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 Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Limited Availability releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
46
|
+
*
|
|
47
|
+
* `confluentcloud.PrivateLinkAttachment` describes a Private Link Attachment data source.
|
|
48
|
+
*
|
|
49
|
+
* ## Example Usage
|
|
50
|
+
*
|
|
51
|
+
* ```typescript
|
|
52
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
53
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
54
|
+
*
|
|
55
|
+
* const main = confluentcloud.getPrivateLinkAttachment({
|
|
56
|
+
* id: "platt-abcde",
|
|
57
|
+
* environment: {
|
|
58
|
+
* id: "env-1234",
|
|
59
|
+
* },
|
|
60
|
+
* });
|
|
61
|
+
* export const platt = main;
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
64
|
+
function getPrivateLinkAttachmentOutput(args, opts) {
|
|
65
|
+
return pulumi.output(args).apply((a) => getPrivateLinkAttachment(a, opts));
|
|
66
|
+
}
|
|
67
|
+
exports.getPrivateLinkAttachmentOutput = getPrivateLinkAttachmentOutput;
|
|
68
|
+
//# sourceMappingURL=getPrivateLinkAttachment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPrivateLinkAttachment.js","sourceRoot":"","sources":["../getPrivateLinkAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IAEpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wEAAwE,EAAE;QACnG,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4DAOC;AA8CD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,wBAAwB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnF,CAAC;AAFD,wEAEC"}
|
|
@@ -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
|
+
* [](mailto:ccloud-api-access+networking-v1-limited-availability@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Limited%20Availability&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Limited%20Availability%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
7
|
+
*
|
|
8
|
+
* > **Note:** `confluentcloud.PrivateLinkAttachmentConnection` data source is available in **Limited Availability** for early adopters. Limited Availability 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.\
|
|
9
|
+
* **Limited Availability** 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 Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Limited Availability releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
10
|
+
*
|
|
11
|
+
* `confluentcloud.PrivateLinkAttachmentConnection` describes a Private Link Attachment Connection data source.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
18
|
+
*
|
|
19
|
+
* const main = confluentcloud.getPrivateLinkAttachmentConnection({
|
|
20
|
+
* id: "plattc-p5j3ov",
|
|
21
|
+
* environment: {
|
|
22
|
+
* id: "env-8gv0v5",
|
|
23
|
+
* },
|
|
24
|
+
* });
|
|
25
|
+
* export const plattc = main;
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export declare function getPrivateLinkAttachmentConnection(args: GetPrivateLinkAttachmentConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateLinkAttachmentConnectionResult>;
|
|
29
|
+
/**
|
|
30
|
+
* A collection of arguments for invoking getPrivateLinkAttachmentConnection.
|
|
31
|
+
*/
|
|
32
|
+
export interface GetPrivateLinkAttachmentConnectionArgs {
|
|
33
|
+
environment: inputs.GetPrivateLinkAttachmentConnectionEnvironment;
|
|
34
|
+
/**
|
|
35
|
+
* The ID of the Environment that the Private Link Attachment Connection belongs to, for example `env-xyz456`.
|
|
36
|
+
*/
|
|
37
|
+
id: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* A collection of values returned by getPrivateLinkAttachmentConnection.
|
|
41
|
+
*/
|
|
42
|
+
export interface GetPrivateLinkAttachmentConnectionResult {
|
|
43
|
+
/**
|
|
44
|
+
* (Optional Configuration Block) supports the following:
|
|
45
|
+
*/
|
|
46
|
+
readonly aws: outputs.GetPrivateLinkAttachmentConnectionAw[];
|
|
47
|
+
readonly azures: outputs.GetPrivateLinkAttachmentConnectionAzure[];
|
|
48
|
+
/**
|
|
49
|
+
* (Optional String) The name of the Private Link Attachment Connection.
|
|
50
|
+
*/
|
|
51
|
+
readonly displayName: string;
|
|
52
|
+
readonly environment: outputs.GetPrivateLinkAttachmentConnectionEnvironment;
|
|
53
|
+
readonly gcps: outputs.GetPrivateLinkAttachmentConnectionGcp[];
|
|
54
|
+
/**
|
|
55
|
+
* (Required String) The unique identifier for the private link attachment.
|
|
56
|
+
*/
|
|
57
|
+
readonly id: string;
|
|
58
|
+
/**
|
|
59
|
+
* (Optional Configuration Block) supports the following:
|
|
60
|
+
*/
|
|
61
|
+
readonly privateLinkAttachments: outputs.GetPrivateLinkAttachmentConnectionPrivateLinkAttachment[];
|
|
62
|
+
/**
|
|
63
|
+
* (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w`.
|
|
64
|
+
*/
|
|
65
|
+
readonly resourceName: string;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
69
|
+
* [](mailto:ccloud-api-access+networking-v1-limited-availability@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Limited%20Availability&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Limited%20Availability%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
70
|
+
*
|
|
71
|
+
* > **Note:** `confluentcloud.PrivateLinkAttachmentConnection` data source is available in **Limited Availability** for early adopters. Limited Availability 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
|
+
* **Limited Availability** 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 Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Limited Availability releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
73
|
+
*
|
|
74
|
+
* `confluentcloud.PrivateLinkAttachmentConnection` describes a Private Link Attachment Connection 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 main = confluentcloud.getPrivateLinkAttachmentConnection({
|
|
83
|
+
* id: "plattc-p5j3ov",
|
|
84
|
+
* environment: {
|
|
85
|
+
* id: "env-8gv0v5",
|
|
86
|
+
* },
|
|
87
|
+
* });
|
|
88
|
+
* export const plattc = main;
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
export declare function getPrivateLinkAttachmentConnectionOutput(args: GetPrivateLinkAttachmentConnectionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPrivateLinkAttachmentConnectionResult>;
|
|
92
|
+
/**
|
|
93
|
+
* A collection of arguments for invoking getPrivateLinkAttachmentConnection.
|
|
94
|
+
*/
|
|
95
|
+
export interface GetPrivateLinkAttachmentConnectionOutputArgs {
|
|
96
|
+
environment: pulumi.Input<inputs.GetPrivateLinkAttachmentConnectionEnvironmentArgs>;
|
|
97
|
+
/**
|
|
98
|
+
* The ID of the Environment that the Private Link Attachment Connection belongs to, for example `env-xyz456`.
|
|
99
|
+
*/
|
|
100
|
+
id: pulumi.Input<string>;
|
|
101
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
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.getPrivateLinkAttachmentConnectionOutput = exports.getPrivateLinkAttachmentConnection = 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
|
+
* [](mailto:ccloud-api-access+networking-v1-limited-availability@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Limited%20Availability&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Limited%20Availability%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
11
|
+
*
|
|
12
|
+
* > **Note:** `confluentcloud.PrivateLinkAttachmentConnection` data source is available in **Limited Availability** for early adopters. Limited Availability 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.\
|
|
13
|
+
* **Limited Availability** 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 Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Limited Availability releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
14
|
+
*
|
|
15
|
+
* `confluentcloud.PrivateLinkAttachmentConnection` describes a Private Link Attachment Connection data source.
|
|
16
|
+
*
|
|
17
|
+
* ## Example Usage
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
22
|
+
*
|
|
23
|
+
* const main = confluentcloud.getPrivateLinkAttachmentConnection({
|
|
24
|
+
* id: "plattc-p5j3ov",
|
|
25
|
+
* environment: {
|
|
26
|
+
* id: "env-8gv0v5",
|
|
27
|
+
* },
|
|
28
|
+
* });
|
|
29
|
+
* export const plattc = main;
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
function getPrivateLinkAttachmentConnection(args, opts) {
|
|
33
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
34
|
+
return pulumi.runtime.invoke("confluentcloud:index/getPrivateLinkAttachmentConnection:getPrivateLinkAttachmentConnection", {
|
|
35
|
+
"environment": args.environment,
|
|
36
|
+
"id": args.id,
|
|
37
|
+
}, opts);
|
|
38
|
+
}
|
|
39
|
+
exports.getPrivateLinkAttachmentConnection = getPrivateLinkAttachmentConnection;
|
|
40
|
+
/**
|
|
41
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
42
|
+
* [](mailto:ccloud-api-access+networking-v1-limited-availability@confluent.io?subject=Request%20to%20join%20networking/v1%20API%20Limited%20Availability&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Limited%20Availability%20for%20networking/v1%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
43
|
+
*
|
|
44
|
+
* > **Note:** `confluentcloud.PrivateLinkAttachmentConnection` data source is available in **Limited Availability** for early adopters. Limited Availability 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.\
|
|
45
|
+
* **Limited Availability** 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 Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing Limited Availability releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
46
|
+
*
|
|
47
|
+
* `confluentcloud.PrivateLinkAttachmentConnection` describes a Private Link Attachment Connection data source.
|
|
48
|
+
*
|
|
49
|
+
* ## Example Usage
|
|
50
|
+
*
|
|
51
|
+
* ```typescript
|
|
52
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
53
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
54
|
+
*
|
|
55
|
+
* const main = confluentcloud.getPrivateLinkAttachmentConnection({
|
|
56
|
+
* id: "plattc-p5j3ov",
|
|
57
|
+
* environment: {
|
|
58
|
+
* id: "env-8gv0v5",
|
|
59
|
+
* },
|
|
60
|
+
* });
|
|
61
|
+
* export const plattc = main;
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
64
|
+
function getPrivateLinkAttachmentConnectionOutput(args, opts) {
|
|
65
|
+
return pulumi.output(args).apply((a) => getPrivateLinkAttachmentConnection(a, opts));
|
|
66
|
+
}
|
|
67
|
+
exports.getPrivateLinkAttachmentConnectionOutput = getPrivateLinkAttachmentConnectionOutput;
|
|
68
|
+
//# sourceMappingURL=getPrivateLinkAttachmentConnection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPrivateLinkAttachmentConnection.js","sourceRoot":"","sources":["../getPrivateLinkAttachmentConnection.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IAExH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4FAA4F,EAAE;QACvH,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gFAOC;AAyCD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,wCAAwC,CAAC,IAAkD,EAAE,IAA2B;IACpI,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kCAAkC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7F,CAAC;AAFD,4FAEC"}
|
package/getTagBinding.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare function getTagBinding(args: GetTagBindingArgs, opts?: pulumi.Inv
|
|
|
8
8
|
export interface GetTagBindingArgs {
|
|
9
9
|
credentials?: inputs.GetTagBindingCredentials;
|
|
10
10
|
/**
|
|
11
|
-
* The qualified name of the entity., for example,
|
|
11
|
+
* The qualified name of the entity., for example, `${confluent_schema_registry_cluster.main.id}:.:${confluent_schema.purchase.schema_identifier}`, `${confluent_schema_registry_cluster.main.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
12
12
|
*/
|
|
13
13
|
entityName: string;
|
|
14
14
|
/**
|
|
@@ -49,7 +49,7 @@ export declare function getTagBindingOutput(args: GetTagBindingOutputArgs, opts?
|
|
|
49
49
|
export interface GetTagBindingOutputArgs {
|
|
50
50
|
credentials?: pulumi.Input<inputs.GetTagBindingCredentialsArgs>;
|
|
51
51
|
/**
|
|
52
|
-
* The qualified name of the entity., for example,
|
|
52
|
+
* The qualified name of the entity., for example, `${confluent_schema_registry_cluster.main.id}:.:${confluent_schema.purchase.schema_identifier}`, `${confluent_schema_registry_cluster.main.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
53
53
|
*/
|
|
54
54
|
entityName: pulumi.Input<string>;
|
|
55
55
|
/**
|
package/index.d.ts
CHANGED
|
@@ -71,6 +71,12 @@ export declare const getPeeringOutput: typeof import("./getPeering").getPeeringO
|
|
|
71
71
|
export { GetPrivateLinkAccessArgs, GetPrivateLinkAccessResult, GetPrivateLinkAccessOutputArgs } from "./getPrivateLinkAccess";
|
|
72
72
|
export declare const getPrivateLinkAccess: typeof import("./getPrivateLinkAccess").getPrivateLinkAccess;
|
|
73
73
|
export declare const getPrivateLinkAccessOutput: typeof import("./getPrivateLinkAccess").getPrivateLinkAccessOutput;
|
|
74
|
+
export { GetPrivateLinkAttachmentArgs, GetPrivateLinkAttachmentResult, GetPrivateLinkAttachmentOutputArgs } from "./getPrivateLinkAttachment";
|
|
75
|
+
export declare const getPrivateLinkAttachment: typeof import("./getPrivateLinkAttachment").getPrivateLinkAttachment;
|
|
76
|
+
export declare const getPrivateLinkAttachmentOutput: typeof import("./getPrivateLinkAttachment").getPrivateLinkAttachmentOutput;
|
|
77
|
+
export { GetPrivateLinkAttachmentConnectionArgs, GetPrivateLinkAttachmentConnectionResult, GetPrivateLinkAttachmentConnectionOutputArgs } from "./getPrivateLinkAttachmentConnection";
|
|
78
|
+
export declare const getPrivateLinkAttachmentConnection: typeof import("./getPrivateLinkAttachmentConnection").getPrivateLinkAttachmentConnection;
|
|
79
|
+
export declare const getPrivateLinkAttachmentConnectionOutput: typeof import("./getPrivateLinkAttachmentConnection").getPrivateLinkAttachmentConnectionOutput;
|
|
74
80
|
export { GetRoleBindingArgs, GetRoleBindingResult, GetRoleBindingOutputArgs } from "./getRoleBinding";
|
|
75
81
|
export declare const getRoleBinding: typeof import("./getRoleBinding").getRoleBinding;
|
|
76
82
|
export declare const getRoleBindingOutput: typeof import("./getRoleBinding").getRoleBindingOutput;
|
|
@@ -162,6 +168,12 @@ export declare const Peering: typeof import("./peering").Peering;
|
|
|
162
168
|
export { PrivateLinkAccessArgs, PrivateLinkAccessState } from "./privateLinkAccess";
|
|
163
169
|
export type PrivateLinkAccess = import("./privateLinkAccess").PrivateLinkAccess;
|
|
164
170
|
export declare const PrivateLinkAccess: typeof import("./privateLinkAccess").PrivateLinkAccess;
|
|
171
|
+
export { PrivateLinkAttachmentArgs, PrivateLinkAttachmentState } from "./privateLinkAttachment";
|
|
172
|
+
export type PrivateLinkAttachment = import("./privateLinkAttachment").PrivateLinkAttachment;
|
|
173
|
+
export declare const PrivateLinkAttachment: typeof import("./privateLinkAttachment").PrivateLinkAttachment;
|
|
174
|
+
export { PrivateLinkAttachmentConnectionArgs, PrivateLinkAttachmentConnectionState } from "./privateLinkAttachmentConnection";
|
|
175
|
+
export type PrivateLinkAttachmentConnection = import("./privateLinkAttachmentConnection").PrivateLinkAttachmentConnection;
|
|
176
|
+
export declare const PrivateLinkAttachmentConnection: typeof import("./privateLinkAttachmentConnection").PrivateLinkAttachmentConnection;
|
|
165
177
|
export { ProviderArgs } from "./provider";
|
|
166
178
|
export type Provider = import("./provider").Provider;
|
|
167
179
|
export declare const Provider: typeof import("./provider").Provider;
|
package/index.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
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.
|
|
7
|
-
exports.types = void 0;
|
|
5
|
+
exports.getSchemaRegistryCluster = exports.getSchemaOutput = exports.getSchema = exports.getRoleBindingOutput = exports.getRoleBinding = exports.getPrivateLinkAttachmentConnectionOutput = exports.getPrivateLinkAttachmentConnection = exports.getPrivateLinkAttachmentOutput = exports.getPrivateLinkAttachment = 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.getEnvironments = exports.getEnvironmentOutput = exports.getEnvironment = exports.getByokKeyOutput = exports.getByokKey = exports.getBusinessMetadataBindingOutput = exports.getBusinessMetadataBinding = exports.getBusinessMetadataOutput = exports.getBusinessMetadata = exports.Environment = exports.Connector = exports.ClusterLink = exports.ByokKey = exports.BusinessMetadataBinding = exports.BusinessMetadata = exports.ApiKey = void 0;
|
|
6
|
+
exports.SubjectConfig = exports.ServiceAccount = exports.SchemaRegistryClusterMode = exports.SchemaRegistryClusterConfig = exports.SchemaRegistryCluster = exports.Schema = exports.RoleBinding = exports.Provider = exports.PrivateLinkAttachmentConnection = exports.PrivateLinkAttachment = 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.getTagBindingOutput = exports.getTagBinding = exports.getTagOutput = exports.getTag = exports.getSubjectModeOutput = exports.getSubjectMode = exports.getSubjectConfigOutput = exports.getSubjectConfig = exports.getServiceAccountOutput = exports.getServiceAccount = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaRegistryRegionOutput = exports.getSchemaRegistryRegion = exports.getSchemaRegistryClusters = exports.getSchemaRegistryClusterModeOutput = exports.getSchemaRegistryClusterMode = exports.getSchemaRegistryClusterConfigOutput = exports.getSchemaRegistryClusterConfig = exports.getSchemaRegistryClusterOutput = void 0;
|
|
7
|
+
exports.types = exports.config = exports.TransitGatewayAttachment = exports.TfImporter = exports.TagBinding = exports.Tag = exports.SubjectMode = void 0;
|
|
8
8
|
const pulumi = require("@pulumi/pulumi");
|
|
9
9
|
const utilities = require("./utilities");
|
|
10
10
|
exports.ApiKey = null;
|
|
@@ -73,6 +73,12 @@ utilities.lazyLoad(exports, ["getPeering", "getPeeringOutput"], () => require(".
|
|
|
73
73
|
exports.getPrivateLinkAccess = null;
|
|
74
74
|
exports.getPrivateLinkAccessOutput = null;
|
|
75
75
|
utilities.lazyLoad(exports, ["getPrivateLinkAccess", "getPrivateLinkAccessOutput"], () => require("./getPrivateLinkAccess"));
|
|
76
|
+
exports.getPrivateLinkAttachment = null;
|
|
77
|
+
exports.getPrivateLinkAttachmentOutput = null;
|
|
78
|
+
utilities.lazyLoad(exports, ["getPrivateLinkAttachment", "getPrivateLinkAttachmentOutput"], () => require("./getPrivateLinkAttachment"));
|
|
79
|
+
exports.getPrivateLinkAttachmentConnection = null;
|
|
80
|
+
exports.getPrivateLinkAttachmentConnectionOutput = null;
|
|
81
|
+
utilities.lazyLoad(exports, ["getPrivateLinkAttachmentConnection", "getPrivateLinkAttachmentConnectionOutput"], () => require("./getPrivateLinkAttachmentConnection"));
|
|
76
82
|
exports.getRoleBinding = null;
|
|
77
83
|
exports.getRoleBindingOutput = null;
|
|
78
84
|
utilities.lazyLoad(exports, ["getRoleBinding", "getRoleBindingOutput"], () => require("./getRoleBinding"));
|
|
@@ -149,6 +155,10 @@ exports.Peering = null;
|
|
|
149
155
|
utilities.lazyLoad(exports, ["Peering"], () => require("./peering"));
|
|
150
156
|
exports.PrivateLinkAccess = null;
|
|
151
157
|
utilities.lazyLoad(exports, ["PrivateLinkAccess"], () => require("./privateLinkAccess"));
|
|
158
|
+
exports.PrivateLinkAttachment = null;
|
|
159
|
+
utilities.lazyLoad(exports, ["PrivateLinkAttachment"], () => require("./privateLinkAttachment"));
|
|
160
|
+
exports.PrivateLinkAttachmentConnection = null;
|
|
161
|
+
utilities.lazyLoad(exports, ["PrivateLinkAttachmentConnection"], () => require("./privateLinkAttachmentConnection"));
|
|
152
162
|
exports.Provider = null;
|
|
153
163
|
utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
|
|
154
164
|
exports.RoleBinding = null;
|
|
@@ -228,6 +238,10 @@ const _module = {
|
|
|
228
238
|
return new exports.Peering(name, undefined, { urn });
|
|
229
239
|
case "confluentcloud:index/privateLinkAccess:PrivateLinkAccess":
|
|
230
240
|
return new exports.PrivateLinkAccess(name, undefined, { urn });
|
|
241
|
+
case "confluentcloud:index/privateLinkAttachment:PrivateLinkAttachment":
|
|
242
|
+
return new exports.PrivateLinkAttachment(name, undefined, { urn });
|
|
243
|
+
case "confluentcloud:index/privateLinkAttachmentConnection:PrivateLinkAttachmentConnection":
|
|
244
|
+
return new exports.PrivateLinkAttachmentConnection(name, undefined, { urn });
|
|
231
245
|
case "confluentcloud:index/roleBinding:RoleBinding":
|
|
232
246
|
return new exports.RoleBinding(name, undefined, { urn });
|
|
233
247
|
case "confluentcloud:index/schema:Schema":
|
|
@@ -279,6 +293,8 @@ pulumi.runtime.registerResourceModule("confluentcloud", "index/networkLinkEndpoi
|
|
|
279
293
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/networkLinkService", _module);
|
|
280
294
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/peering", _module);
|
|
281
295
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/privateLinkAccess", _module);
|
|
296
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/privateLinkAttachment", _module);
|
|
297
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/privateLinkAttachmentConnection", _module);
|
|
282
298
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/roleBinding", _module);
|
|
283
299
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/schema", _module);
|
|
284
300
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/schemaRegistryCluster", _module);
|