@pulumi/confluentcloud 1.4.0 → 1.6.0-alpha.1669246534
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/apiKey.js +22 -22
- package/apiKey.js.map +1 -1
- package/clusterLink.js +22 -22
- package/clusterLink.js.map +1 -1
- package/connector.d.ts +6 -6
- package/connector.js +22 -22
- package/connector.js.map +1 -1
- package/environment.js +16 -16
- package/environment.js.map +1 -1
- package/getKafkaClientQuota.d.ts +4 -1
- package/getKafkaClientQuota.js +3 -0
- package/getKafkaClientQuota.js.map +1 -1
- package/getKsqlCluster.d.ts +10 -5
- package/getKsqlCluster.js +3 -0
- package/getKsqlCluster.js.map +1 -1
- package/getSchemaRegistryCluster.d.ts +96 -0
- package/getSchemaRegistryCluster.js +54 -0
- package/getSchemaRegistryCluster.js.map +1 -0
- package/getSchemaRegistryRegion.d.ts +71 -0
- package/getSchemaRegistryRegion.js +46 -0
- package/getSchemaRegistryRegion.js.map +1 -0
- package/getStreamGovernanceRegion.d.ts +73 -0
- package/getStreamGovernanceRegion.js +48 -0
- package/getStreamGovernanceRegion.js.map +1 -0
- package/getStreatGovernanceCluster.d.ts +98 -0
- package/getStreatGovernanceCluster.js +56 -0
- package/getStreatGovernanceCluster.js.map +1 -0
- package/getTransitGatewayAttachment.d.ts +83 -0
- package/getTransitGatewayAttachment.js +54 -0
- package/getTransitGatewayAttachment.js.map +1 -0
- package/getUser.d.ts +1 -1
- package/getUser.js +1 -1
- package/identityPool.d.ts +0 -3
- package/identityPool.js +22 -25
- package/identityPool.js.map +1 -1
- package/identityProvider.d.ts +0 -3
- package/identityProvider.js +22 -25
- package/identityProvider.js.map +1 -1
- package/index.d.ts +43 -19
- package/index.js +32 -1
- package/index.js.map +1 -1
- package/kafkaAcl.d.ts +3 -3
- package/kafkaAcl.js +22 -22
- package/kafkaAcl.js.map +1 -1
- package/kafkaClientQuota.d.ts +3 -3
- package/kafkaClientQuota.js +22 -22
- package/kafkaClientQuota.js.map +1 -1
- package/kafkaCluster.d.ts +6 -6
- package/kafkaCluster.js +26 -26
- package/kafkaCluster.js.map +1 -1
- package/kafkaClusterConfig.d.ts +1 -1
- package/kafkaClusterConfig.js +23 -23
- package/kafkaClusterConfig.js.map +1 -1
- package/kafkaMirrorTopic.js +22 -22
- package/kafkaMirrorTopic.js.map +1 -1
- package/kafkaTopic.d.ts +1 -1
- package/kafkaTopic.js +23 -23
- package/kafkaTopic.js.map +1 -1
- package/ksqlCluster.d.ts +8 -8
- package/ksqlCluster.js +24 -24
- package/ksqlCluster.js.map +1 -1
- package/network.js +22 -22
- package/network.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/peering.js +22 -22
- package/peering.js.map +1 -1
- package/privateLinkAccess.js +22 -22
- package/privateLinkAccess.js.map +1 -1
- package/provider.js +10 -10
- package/provider.js.map +1 -1
- package/roleBinding.js +22 -22
- package/roleBinding.js.map +1 -1
- package/schemaRegistryCluster.d.ts +139 -0
- package/schemaRegistryCluster.js +106 -0
- package/schemaRegistryCluster.js.map +1 -0
- package/serviceAccount.js +20 -20
- package/serviceAccount.js.map +1 -1
- package/streamGovernanceCluster.d.ts +139 -0
- package/streamGovernanceCluster.js +106 -0
- package/streamGovernanceCluster.js.map +1 -0
- package/transitGatewayAttachment.d.ts +100 -0
- package/transitGatewayAttachment.js +72 -0
- package/transitGatewayAttachment.js.map +1 -0
- package/types/input.d.ts +145 -39
- package/types/output.d.ts +136 -12
package/serviceAccount.js
CHANGED
|
@@ -17,26 +17,6 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
18
18
|
*/
|
|
19
19
|
class ServiceAccount extends pulumi.CustomResource {
|
|
20
|
-
constructor(name, argsOrState, opts) {
|
|
21
|
-
let resourceInputs = {};
|
|
22
|
-
opts = opts || {};
|
|
23
|
-
if (opts.id) {
|
|
24
|
-
const state = argsOrState;
|
|
25
|
-
resourceInputs["apiVersion"] = state ? state.apiVersion : undefined;
|
|
26
|
-
resourceInputs["description"] = state ? state.description : undefined;
|
|
27
|
-
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
28
|
-
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
29
|
-
}
|
|
30
|
-
else {
|
|
31
|
-
const args = argsOrState;
|
|
32
|
-
resourceInputs["description"] = args ? args.description : undefined;
|
|
33
|
-
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
34
|
-
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
35
|
-
resourceInputs["kind"] = undefined /*out*/;
|
|
36
|
-
}
|
|
37
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
38
|
-
super(ServiceAccount.__pulumiType, name, resourceInputs, opts);
|
|
39
|
-
}
|
|
40
20
|
/**
|
|
41
21
|
* Get an existing ServiceAccount resource's state with the given name, ID, and optional extra
|
|
42
22
|
* properties used to qualify the lookup.
|
|
@@ -59,6 +39,26 @@ class ServiceAccount extends pulumi.CustomResource {
|
|
|
59
39
|
}
|
|
60
40
|
return obj['__pulumiType'] === ServiceAccount.__pulumiType;
|
|
61
41
|
}
|
|
42
|
+
constructor(name, argsOrState, opts) {
|
|
43
|
+
let resourceInputs = {};
|
|
44
|
+
opts = opts || {};
|
|
45
|
+
if (opts.id) {
|
|
46
|
+
const state = argsOrState;
|
|
47
|
+
resourceInputs["apiVersion"] = state ? state.apiVersion : undefined;
|
|
48
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
49
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
50
|
+
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
const args = argsOrState;
|
|
54
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
55
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
56
|
+
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
57
|
+
resourceInputs["kind"] = undefined /*out*/;
|
|
58
|
+
}
|
|
59
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
60
|
+
super(ServiceAccount.__pulumiType, name, resourceInputs, opts);
|
|
61
|
+
}
|
|
62
62
|
}
|
|
63
63
|
exports.ServiceAccount = ServiceAccount;
|
|
64
64
|
/** @internal */
|
package/serviceAccount.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"serviceAccount.js","sourceRoot":"","sources":["../serviceAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"serviceAccount.js","sourceRoot":"","sources":["../serviceAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAsD,EAAE,IAAmC;QACjH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8C,CAAC;YAC7D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA6C,CAAC;YAC3D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnE,CAAC;;AAvEL,wCAwEC;AA1DG,gBAAgB;AACO,2BAAY,GAAG,oDAAoD,CAAC"}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
10
|
+
*
|
|
11
|
+
* const development = new confluentcloud.Environment("development", {});
|
|
12
|
+
* const example = confluentcloud.getStreamGovernanceRegion({
|
|
13
|
+
* cloud: "AWS",
|
|
14
|
+
* region: "us-east-2",
|
|
15
|
+
* "package": "ESSENTIALS",
|
|
16
|
+
* });
|
|
17
|
+
* const essentials = new confluentcloud.StreamGovernanceCluster("essentials", {
|
|
18
|
+
* "package": example.then(example => example["package"]),
|
|
19
|
+
* environment: {
|
|
20
|
+
* id: development.id,
|
|
21
|
+
* },
|
|
22
|
+
* region: {
|
|
23
|
+
* id: example.then(example => example.id),
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
28
|
+
* ## Import
|
|
29
|
+
*
|
|
30
|
+
* You can import a Stream Governance cluster by using Environment ID and Stream Governance cluster ID, in the format `<Environment ID>/<Stream Governance cluster ID>`, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
31
|
+
*
|
|
32
|
+
* ```sh
|
|
33
|
+
* $ pulumi import confluentcloud:index/streamGovernanceCluster:StreamGovernanceCluster example env-abc123/lsrc-abc123
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
37
|
+
*/
|
|
38
|
+
export declare class StreamGovernanceCluster extends pulumi.CustomResource {
|
|
39
|
+
/**
|
|
40
|
+
* Get an existing StreamGovernanceCluster resource's state with the given name, ID, and optional extra
|
|
41
|
+
* properties used to qualify the lookup.
|
|
42
|
+
*
|
|
43
|
+
* @param name The _unique_ name of the resulting resource.
|
|
44
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
45
|
+
* @param state Any extra arguments used during the lookup.
|
|
46
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
47
|
+
*/
|
|
48
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: StreamGovernanceClusterState, opts?: pulumi.CustomResourceOptions): StreamGovernanceCluster;
|
|
49
|
+
/**
|
|
50
|
+
* Returns true if the given object is an instance of StreamGovernanceCluster. This is designed to work even
|
|
51
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
52
|
+
*/
|
|
53
|
+
static isInstance(obj: any): obj is StreamGovernanceCluster;
|
|
54
|
+
/**
|
|
55
|
+
* (Required String) An API Version of the schema version of the Stream Governance cluster, for example, `stream-governance/v2`.
|
|
56
|
+
*/
|
|
57
|
+
readonly apiVersion: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* (Required String) The name of the Stream Governance cluster, for example, `Stream Governance Package`.
|
|
60
|
+
*/
|
|
61
|
+
readonly displayName: pulumi.Output<string>;
|
|
62
|
+
/**
|
|
63
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
64
|
+
*/
|
|
65
|
+
readonly environment: pulumi.Output<outputs.StreamGovernanceClusterEnvironment>;
|
|
66
|
+
/**
|
|
67
|
+
* (Required String) The HTTP endpoint of the Stream Governance cluster, for example, `https://psrc-00000.us-west-2.aws.confluent.cloud`.
|
|
68
|
+
*/
|
|
69
|
+
readonly httpEndpoint: pulumi.Output<string>;
|
|
70
|
+
/**
|
|
71
|
+
* (Required String) A kind of the Stream Governance cluster, for example, `Cluster`.
|
|
72
|
+
*/
|
|
73
|
+
readonly kind: pulumi.Output<string>;
|
|
74
|
+
/**
|
|
75
|
+
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
76
|
+
*/
|
|
77
|
+
readonly package: pulumi.Output<string>;
|
|
78
|
+
readonly region: pulumi.Output<outputs.StreamGovernanceClusterRegion>;
|
|
79
|
+
/**
|
|
80
|
+
* (Required String) The Confluent Resource Name of the Stream Governance cluster, for example, `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123`.
|
|
81
|
+
*/
|
|
82
|
+
readonly resourceName: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Create a StreamGovernanceCluster resource with the given unique name, arguments, and options.
|
|
85
|
+
*
|
|
86
|
+
* @param name The _unique_ name of the resource.
|
|
87
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
88
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
89
|
+
*/
|
|
90
|
+
constructor(name: string, args: StreamGovernanceClusterArgs, opts?: pulumi.CustomResourceOptions);
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Input properties used for looking up and filtering StreamGovernanceCluster resources.
|
|
94
|
+
*/
|
|
95
|
+
export interface StreamGovernanceClusterState {
|
|
96
|
+
/**
|
|
97
|
+
* (Required String) An API Version of the schema version of the Stream Governance cluster, for example, `stream-governance/v2`.
|
|
98
|
+
*/
|
|
99
|
+
apiVersion?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* (Required String) The name of the Stream Governance cluster, for example, `Stream Governance Package`.
|
|
102
|
+
*/
|
|
103
|
+
displayName?: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
106
|
+
*/
|
|
107
|
+
environment?: pulumi.Input<inputs.StreamGovernanceClusterEnvironment>;
|
|
108
|
+
/**
|
|
109
|
+
* (Required String) The HTTP endpoint of the Stream Governance cluster, for example, `https://psrc-00000.us-west-2.aws.confluent.cloud`.
|
|
110
|
+
*/
|
|
111
|
+
httpEndpoint?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* (Required String) A kind of the Stream Governance cluster, for example, `Cluster`.
|
|
114
|
+
*/
|
|
115
|
+
kind?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
118
|
+
*/
|
|
119
|
+
package?: pulumi.Input<string>;
|
|
120
|
+
region?: pulumi.Input<inputs.StreamGovernanceClusterRegion>;
|
|
121
|
+
/**
|
|
122
|
+
* (Required String) The Confluent Resource Name of the Stream Governance cluster, for example, `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123`.
|
|
123
|
+
*/
|
|
124
|
+
resourceName?: pulumi.Input<string>;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* The set of arguments for constructing a StreamGovernanceCluster resource.
|
|
128
|
+
*/
|
|
129
|
+
export interface StreamGovernanceClusterArgs {
|
|
130
|
+
/**
|
|
131
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
132
|
+
*/
|
|
133
|
+
environment: pulumi.Input<inputs.StreamGovernanceClusterEnvironment>;
|
|
134
|
+
/**
|
|
135
|
+
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
136
|
+
*/
|
|
137
|
+
package: pulumi.Input<string>;
|
|
138
|
+
region: pulumi.Input<inputs.StreamGovernanceClusterRegion>;
|
|
139
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
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.StreamGovernanceCluster = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
14
|
+
*
|
|
15
|
+
* const development = new confluentcloud.Environment("development", {});
|
|
16
|
+
* const example = confluentcloud.getStreamGovernanceRegion({
|
|
17
|
+
* cloud: "AWS",
|
|
18
|
+
* region: "us-east-2",
|
|
19
|
+
* "package": "ESSENTIALS",
|
|
20
|
+
* });
|
|
21
|
+
* const essentials = new confluentcloud.StreamGovernanceCluster("essentials", {
|
|
22
|
+
* "package": example.then(example => example["package"]),
|
|
23
|
+
* environment: {
|
|
24
|
+
* id: development.id,
|
|
25
|
+
* },
|
|
26
|
+
* region: {
|
|
27
|
+
* id: example.then(example => example.id),
|
|
28
|
+
* },
|
|
29
|
+
* });
|
|
30
|
+
* ```
|
|
31
|
+
*
|
|
32
|
+
* ## Import
|
|
33
|
+
*
|
|
34
|
+
* You can import a Stream Governance cluster by using Environment ID and Stream Governance cluster ID, in the format `<Environment ID>/<Stream Governance cluster ID>`, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
35
|
+
*
|
|
36
|
+
* ```sh
|
|
37
|
+
* $ pulumi import confluentcloud:index/streamGovernanceCluster:StreamGovernanceCluster example env-abc123/lsrc-abc123
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
41
|
+
*/
|
|
42
|
+
class StreamGovernanceCluster extends pulumi.CustomResource {
|
|
43
|
+
/**
|
|
44
|
+
* Get an existing StreamGovernanceCluster resource's state with the given name, ID, and optional extra
|
|
45
|
+
* properties used to qualify the lookup.
|
|
46
|
+
*
|
|
47
|
+
* @param name The _unique_ name of the resulting resource.
|
|
48
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
49
|
+
* @param state Any extra arguments used during the lookup.
|
|
50
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
51
|
+
*/
|
|
52
|
+
static get(name, id, state, opts) {
|
|
53
|
+
return new StreamGovernanceCluster(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Returns true if the given object is an instance of StreamGovernanceCluster. This is designed to work even
|
|
57
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
58
|
+
*/
|
|
59
|
+
static isInstance(obj) {
|
|
60
|
+
if (obj === undefined || obj === null) {
|
|
61
|
+
return false;
|
|
62
|
+
}
|
|
63
|
+
return obj['__pulumiType'] === StreamGovernanceCluster.__pulumiType;
|
|
64
|
+
}
|
|
65
|
+
constructor(name, argsOrState, opts) {
|
|
66
|
+
let resourceInputs = {};
|
|
67
|
+
opts = opts || {};
|
|
68
|
+
if (opts.id) {
|
|
69
|
+
const state = argsOrState;
|
|
70
|
+
resourceInputs["apiVersion"] = state ? state.apiVersion : undefined;
|
|
71
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
72
|
+
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
73
|
+
resourceInputs["httpEndpoint"] = state ? state.httpEndpoint : undefined;
|
|
74
|
+
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
75
|
+
resourceInputs["package"] = state ? state.package : undefined;
|
|
76
|
+
resourceInputs["region"] = state ? state.region : undefined;
|
|
77
|
+
resourceInputs["resourceName"] = state ? state.resourceName : undefined;
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
const args = argsOrState;
|
|
81
|
+
if ((!args || args.environment === undefined) && !opts.urn) {
|
|
82
|
+
throw new Error("Missing required property 'environment'");
|
|
83
|
+
}
|
|
84
|
+
if ((!args || args.package === undefined) && !opts.urn) {
|
|
85
|
+
throw new Error("Missing required property 'package'");
|
|
86
|
+
}
|
|
87
|
+
if ((!args || args.region === undefined) && !opts.urn) {
|
|
88
|
+
throw new Error("Missing required property 'region'");
|
|
89
|
+
}
|
|
90
|
+
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
91
|
+
resourceInputs["package"] = args ? args.package : undefined;
|
|
92
|
+
resourceInputs["region"] = args ? args.region : undefined;
|
|
93
|
+
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
94
|
+
resourceInputs["displayName"] = undefined /*out*/;
|
|
95
|
+
resourceInputs["httpEndpoint"] = undefined /*out*/;
|
|
96
|
+
resourceInputs["kind"] = undefined /*out*/;
|
|
97
|
+
resourceInputs["resourceName"] = undefined /*out*/;
|
|
98
|
+
}
|
|
99
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
100
|
+
super(StreamGovernanceCluster.__pulumiType, name, resourceInputs, opts);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
exports.StreamGovernanceCluster = StreamGovernanceCluster;
|
|
104
|
+
/** @internal */
|
|
105
|
+
StreamGovernanceCluster.__pulumiType = 'confluentcloud:index/streamGovernanceCluster:StreamGovernanceCluster';
|
|
106
|
+
//# sourceMappingURL=streamGovernanceCluster.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"streamGovernanceCluster.js","sourceRoot":"","sources":["../streamGovernanceCluster.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* ## Import
|
|
6
|
+
*
|
|
7
|
+
* You can import a Transit Gateway Attachment by using Environment ID and Transit Gateway Attachment ID, in the format `<Environment ID>/<Transit Gateway Attachment ID>`. The following example shows how to import a Transit Gateway Attachment$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
8
|
+
*
|
|
9
|
+
* ```sh
|
|
10
|
+
* $ pulumi import confluentcloud:index/transitGatewayAttachment:TransitGatewayAttachment my_tgwa env-abc123/tgwa-abc123
|
|
11
|
+
* ```
|
|
12
|
+
*
|
|
13
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
14
|
+
*/
|
|
15
|
+
export declare class TransitGatewayAttachment extends pulumi.CustomResource {
|
|
16
|
+
/**
|
|
17
|
+
* Get an existing TransitGatewayAttachment resource's state with the given name, ID, and optional extra
|
|
18
|
+
* properties used to qualify the lookup.
|
|
19
|
+
*
|
|
20
|
+
* @param name The _unique_ name of the resulting resource.
|
|
21
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
22
|
+
* @param state Any extra arguments used during the lookup.
|
|
23
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
24
|
+
*/
|
|
25
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TransitGatewayAttachmentState, opts?: pulumi.CustomResourceOptions): TransitGatewayAttachment;
|
|
26
|
+
/**
|
|
27
|
+
* Returns true if the given object is an instance of TransitGatewayAttachment. This is designed to work even
|
|
28
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
29
|
+
*/
|
|
30
|
+
static isInstance(obj: any): obj is TransitGatewayAttachment;
|
|
31
|
+
/**
|
|
32
|
+
* (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
|
|
33
|
+
*/
|
|
34
|
+
readonly aws: pulumi.Output<outputs.TransitGatewayAttachmentAws | undefined>;
|
|
35
|
+
/**
|
|
36
|
+
* The name of the Transit Gateway Attachment.
|
|
37
|
+
*/
|
|
38
|
+
readonly displayName: pulumi.Output<string>;
|
|
39
|
+
/**
|
|
40
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
41
|
+
*/
|
|
42
|
+
readonly environment: pulumi.Output<outputs.TransitGatewayAttachmentEnvironment>;
|
|
43
|
+
/**
|
|
44
|
+
* Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider
|
|
45
|
+
* accounts.
|
|
46
|
+
*/
|
|
47
|
+
readonly network: pulumi.Output<outputs.TransitGatewayAttachmentNetwork>;
|
|
48
|
+
/**
|
|
49
|
+
* Create a TransitGatewayAttachment resource with the given unique name, arguments, and options.
|
|
50
|
+
*
|
|
51
|
+
* @param name The _unique_ name of the resource.
|
|
52
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
53
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
54
|
+
*/
|
|
55
|
+
constructor(name: string, args: TransitGatewayAttachmentArgs, opts?: pulumi.CustomResourceOptions);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Input properties used for looking up and filtering TransitGatewayAttachment resources.
|
|
59
|
+
*/
|
|
60
|
+
export interface TransitGatewayAttachmentState {
|
|
61
|
+
/**
|
|
62
|
+
* (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
|
|
63
|
+
*/
|
|
64
|
+
aws?: pulumi.Input<inputs.TransitGatewayAttachmentAws>;
|
|
65
|
+
/**
|
|
66
|
+
* The name of the Transit Gateway Attachment.
|
|
67
|
+
*/
|
|
68
|
+
displayName?: pulumi.Input<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
71
|
+
*/
|
|
72
|
+
environment?: pulumi.Input<inputs.TransitGatewayAttachmentEnvironment>;
|
|
73
|
+
/**
|
|
74
|
+
* Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider
|
|
75
|
+
* accounts.
|
|
76
|
+
*/
|
|
77
|
+
network?: pulumi.Input<inputs.TransitGatewayAttachmentNetwork>;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* The set of arguments for constructing a TransitGatewayAttachment resource.
|
|
81
|
+
*/
|
|
82
|
+
export interface TransitGatewayAttachmentArgs {
|
|
83
|
+
/**
|
|
84
|
+
* (Required Configuration Block) The AWS-specific Transit Gateway Attachment details. It supports the following:
|
|
85
|
+
*/
|
|
86
|
+
aws?: pulumi.Input<inputs.TransitGatewayAttachmentAws>;
|
|
87
|
+
/**
|
|
88
|
+
* The name of the Transit Gateway Attachment.
|
|
89
|
+
*/
|
|
90
|
+
displayName?: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
93
|
+
*/
|
|
94
|
+
environment: pulumi.Input<inputs.TransitGatewayAttachmentEnvironment>;
|
|
95
|
+
/**
|
|
96
|
+
* Network represents a network (VPC) in Confluent Cloud. All Networks exist within Confluent-managed cloud provider
|
|
97
|
+
* accounts.
|
|
98
|
+
*/
|
|
99
|
+
network: pulumi.Input<inputs.TransitGatewayAttachmentNetwork>;
|
|
100
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
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.TransitGatewayAttachment = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Import
|
|
10
|
+
*
|
|
11
|
+
* You can import a Transit Gateway Attachment by using Environment ID and Transit Gateway Attachment ID, in the format `<Environment ID>/<Transit Gateway Attachment ID>`. The following example shows how to import a Transit Gateway Attachment$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
12
|
+
*
|
|
13
|
+
* ```sh
|
|
14
|
+
* $ pulumi import confluentcloud:index/transitGatewayAttachment:TransitGatewayAttachment my_tgwa env-abc123/tgwa-abc123
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
18
|
+
*/
|
|
19
|
+
class TransitGatewayAttachment extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing TransitGatewayAttachment resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name, id, state, opts) {
|
|
30
|
+
return new TransitGatewayAttachment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of TransitGatewayAttachment. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj) {
|
|
37
|
+
if (obj === undefined || obj === null) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
return obj['__pulumiType'] === TransitGatewayAttachment.__pulumiType;
|
|
41
|
+
}
|
|
42
|
+
constructor(name, argsOrState, opts) {
|
|
43
|
+
let resourceInputs = {};
|
|
44
|
+
opts = opts || {};
|
|
45
|
+
if (opts.id) {
|
|
46
|
+
const state = argsOrState;
|
|
47
|
+
resourceInputs["aws"] = state ? state.aws : undefined;
|
|
48
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
49
|
+
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
50
|
+
resourceInputs["network"] = state ? state.network : undefined;
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
const args = argsOrState;
|
|
54
|
+
if ((!args || args.environment === undefined) && !opts.urn) {
|
|
55
|
+
throw new Error("Missing required property 'environment'");
|
|
56
|
+
}
|
|
57
|
+
if ((!args || args.network === undefined) && !opts.urn) {
|
|
58
|
+
throw new Error("Missing required property 'network'");
|
|
59
|
+
}
|
|
60
|
+
resourceInputs["aws"] = args ? args.aws : undefined;
|
|
61
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
62
|
+
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
63
|
+
resourceInputs["network"] = args ? args.network : undefined;
|
|
64
|
+
}
|
|
65
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
66
|
+
super(TransitGatewayAttachment.__pulumiType, name, resourceInputs, opts);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.TransitGatewayAttachment = TransitGatewayAttachment;
|
|
70
|
+
/** @internal */
|
|
71
|
+
TransitGatewayAttachment.__pulumiType = 'confluentcloud:index/transitGatewayAttachment:TransitGatewayAttachment';
|
|
72
|
+
//# sourceMappingURL=transitGatewayAttachment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transitGatewayAttachment.js","sourceRoot":"","sources":["../transitGatewayAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;IA4BD,YAAY,IAAY,EAAE,WAA0E,EAAE,IAAmC;QACrI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwD,CAAC;YACvE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAuD,CAAC;YACrE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,wBAAwB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7E,CAAC;;AA9EL,4DA+EC;AAjEG,gBAAgB;AACO,qCAAY,GAAG,wEAAwE,CAAC"}
|