@pulumi/confluentcloud 0.0.1-alpha.1654438618
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/LICENSE +202 -0
- package/README.md +336 -0
- package/apiKey.d.ts +110 -0
- package/apiKey.js +77 -0
- package/apiKey.js.map +1 -0
- package/config/index.d.ts +1 -0
- package/config/index.js +21 -0
- package/config/index.js.map +1 -0
- package/config/vars.d.ts +12 -0
- package/config/vars.js +25 -0
- package/config/vars.js.map +1 -0
- package/connector.d.ts +97 -0
- package/connector.js +73 -0
- package/connector.js.map +1 -0
- package/environment.d.ts +67 -0
- package/environment.js +65 -0
- package/environment.js.map +1 -0
- package/getEnvironment.d.ts +72 -0
- package/getEnvironment.js +50 -0
- package/getEnvironment.js.map +1 -0
- package/getKafkaCluster.d.ts +143 -0
- package/getKafkaCluster.js +55 -0
- package/getKafkaCluster.js.map +1 -0
- package/getKafkaTopic.d.ts +80 -0
- package/getKafkaTopic.js +48 -0
- package/getKafkaTopic.js.map +1 -0
- package/getNetwork.d.ts +142 -0
- package/getNetwork.js +55 -0
- package/getNetwork.js.map +1 -0
- package/getOrganization.d.ts +28 -0
- package/getOrganization.js +29 -0
- package/getOrganization.js.map +1 -0
- package/getServiceAccount.d.ts +73 -0
- package/getServiceAccount.js +43 -0
- package/getServiceAccount.js.map +1 -0
- package/getUser.d.ts +99 -0
- package/getUser.js +62 -0
- package/getUser.js.map +1 -0
- package/index.d.ts +22 -0
- package/index.js +111 -0
- package/index.js.map +1 -0
- package/kafkaAcl.d.ts +159 -0
- package/kafkaAcl.js +108 -0
- package/kafkaAcl.js.map +1 -0
- package/kafkaCluster.d.ts +190 -0
- package/kafkaCluster.js +101 -0
- package/kafkaCluster.js.map +1 -0
- package/kafkaTopic.d.ts +117 -0
- package/kafkaTopic.js +82 -0
- package/kafkaTopic.js.map +1 -0
- package/network.d.ts +208 -0
- package/network.js +96 -0
- package/network.js.map +1 -0
- package/package.json +28 -0
- package/package.json.bak +28 -0
- package/package.json.dev +28 -0
- package/peering.d.ts +96 -0
- package/peering.js +76 -0
- package/peering.js.map +1 -0
- package/privateLinkAccess.d.ts +93 -0
- package/privateLinkAccess.js +74 -0
- package/privateLinkAccess.js.map +1 -0
- package/provider.d.ts +51 -0
- package/provider.js +47 -0
- package/provider.js.map +1 -0
- package/roleBinding.d.ts +83 -0
- package/roleBinding.js +73 -0
- package/roleBinding.js.map +1 -0
- package/scripts/install-pulumi-plugin.js +21 -0
- package/serviceAccount.d.ts +87 -0
- package/serviceAccount.js +69 -0
- package/serviceAccount.js.map +1 -0
- package/types/index.d.ts +3 -0
- package/types/index.js +11 -0
- package/types/index.js.map +1 -0
- package/types/input.d.ts +363 -0
- package/types/input.js +5 -0
- package/types/input.js.map +1 -0
- package/types/output.d.ts +298 -0
- package/types/output.js +5 -0
- package/types/output.js.map +1 -0
- package/utilities.d.ts +4 -0
- package/utilities.js +57 -0
- package/utilities.js.map +1 -0
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* `confluentcloud.KafkaCluster` describes a Kafka cluster data source.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
11
|
+
*
|
|
12
|
+
* const exampleUsingId = confluentcloud.getKafkaCluster({
|
|
13
|
+
* id: "lkc-abc123",
|
|
14
|
+
* environment: {
|
|
15
|
+
* id: "env-xyz456",
|
|
16
|
+
* },
|
|
17
|
+
* });
|
|
18
|
+
* const test_sa = new confluentcloud.ServiceAccount("test-sa", {
|
|
19
|
+
* displayName: "app_mgr",
|
|
20
|
+
* description: exampleUsingId.then(exampleUsingId => `app_mgr for ${exampleUsingId.displayName}`),
|
|
21
|
+
* });
|
|
22
|
+
* const exampleUsingNameKafkaCluster = confluentcloud.getKafkaCluster({
|
|
23
|
+
* displayName: "basic_kafka_cluster",
|
|
24
|
+
* environment: {
|
|
25
|
+
* id: "env-xyz456",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* export const exampleUsingName = exampleUsingNameKafkaCluster;
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
export declare function getKafkaCluster(args: GetKafkaClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetKafkaClusterResult>;
|
|
32
|
+
/**
|
|
33
|
+
* A collection of arguments for invoking getKafkaCluster.
|
|
34
|
+
*/
|
|
35
|
+
export interface GetKafkaClusterArgs {
|
|
36
|
+
/**
|
|
37
|
+
* (Optional Configuration Block) The configuration of the Basic Kafka cluster.
|
|
38
|
+
*/
|
|
39
|
+
basics?: inputs.GetKafkaClusterBasic[];
|
|
40
|
+
/**
|
|
41
|
+
* (Optional Configuration Block) The configuration of the Dedicated Kafka cluster. It supports the following:
|
|
42
|
+
*/
|
|
43
|
+
dedicated?: inputs.GetKafkaClusterDedicated;
|
|
44
|
+
/**
|
|
45
|
+
* A human-readable name for the Kafka cluster.
|
|
46
|
+
*/
|
|
47
|
+
displayName?: string;
|
|
48
|
+
environment: inputs.GetKafkaClusterEnvironment;
|
|
49
|
+
/**
|
|
50
|
+
* The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
|
|
51
|
+
*/
|
|
52
|
+
id?: string;
|
|
53
|
+
/**
|
|
54
|
+
* (Optional Configuration Block) The configuration of the Standard Kafka cluster.
|
|
55
|
+
*/
|
|
56
|
+
standards?: inputs.GetKafkaClusterStandard[];
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* A collection of values returned by getKafkaCluster.
|
|
60
|
+
*/
|
|
61
|
+
export interface GetKafkaClusterResult {
|
|
62
|
+
/**
|
|
63
|
+
* (Required String) An API Version of the schema version of the Kafka cluster, for example, `cmk/v2`.
|
|
64
|
+
*/
|
|
65
|
+
readonly apiVersion: string;
|
|
66
|
+
/**
|
|
67
|
+
* (Required String) The availability zone configuration of the Kafka cluster. Accepted values are: `SINGLE_ZONE` and `MULTI_ZONE`.
|
|
68
|
+
*/
|
|
69
|
+
readonly availability: string;
|
|
70
|
+
/**
|
|
71
|
+
* (Optional Configuration Block) The configuration of the Basic Kafka cluster.
|
|
72
|
+
*/
|
|
73
|
+
readonly basics?: outputs.GetKafkaClusterBasic[];
|
|
74
|
+
/**
|
|
75
|
+
* (Required String) The bootstrap endpoint used by Kafka clients to connect to the Kafka cluster. (e.g., `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
76
|
+
*/
|
|
77
|
+
readonly bootstrapEndpoint: string;
|
|
78
|
+
/**
|
|
79
|
+
* (Required String) The cloud service provider that runs the Kafka cluster. Accepted values are: `AWS`, `AZURE`, and `GCP`.
|
|
80
|
+
*/
|
|
81
|
+
readonly cloud: string;
|
|
82
|
+
/**
|
|
83
|
+
* (Optional Configuration Block) The configuration of the Dedicated Kafka cluster. It supports the following:
|
|
84
|
+
*/
|
|
85
|
+
readonly dedicated?: outputs.GetKafkaClusterDedicated;
|
|
86
|
+
/**
|
|
87
|
+
* (Required String) The name of the Kafka cluster.
|
|
88
|
+
*/
|
|
89
|
+
readonly displayName: string;
|
|
90
|
+
readonly environment: outputs.GetKafkaClusterEnvironment;
|
|
91
|
+
/**
|
|
92
|
+
* (Required String) The REST endpoint of the Kafka cluster (e.g., `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
|
|
93
|
+
*/
|
|
94
|
+
readonly httpEndpoint: string;
|
|
95
|
+
/**
|
|
96
|
+
* (Required String) The ID of the Network that the Kafka cluster belongs to, for example, `n-abc123`.
|
|
97
|
+
*/
|
|
98
|
+
readonly id: string;
|
|
99
|
+
/**
|
|
100
|
+
* (Required String) A kind of the Kafka cluster, for example, `Cluster`.
|
|
101
|
+
*/
|
|
102
|
+
readonly kind: string;
|
|
103
|
+
readonly networks: outputs.GetKafkaClusterNetwork[];
|
|
104
|
+
/**
|
|
105
|
+
* (Required String) The Confluent Resource Name of the Kafka cluster, for example, `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/cloud-cluster=lkc-abc123`.
|
|
106
|
+
*/
|
|
107
|
+
readonly rbacCrn: string;
|
|
108
|
+
/**
|
|
109
|
+
* (Required String) The cloud service provider region where the Kafka cluster is running, for example, `us-west-2`. See [Cloud Providers and Regions](https://docs.confluent.io/cloud/current/clusters/regions.html#cloud-providers-and-regions) for a full list of options for AWS, Azure, and GCP.
|
|
110
|
+
*/
|
|
111
|
+
readonly region: string;
|
|
112
|
+
/**
|
|
113
|
+
* (Optional Configuration Block) The configuration of the Standard Kafka cluster.
|
|
114
|
+
*/
|
|
115
|
+
readonly standards?: outputs.GetKafkaClusterStandard[];
|
|
116
|
+
}
|
|
117
|
+
export declare function getKafkaClusterOutput(args: GetKafkaClusterOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetKafkaClusterResult>;
|
|
118
|
+
/**
|
|
119
|
+
* A collection of arguments for invoking getKafkaCluster.
|
|
120
|
+
*/
|
|
121
|
+
export interface GetKafkaClusterOutputArgs {
|
|
122
|
+
/**
|
|
123
|
+
* (Optional Configuration Block) The configuration of the Basic Kafka cluster.
|
|
124
|
+
*/
|
|
125
|
+
basics?: pulumi.Input<pulumi.Input<inputs.GetKafkaClusterBasicArgs>[]>;
|
|
126
|
+
/**
|
|
127
|
+
* (Optional Configuration Block) The configuration of the Dedicated Kafka cluster. It supports the following:
|
|
128
|
+
*/
|
|
129
|
+
dedicated?: pulumi.Input<inputs.GetKafkaClusterDedicatedArgs>;
|
|
130
|
+
/**
|
|
131
|
+
* A human-readable name for the Kafka cluster.
|
|
132
|
+
*/
|
|
133
|
+
displayName?: pulumi.Input<string>;
|
|
134
|
+
environment: pulumi.Input<inputs.GetKafkaClusterEnvironmentArgs>;
|
|
135
|
+
/**
|
|
136
|
+
* The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
|
|
137
|
+
*/
|
|
138
|
+
id?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* (Optional Configuration Block) The configuration of the Standard Kafka cluster.
|
|
141
|
+
*/
|
|
142
|
+
standards?: pulumi.Input<pulumi.Input<inputs.GetKafkaClusterStandardArgs>[]>;
|
|
143
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
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.getKafkaClusterOutput = exports.getKafkaCluster = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* `confluentcloud.KafkaCluster` describes a Kafka cluster data source.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
16
|
+
*
|
|
17
|
+
* const exampleUsingId = confluentcloud.getKafkaCluster({
|
|
18
|
+
* id: "lkc-abc123",
|
|
19
|
+
* environment: {
|
|
20
|
+
* id: "env-xyz456",
|
|
21
|
+
* },
|
|
22
|
+
* });
|
|
23
|
+
* const test_sa = new confluentcloud.ServiceAccount("test-sa", {
|
|
24
|
+
* displayName: "app_mgr",
|
|
25
|
+
* description: exampleUsingId.then(exampleUsingId => `app_mgr for ${exampleUsingId.displayName}`),
|
|
26
|
+
* });
|
|
27
|
+
* const exampleUsingNameKafkaCluster = confluentcloud.getKafkaCluster({
|
|
28
|
+
* displayName: "basic_kafka_cluster",
|
|
29
|
+
* environment: {
|
|
30
|
+
* id: "env-xyz456",
|
|
31
|
+
* },
|
|
32
|
+
* });
|
|
33
|
+
* export const exampleUsingName = exampleUsingNameKafkaCluster;
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
function getKafkaCluster(args, opts) {
|
|
37
|
+
if (!opts) {
|
|
38
|
+
opts = {};
|
|
39
|
+
}
|
|
40
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
41
|
+
return pulumi.runtime.invoke("confluentcloud:index/getKafkaCluster:getKafkaCluster", {
|
|
42
|
+
"basics": args.basics,
|
|
43
|
+
"dedicated": args.dedicated,
|
|
44
|
+
"displayName": args.displayName,
|
|
45
|
+
"environment": args.environment,
|
|
46
|
+
"id": args.id,
|
|
47
|
+
"standards": args.standards,
|
|
48
|
+
}, opts);
|
|
49
|
+
}
|
|
50
|
+
exports.getKafkaCluster = getKafkaCluster;
|
|
51
|
+
function getKafkaClusterOutput(args, opts) {
|
|
52
|
+
return pulumi.output(args).apply(a => getKafkaCluster(a, opts));
|
|
53
|
+
}
|
|
54
|
+
exports.getKafkaClusterOutput = getKafkaClusterOutput;
|
|
55
|
+
//# sourceMappingURL=getKafkaCluster.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getKafkaCluster.js","sourceRoot":"","sources":["../getKafkaCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,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;AAdD,0CAcC;AAyFD,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,sDAEC"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* `confluentcloud.KafkaTopic` describes a Kafka Topic data source.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
11
|
+
*
|
|
12
|
+
* const orders = confluentcloud.getKafkaTopic({
|
|
13
|
+
* kafkaCluster: {
|
|
14
|
+
* id: confluent_kafka_cluster["basic-cluster"].id,
|
|
15
|
+
* },
|
|
16
|
+
* topicName: "orders",
|
|
17
|
+
* httpEndpoint: confluent_kafka_cluster["basic-cluster"].http_endpoint,
|
|
18
|
+
* credentials: {
|
|
19
|
+
* key: "<Kafka API Key for confluent_kafka_cluster.basic-cluster>",
|
|
20
|
+
* secret: "<Kafka API Secret for confluent_kafka_cluster.basic-cluster>",
|
|
21
|
+
* },
|
|
22
|
+
* });
|
|
23
|
+
* export const config = orders.then(orders => orders.config);
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare function getKafkaTopic(args: GetKafkaTopicArgs, opts?: pulumi.InvokeOptions): Promise<GetKafkaTopicResult>;
|
|
27
|
+
/**
|
|
28
|
+
* A collection of arguments for invoking getKafkaTopic.
|
|
29
|
+
*/
|
|
30
|
+
export interface GetKafkaTopicArgs {
|
|
31
|
+
credentials: inputs.GetKafkaTopicCredentials;
|
|
32
|
+
/**
|
|
33
|
+
* The REST endpoint of the Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
|
|
34
|
+
*/
|
|
35
|
+
httpEndpoint: string;
|
|
36
|
+
kafkaCluster: inputs.GetKafkaTopicKafkaCluster;
|
|
37
|
+
/**
|
|
38
|
+
* The name of the topic, for example, `orders-1`. The topic name can be up to 255 characters in length and can contain only alphanumeric characters, hyphens, and underscores.
|
|
39
|
+
*/
|
|
40
|
+
topicName: string;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* A collection of values returned by getKafkaTopic.
|
|
44
|
+
*/
|
|
45
|
+
export interface GetKafkaTopicResult {
|
|
46
|
+
/**
|
|
47
|
+
* (Optional Map) The custom topic settings:
|
|
48
|
+
*/
|
|
49
|
+
readonly config: {
|
|
50
|
+
[key: string]: string;
|
|
51
|
+
};
|
|
52
|
+
readonly credentials: outputs.GetKafkaTopicCredentials;
|
|
53
|
+
readonly httpEndpoint: string;
|
|
54
|
+
/**
|
|
55
|
+
* The provider-assigned unique ID for this managed resource.
|
|
56
|
+
*/
|
|
57
|
+
readonly id: string;
|
|
58
|
+
readonly kafkaCluster: outputs.GetKafkaTopicKafkaCluster;
|
|
59
|
+
/**
|
|
60
|
+
* (Required Number) The number of partitions to create in the topic. Defaults to `6`.
|
|
61
|
+
*/
|
|
62
|
+
readonly partitionsCount: number;
|
|
63
|
+
readonly topicName: string;
|
|
64
|
+
}
|
|
65
|
+
export declare function getKafkaTopicOutput(args: GetKafkaTopicOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetKafkaTopicResult>;
|
|
66
|
+
/**
|
|
67
|
+
* A collection of arguments for invoking getKafkaTopic.
|
|
68
|
+
*/
|
|
69
|
+
export interface GetKafkaTopicOutputArgs {
|
|
70
|
+
credentials: pulumi.Input<inputs.GetKafkaTopicCredentialsArgs>;
|
|
71
|
+
/**
|
|
72
|
+
* The REST endpoint of the Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
|
|
73
|
+
*/
|
|
74
|
+
httpEndpoint: pulumi.Input<string>;
|
|
75
|
+
kafkaCluster: pulumi.Input<inputs.GetKafkaTopicKafkaClusterArgs>;
|
|
76
|
+
/**
|
|
77
|
+
* The name of the topic, for example, `orders-1`. The topic name can be up to 255 characters in length and can contain only alphanumeric characters, hyphens, and underscores.
|
|
78
|
+
*/
|
|
79
|
+
topicName: pulumi.Input<string>;
|
|
80
|
+
}
|
package/getKafkaTopic.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
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.getKafkaTopicOutput = exports.getKafkaTopic = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* `confluentcloud.KafkaTopic` describes a Kafka Topic data source.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
16
|
+
*
|
|
17
|
+
* const orders = confluentcloud.getKafkaTopic({
|
|
18
|
+
* kafkaCluster: {
|
|
19
|
+
* id: confluent_kafka_cluster["basic-cluster"].id,
|
|
20
|
+
* },
|
|
21
|
+
* topicName: "orders",
|
|
22
|
+
* httpEndpoint: confluent_kafka_cluster["basic-cluster"].http_endpoint,
|
|
23
|
+
* credentials: {
|
|
24
|
+
* key: "<Kafka API Key for confluent_kafka_cluster.basic-cluster>",
|
|
25
|
+
* secret: "<Kafka API Secret for confluent_kafka_cluster.basic-cluster>",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* export const config = orders.then(orders => orders.config);
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
function getKafkaTopic(args, opts) {
|
|
32
|
+
if (!opts) {
|
|
33
|
+
opts = {};
|
|
34
|
+
}
|
|
35
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
36
|
+
return pulumi.runtime.invoke("confluentcloud:index/getKafkaTopic:getKafkaTopic", {
|
|
37
|
+
"credentials": args.credentials,
|
|
38
|
+
"httpEndpoint": args.httpEndpoint,
|
|
39
|
+
"kafkaCluster": args.kafkaCluster,
|
|
40
|
+
"topicName": args.topicName,
|
|
41
|
+
}, opts);
|
|
42
|
+
}
|
|
43
|
+
exports.getKafkaTopic = getKafkaTopic;
|
|
44
|
+
function getKafkaTopicOutput(args, opts) {
|
|
45
|
+
return pulumi.output(args).apply(a => getKafkaTopic(a, opts));
|
|
46
|
+
}
|
|
47
|
+
exports.getKafkaTopicOutput = getKafkaTopicOutput;
|
|
48
|
+
//# sourceMappingURL=getKafkaTopic.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getKafkaTopic.js","sourceRoot":"","sources":["../getKafkaTopic.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,sCAYC;AAwCD,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACjE,CAAC;AAFD,kDAEC"}
|
package/getNetwork.d.ts
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* `confluentcloud.Network` describes a Network data source.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
11
|
+
*
|
|
12
|
+
* const exampleUsingId = confluentcloud.getNetwork({
|
|
13
|
+
* id: "n-abc123",
|
|
14
|
+
* environment: {
|
|
15
|
+
* id: "env-xyz456",
|
|
16
|
+
* },
|
|
17
|
+
* });
|
|
18
|
+
* const test_sa = new confluentcloud.ServiceAccount("test-sa", {
|
|
19
|
+
* displayName: "test_sa",
|
|
20
|
+
* description: exampleUsingId.then(exampleUsingId => `test_sa for ${exampleUsingId.displayName}`),
|
|
21
|
+
* });
|
|
22
|
+
* const exampleUsingNameNetwork = confluentcloud.getNetwork({
|
|
23
|
+
* displayName: "my_network",
|
|
24
|
+
* environment: {
|
|
25
|
+
* id: "env-xyz456",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* export const exampleUsingName = exampleUsingNameNetwork;
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
export declare function getNetwork(args: GetNetworkArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkResult>;
|
|
32
|
+
/**
|
|
33
|
+
* A collection of arguments for invoking getNetwork.
|
|
34
|
+
*/
|
|
35
|
+
export interface GetNetworkArgs {
|
|
36
|
+
/**
|
|
37
|
+
* (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
|
|
38
|
+
*/
|
|
39
|
+
aws?: inputs.GetNetworkAw[];
|
|
40
|
+
/**
|
|
41
|
+
* (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
|
|
42
|
+
*/
|
|
43
|
+
azures?: inputs.GetNetworkAzure[];
|
|
44
|
+
/**
|
|
45
|
+
* A human-readable name for the Network.
|
|
46
|
+
*/
|
|
47
|
+
displayName?: string;
|
|
48
|
+
environment: inputs.GetNetworkEnvironment;
|
|
49
|
+
/**
|
|
50
|
+
* (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
|
|
51
|
+
*/
|
|
52
|
+
gcps?: inputs.GetNetworkGcp[];
|
|
53
|
+
/**
|
|
54
|
+
* The ID of the Environment that the Network belongs to, for example, `env-xyz456`.
|
|
55
|
+
*/
|
|
56
|
+
id?: string;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* A collection of values returned by getNetwork.
|
|
60
|
+
*/
|
|
61
|
+
export interface GetNetworkResult {
|
|
62
|
+
/**
|
|
63
|
+
* (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
|
|
64
|
+
*/
|
|
65
|
+
readonly aws: outputs.GetNetworkAw[];
|
|
66
|
+
/**
|
|
67
|
+
* (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
|
|
68
|
+
*/
|
|
69
|
+
readonly azures: outputs.GetNetworkAzure[];
|
|
70
|
+
/**
|
|
71
|
+
* (Required String) The IPv4 CIDR block to used for the network. Must be `/16`. Required for VPC peering and AWS TransitGateway.
|
|
72
|
+
*/
|
|
73
|
+
readonly cidr: string;
|
|
74
|
+
/**
|
|
75
|
+
* (Required String) The cloud service provider in which the network exists. Accepted values are: `AWS`, `AZURE`, and `GCP`.
|
|
76
|
+
*/
|
|
77
|
+
readonly cloud: string;
|
|
78
|
+
/**
|
|
79
|
+
* (Required List of String) The list of connection types that may be used with the network. Accepted connection types are: `PEERING`, `TRANSITGATEWAY`, and `PRIVATELINK`.
|
|
80
|
+
*/
|
|
81
|
+
readonly connectionTypes: string[];
|
|
82
|
+
/**
|
|
83
|
+
* (Required String) The name of the Network.
|
|
84
|
+
*/
|
|
85
|
+
readonly displayName: string;
|
|
86
|
+
readonly dnsDomain: string;
|
|
87
|
+
readonly environment: outputs.GetNetworkEnvironment;
|
|
88
|
+
/**
|
|
89
|
+
* (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
|
|
90
|
+
*/
|
|
91
|
+
readonly gcps: outputs.GetNetworkGcp[];
|
|
92
|
+
/**
|
|
93
|
+
* (Required String) The ID of the Network, for example, `n-abc123`.
|
|
94
|
+
*/
|
|
95
|
+
readonly id: string;
|
|
96
|
+
/**
|
|
97
|
+
* (Required String) The cloud provider region where the network exists.
|
|
98
|
+
*/
|
|
99
|
+
readonly region: string;
|
|
100
|
+
/**
|
|
101
|
+
* (Required String) The Confluent Resource Name of the Network.
|
|
102
|
+
*/
|
|
103
|
+
readonly resourceName: string;
|
|
104
|
+
readonly zonalSubdomains: {
|
|
105
|
+
[key: string]: string;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* (Optional List of String) The 3 availability zones for this network. They can optionally be specified for AWS networks
|
|
109
|
+
* used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
|
|
110
|
+
* On AWS, zones are AWS [AZ IDs](https://docs.aws.amazon.com/ram/latest/userguide/working-with-az-ids.html), for example, `use1-az3`.
|
|
111
|
+
* On GCP, zones are GCP [zones](https://cloud.google.com/compute/docs/regions-zones), for example, `us-central1-c`.
|
|
112
|
+
* On Azure, zones are Confluent-chosen names (for example, `1`, `2`, `3`) since Azure does not have universal zone identifiers.
|
|
113
|
+
*/
|
|
114
|
+
readonly zones: string[];
|
|
115
|
+
}
|
|
116
|
+
export declare function getNetworkOutput(args: GetNetworkOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNetworkResult>;
|
|
117
|
+
/**
|
|
118
|
+
* A collection of arguments for invoking getNetwork.
|
|
119
|
+
*/
|
|
120
|
+
export interface GetNetworkOutputArgs {
|
|
121
|
+
/**
|
|
122
|
+
* (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
|
|
123
|
+
*/
|
|
124
|
+
aws?: pulumi.Input<pulumi.Input<inputs.GetNetworkAwArgs>[]>;
|
|
125
|
+
/**
|
|
126
|
+
* (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
|
|
127
|
+
*/
|
|
128
|
+
azures?: pulumi.Input<pulumi.Input<inputs.GetNetworkAzureArgs>[]>;
|
|
129
|
+
/**
|
|
130
|
+
* A human-readable name for the Network.
|
|
131
|
+
*/
|
|
132
|
+
displayName?: pulumi.Input<string>;
|
|
133
|
+
environment: pulumi.Input<inputs.GetNetworkEnvironmentArgs>;
|
|
134
|
+
/**
|
|
135
|
+
* (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
|
|
136
|
+
*/
|
|
137
|
+
gcps?: pulumi.Input<pulumi.Input<inputs.GetNetworkGcpArgs>[]>;
|
|
138
|
+
/**
|
|
139
|
+
* The ID of the Environment that the Network belongs to, for example, `env-xyz456`.
|
|
140
|
+
*/
|
|
141
|
+
id?: pulumi.Input<string>;
|
|
142
|
+
}
|
package/getNetwork.js
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
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.getNetworkOutput = exports.getNetwork = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* `confluentcloud.Network` describes a Network data source.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
16
|
+
*
|
|
17
|
+
* const exampleUsingId = confluentcloud.getNetwork({
|
|
18
|
+
* id: "n-abc123",
|
|
19
|
+
* environment: {
|
|
20
|
+
* id: "env-xyz456",
|
|
21
|
+
* },
|
|
22
|
+
* });
|
|
23
|
+
* const test_sa = new confluentcloud.ServiceAccount("test-sa", {
|
|
24
|
+
* displayName: "test_sa",
|
|
25
|
+
* description: exampleUsingId.then(exampleUsingId => `test_sa for ${exampleUsingId.displayName}`),
|
|
26
|
+
* });
|
|
27
|
+
* const exampleUsingNameNetwork = confluentcloud.getNetwork({
|
|
28
|
+
* displayName: "my_network",
|
|
29
|
+
* environment: {
|
|
30
|
+
* id: "env-xyz456",
|
|
31
|
+
* },
|
|
32
|
+
* });
|
|
33
|
+
* export const exampleUsingName = exampleUsingNameNetwork;
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
function getNetwork(args, opts) {
|
|
37
|
+
if (!opts) {
|
|
38
|
+
opts = {};
|
|
39
|
+
}
|
|
40
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
41
|
+
return pulumi.runtime.invoke("confluentcloud:index/getNetwork:getNetwork", {
|
|
42
|
+
"aws": args.aws,
|
|
43
|
+
"azures": args.azures,
|
|
44
|
+
"displayName": args.displayName,
|
|
45
|
+
"environment": args.environment,
|
|
46
|
+
"gcps": args.gcps,
|
|
47
|
+
"id": args.id,
|
|
48
|
+
}, opts);
|
|
49
|
+
}
|
|
50
|
+
exports.getNetwork = getNetwork;
|
|
51
|
+
function getNetworkOutput(args, opts) {
|
|
52
|
+
return pulumi.output(args).apply(a => getNetwork(a, opts));
|
|
53
|
+
}
|
|
54
|
+
exports.getNetworkOutput = getNetworkOutput;
|
|
55
|
+
//# sourceMappingURL=getNetwork.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getNetwork.js","sourceRoot":"","sources":["../getNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,gCAcC;AAsFD,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9D,CAAC;AAFD,4CAEC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* `confluentcloud.getOrganization` describes an Organization data source.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
10
|
+
*
|
|
11
|
+
* const exampleOrganization = confluentcloud.getOrganization({});
|
|
12
|
+
* export const example = exampleOrganization;
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare function getOrganization(opts?: pulumi.InvokeOptions): Promise<GetOrganizationResult>;
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getOrganization.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetOrganizationResult {
|
|
20
|
+
/**
|
|
21
|
+
* (Required String) The ID of the Organization, for example, `1111aaaa-11aa-11aa-11aa-111111aaaaaa`.
|
|
22
|
+
*/
|
|
23
|
+
readonly id: string;
|
|
24
|
+
/**
|
|
25
|
+
* (Required String) The Confluent Resource Name of the Organization, for example, `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa`.
|
|
26
|
+
*/
|
|
27
|
+
readonly resourceName: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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.getOrganization = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* `confluentcloud.getOrganization` describes an Organization data source.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
16
|
+
*
|
|
17
|
+
* const exampleOrganization = confluentcloud.getOrganization({});
|
|
18
|
+
* export const example = exampleOrganization;
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
function getOrganization(opts) {
|
|
22
|
+
if (!opts) {
|
|
23
|
+
opts = {};
|
|
24
|
+
}
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
26
|
+
return pulumi.runtime.invoke("confluentcloud:index/getOrganization:getOrganization", {}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getOrganization = getOrganization;
|
|
29
|
+
//# sourceMappingURL=getOrganization.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getOrganization.js","sourceRoot":"","sources":["../getOrganization.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,eAAe,CAAC,IAA2B;IACvD,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE,EACpF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0CAQC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* `confluentcloud.ServiceAccount` describes a Service Account data source.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
10
|
+
*
|
|
11
|
+
* const exampleUsingIdServiceAccount = confluentcloud.getServiceAccount({
|
|
12
|
+
* id: "sa-abc123",
|
|
13
|
+
* });
|
|
14
|
+
* export const exampleUsingId = exampleUsingIdServiceAccount;
|
|
15
|
+
* const exampleUsingName = confluentcloud.getServiceAccount({
|
|
16
|
+
* displayName: "test_sa",
|
|
17
|
+
* });
|
|
18
|
+
* const test_env = new confluentcloud.Environment("test-env", {displayName: exampleUsingIdServiceAccount.then(exampleUsingIdServiceAccount => `env_for_${exampleUsingIdServiceAccount.displayName}`)});
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
export declare function getServiceAccount(args?: GetServiceAccountArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceAccountResult>;
|
|
22
|
+
/**
|
|
23
|
+
* A collection of arguments for invoking getServiceAccount.
|
|
24
|
+
*/
|
|
25
|
+
export interface GetServiceAccountArgs {
|
|
26
|
+
/**
|
|
27
|
+
* A human-readable name for the Service Account.
|
|
28
|
+
*/
|
|
29
|
+
displayName?: string;
|
|
30
|
+
/**
|
|
31
|
+
* The ID of the Service Account (e.g., `sa-abc123`).
|
|
32
|
+
*/
|
|
33
|
+
id?: string;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* A collection of values returned by getServiceAccount.
|
|
37
|
+
*/
|
|
38
|
+
export interface GetServiceAccountResult {
|
|
39
|
+
/**
|
|
40
|
+
* (Required String) An API Version of the schema version of the Service Account.
|
|
41
|
+
*/
|
|
42
|
+
readonly apiVersion: string;
|
|
43
|
+
/**
|
|
44
|
+
* (Required String) A free-form description of the Service Account.
|
|
45
|
+
*/
|
|
46
|
+
readonly description: string;
|
|
47
|
+
/**
|
|
48
|
+
* (Required String) A human-readable name for the Service Account.
|
|
49
|
+
*/
|
|
50
|
+
readonly displayName: string;
|
|
51
|
+
/**
|
|
52
|
+
* (Required String) The ID of the Service Account (e.g., `sa-abc123`).
|
|
53
|
+
*/
|
|
54
|
+
readonly id: string;
|
|
55
|
+
/**
|
|
56
|
+
* (Required String) A kind of the Service Account.
|
|
57
|
+
*/
|
|
58
|
+
readonly kind: string;
|
|
59
|
+
}
|
|
60
|
+
export declare function getServiceAccountOutput(args?: GetServiceAccountOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetServiceAccountResult>;
|
|
61
|
+
/**
|
|
62
|
+
* A collection of arguments for invoking getServiceAccount.
|
|
63
|
+
*/
|
|
64
|
+
export interface GetServiceAccountOutputArgs {
|
|
65
|
+
/**
|
|
66
|
+
* A human-readable name for the Service Account.
|
|
67
|
+
*/
|
|
68
|
+
displayName?: pulumi.Input<string>;
|
|
69
|
+
/**
|
|
70
|
+
* The ID of the Service Account (e.g., `sa-abc123`).
|
|
71
|
+
*/
|
|
72
|
+
id?: pulumi.Input<string>;
|
|
73
|
+
}
|