@pulumi/confluentcloud 2.1.0-alpha.1724476866 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/catalogEntityAttributes.d.ts +6 -6
- package/package.json +2 -2
- package/types/input.d.ts +4 -0
- package/types/output.d.ts +8 -0
|
@@ -28,11 +28,11 @@ export declare class CatalogEntityAttributes extends pulumi.CustomResource {
|
|
|
28
28
|
*/
|
|
29
29
|
readonly credentials: pulumi.Output<outputs.CatalogEntityAttributesCredentials | undefined>;
|
|
30
30
|
/**
|
|
31
|
-
* The qualified name of the entity, for example, `${data.confluent_schema_registry_cluster.
|
|
31
|
+
* The qualified name of the entity, for example, `${data.confluent_schema_registry_cluster.essentials.id}:.:${confluent_schema.purchase.schema_identifier}`, `${data.confluent_schema_registry_cluster.essentials.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
32
32
|
*/
|
|
33
33
|
readonly entityName: pulumi.Output<string>;
|
|
34
34
|
/**
|
|
35
|
-
* The entity type, for example, `
|
|
35
|
+
* The entity type, for example, `cfEnvironment`, `kafkaLogicalCluster`, `kafkaTopic`, `srSchema`, etc. Refer to the [Entity types](https://docs.confluent.io/cloud/current/stream-governance/stream-catalog-rest-apis.html#entity-types) to learn more about entity types.
|
|
36
36
|
*/
|
|
37
37
|
readonly entityType: pulumi.Output<string>;
|
|
38
38
|
/**
|
|
@@ -64,11 +64,11 @@ export interface CatalogEntityAttributesState {
|
|
|
64
64
|
*/
|
|
65
65
|
credentials?: pulumi.Input<inputs.CatalogEntityAttributesCredentials>;
|
|
66
66
|
/**
|
|
67
|
-
* The qualified name of the entity, for example, `${data.confluent_schema_registry_cluster.
|
|
67
|
+
* The qualified name of the entity, for example, `${data.confluent_schema_registry_cluster.essentials.id}:.:${confluent_schema.purchase.schema_identifier}`, `${data.confluent_schema_registry_cluster.essentials.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
68
68
|
*/
|
|
69
69
|
entityName?: pulumi.Input<string>;
|
|
70
70
|
/**
|
|
71
|
-
* The entity type, for example, `
|
|
71
|
+
* The entity type, for example, `cfEnvironment`, `kafkaLogicalCluster`, `kafkaTopic`, `srSchema`, etc. Refer to the [Entity types](https://docs.confluent.io/cloud/current/stream-governance/stream-catalog-rest-apis.html#entity-types) to learn more about entity types.
|
|
72
72
|
*/
|
|
73
73
|
entityType?: pulumi.Input<string>;
|
|
74
74
|
/**
|
|
@@ -92,11 +92,11 @@ export interface CatalogEntityAttributesArgs {
|
|
|
92
92
|
*/
|
|
93
93
|
credentials?: pulumi.Input<inputs.CatalogEntityAttributesCredentials>;
|
|
94
94
|
/**
|
|
95
|
-
* The qualified name of the entity, for example, `${data.confluent_schema_registry_cluster.
|
|
95
|
+
* The qualified name of the entity, for example, `${data.confluent_schema_registry_cluster.essentials.id}:.:${confluent_schema.purchase.schema_identifier}`, `${data.confluent_schema_registry_cluster.essentials.id}:${confluent_kafka_cluster.basic.id}:${confluent_kafka_topic.purchase.topic_name}`.
|
|
96
96
|
*/
|
|
97
97
|
entityName: pulumi.Input<string>;
|
|
98
98
|
/**
|
|
99
|
-
* The entity type, for example, `
|
|
99
|
+
* The entity type, for example, `cfEnvironment`, `kafkaLogicalCluster`, `kafkaTopic`, `srSchema`, etc. Refer to the [Entity types](https://docs.confluent.io/cloud/current/stream-governance/stream-catalog-rest-apis.html#entity-types) to learn more about entity types.
|
|
100
100
|
*/
|
|
101
101
|
entityType: pulumi.Input<string>;
|
|
102
102
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/confluentcloud",
|
|
3
|
-
"version": "2.1.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Confluent cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "confluentcloud",
|
|
27
|
-
"version": "2.1.0
|
|
27
|
+
"version": "2.1.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -19,6 +19,10 @@ export interface AccessPointAwsEgressPrivateLinkEndpoint {
|
|
|
19
19
|
vpcEndpointServiceName: pulumi.Input<string>;
|
|
20
20
|
}
|
|
21
21
|
export interface AccessPointAzureEgressPrivateLinkEndpoint {
|
|
22
|
+
/**
|
|
23
|
+
* (Required List of Strings) Domains of the Private Endpoint (if any) based off FQDNs in Azure custom DNS configs, which are required in your private DNS setup, for example: `["dbname.database.windows.net", "dbname-region.database.windows.net"]`.
|
|
24
|
+
*/
|
|
25
|
+
privateEndpointCustomDnsConfigDomains?: pulumi.Input<pulumi.Input<string>[]>;
|
|
22
26
|
/**
|
|
23
27
|
* (Required String) Domain of the Private Endpoint (if any) that is connected to the Private Link service.
|
|
24
28
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -18,6 +18,10 @@ export interface AccessPointAwsEgressPrivateLinkEndpoint {
|
|
|
18
18
|
vpcEndpointServiceName: string;
|
|
19
19
|
}
|
|
20
20
|
export interface AccessPointAzureEgressPrivateLinkEndpoint {
|
|
21
|
+
/**
|
|
22
|
+
* (Required List of Strings) Domains of the Private Endpoint (if any) based off FQDNs in Azure custom DNS configs, which are required in your private DNS setup, for example: `["dbname.database.windows.net", "dbname-region.database.windows.net"]`.
|
|
23
|
+
*/
|
|
24
|
+
privateEndpointCustomDnsConfigDomains: string[];
|
|
21
25
|
/**
|
|
22
26
|
* (Required String) Domain of the Private Endpoint (if any) that is connected to the Private Link service.
|
|
23
27
|
*/
|
|
@@ -434,6 +438,10 @@ export interface GetAccessPointAwsEgressPrivateLinkEndpoint {
|
|
|
434
438
|
vpcEndpointServiceName: string;
|
|
435
439
|
}
|
|
436
440
|
export interface GetAccessPointAzureEgressPrivateLinkEndpoint {
|
|
441
|
+
/**
|
|
442
|
+
* (Required List of Strings) Domains of the Private Endpoint (if any) based off FQDNs in Azure custom DNS configs, which are required in your private DNS setup, for example: `["dbname.database.windows.net", "dbname-region.database.windows.net"]`.
|
|
443
|
+
*/
|
|
444
|
+
privateEndpointCustomDnsConfigDomains: string[];
|
|
437
445
|
/**
|
|
438
446
|
* (Required String) Domain of the Private Endpoint (if any) that is connected to the Private Link service.
|
|
439
447
|
*/
|