@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.
Files changed (84) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +336 -0
  3. package/apiKey.d.ts +110 -0
  4. package/apiKey.js +77 -0
  5. package/apiKey.js.map +1 -0
  6. package/config/index.d.ts +1 -0
  7. package/config/index.js +21 -0
  8. package/config/index.js.map +1 -0
  9. package/config/vars.d.ts +12 -0
  10. package/config/vars.js +25 -0
  11. package/config/vars.js.map +1 -0
  12. package/connector.d.ts +97 -0
  13. package/connector.js +73 -0
  14. package/connector.js.map +1 -0
  15. package/environment.d.ts +67 -0
  16. package/environment.js +65 -0
  17. package/environment.js.map +1 -0
  18. package/getEnvironment.d.ts +72 -0
  19. package/getEnvironment.js +50 -0
  20. package/getEnvironment.js.map +1 -0
  21. package/getKafkaCluster.d.ts +143 -0
  22. package/getKafkaCluster.js +55 -0
  23. package/getKafkaCluster.js.map +1 -0
  24. package/getKafkaTopic.d.ts +80 -0
  25. package/getKafkaTopic.js +48 -0
  26. package/getKafkaTopic.js.map +1 -0
  27. package/getNetwork.d.ts +142 -0
  28. package/getNetwork.js +55 -0
  29. package/getNetwork.js.map +1 -0
  30. package/getOrganization.d.ts +28 -0
  31. package/getOrganization.js +29 -0
  32. package/getOrganization.js.map +1 -0
  33. package/getServiceAccount.d.ts +73 -0
  34. package/getServiceAccount.js +43 -0
  35. package/getServiceAccount.js.map +1 -0
  36. package/getUser.d.ts +99 -0
  37. package/getUser.js +62 -0
  38. package/getUser.js.map +1 -0
  39. package/index.d.ts +22 -0
  40. package/index.js +111 -0
  41. package/index.js.map +1 -0
  42. package/kafkaAcl.d.ts +159 -0
  43. package/kafkaAcl.js +108 -0
  44. package/kafkaAcl.js.map +1 -0
  45. package/kafkaCluster.d.ts +190 -0
  46. package/kafkaCluster.js +101 -0
  47. package/kafkaCluster.js.map +1 -0
  48. package/kafkaTopic.d.ts +117 -0
  49. package/kafkaTopic.js +82 -0
  50. package/kafkaTopic.js.map +1 -0
  51. package/network.d.ts +208 -0
  52. package/network.js +96 -0
  53. package/network.js.map +1 -0
  54. package/package.json +28 -0
  55. package/package.json.bak +28 -0
  56. package/package.json.dev +28 -0
  57. package/peering.d.ts +96 -0
  58. package/peering.js +76 -0
  59. package/peering.js.map +1 -0
  60. package/privateLinkAccess.d.ts +93 -0
  61. package/privateLinkAccess.js +74 -0
  62. package/privateLinkAccess.js.map +1 -0
  63. package/provider.d.ts +51 -0
  64. package/provider.js +47 -0
  65. package/provider.js.map +1 -0
  66. package/roleBinding.d.ts +83 -0
  67. package/roleBinding.js +73 -0
  68. package/roleBinding.js.map +1 -0
  69. package/scripts/install-pulumi-plugin.js +21 -0
  70. package/serviceAccount.d.ts +87 -0
  71. package/serviceAccount.js +69 -0
  72. package/serviceAccount.js.map +1 -0
  73. package/types/index.d.ts +3 -0
  74. package/types/index.js +11 -0
  75. package/types/index.js.map +1 -0
  76. package/types/input.d.ts +363 -0
  77. package/types/input.js +5 -0
  78. package/types/input.js.map +1 -0
  79. package/types/output.d.ts +298 -0
  80. package/types/output.js +5 -0
  81. package/types/output.js.map +1 -0
  82. package/utilities.d.ts +4 -0
  83. package/utilities.js +57 -0
  84. package/utilities.js.map +1 -0
@@ -0,0 +1,43 @@
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.getServiceAccountOutput = exports.getServiceAccount = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * `confluentcloud.ServiceAccount` describes a Service Account 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 exampleUsingIdServiceAccount = confluentcloud.getServiceAccount({
18
+ * id: "sa-abc123",
19
+ * });
20
+ * export const exampleUsingId = exampleUsingIdServiceAccount;
21
+ * const exampleUsingName = confluentcloud.getServiceAccount({
22
+ * displayName: "test_sa",
23
+ * });
24
+ * const test_env = new confluentcloud.Environment("test-env", {displayName: exampleUsingIdServiceAccount.then(exampleUsingIdServiceAccount => `env_for_${exampleUsingIdServiceAccount.displayName}`)});
25
+ * ```
26
+ */
27
+ function getServiceAccount(args, opts) {
28
+ args = args || {};
29
+ if (!opts) {
30
+ opts = {};
31
+ }
32
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
33
+ return pulumi.runtime.invoke("confluentcloud:index/getServiceAccount:getServiceAccount", {
34
+ "displayName": args.displayName,
35
+ "id": args.id,
36
+ }, opts);
37
+ }
38
+ exports.getServiceAccount = getServiceAccount;
39
+ function getServiceAccountOutput(args, opts) {
40
+ return pulumi.output(args).apply(a => getServiceAccount(a, opts));
41
+ }
42
+ exports.getServiceAccountOutput = getServiceAccountOutput;
43
+ //# sourceMappingURL=getServiceAccount.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getServiceAccount.js","sourceRoot":"","sources":["../getServiceAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,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,0DAA0D,EAAE;QACrF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8CAWC;AA0CD,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,0DAEC"}
package/getUser.d.ts ADDED
@@ -0,0 +1,99 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * `confluentcloud.getUser` describes a User 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 exampleUsingIdUser = confluentcloud.getUser({
12
+ * id: "u-abc123",
13
+ * });
14
+ * export const exampleUsingId = exampleUsingIdUser;
15
+ * const exampleUsingEmail = confluentcloud.getUser({
16
+ * email: "test123@gmail.com",
17
+ * });
18
+ * const test_env = new confluentcloud.Environment("test-env", {displayName: exampleUsingIdUser.then(exampleUsingIdUser => `env_for_${exampleUsingIdUser.fullName}`)});
19
+ * const standard_cluster_on_aws = new confluentcloud.KafkaCluster("standard-cluster-on-aws", {
20
+ * displayName: "standard_kafka_cluster_on_aws",
21
+ * availability: "SINGLE_ZONE",
22
+ * cloud: "AWS",
23
+ * region: "us-west-2",
24
+ * standards: [{}],
25
+ * environment: {
26
+ * id: test_env.id,
27
+ * },
28
+ * });
29
+ * const test_role_binding = new confluentcloud.RoleBinding("test-role-binding", {
30
+ * principal: exampleUsingEmail.then(exampleUsingEmail => `User:${exampleUsingEmail.id}`),
31
+ * roleName: "CloudClusterAdmin",
32
+ * crnPattern: standard_cluster_on_aws.rbacCrn,
33
+ * });
34
+ * const exampleUsingFullName = confluentcloud.getUser({
35
+ * fullName: "John Doe",
36
+ * });
37
+ * ```
38
+ */
39
+ export declare function getUser(args?: GetUserArgs, opts?: pulumi.InvokeOptions): Promise<GetUserResult>;
40
+ /**
41
+ * A collection of arguments for invoking getUser.
42
+ */
43
+ export interface GetUserArgs {
44
+ /**
45
+ * The email address of the User.
46
+ */
47
+ email?: string;
48
+ /**
49
+ * The full name of the User.
50
+ */
51
+ fullName?: string;
52
+ /**
53
+ * The ID of the User (e.g., `u-abc123`).
54
+ */
55
+ id?: string;
56
+ }
57
+ /**
58
+ * A collection of values returned by getUser.
59
+ */
60
+ export interface GetUserResult {
61
+ /**
62
+ * (Required String) An API Version of the schema version of the User.
63
+ */
64
+ readonly apiVersion: string;
65
+ /**
66
+ * (Required String) The email address of the User.
67
+ */
68
+ readonly email: string;
69
+ /**
70
+ * (Required String) The full name of the User.
71
+ */
72
+ readonly fullName: string;
73
+ /**
74
+ * (Required String) The ID of the User, for example, `u-abc123`.
75
+ */
76
+ readonly id: string;
77
+ /**
78
+ * (Required String) A kind of the User.
79
+ */
80
+ readonly kind: string;
81
+ }
82
+ export declare function getUserOutput(args?: GetUserOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetUserResult>;
83
+ /**
84
+ * A collection of arguments for invoking getUser.
85
+ */
86
+ export interface GetUserOutputArgs {
87
+ /**
88
+ * The email address of the User.
89
+ */
90
+ email?: pulumi.Input<string>;
91
+ /**
92
+ * The full name of the User.
93
+ */
94
+ fullName?: pulumi.Input<string>;
95
+ /**
96
+ * The ID of the User (e.g., `u-abc123`).
97
+ */
98
+ id?: pulumi.Input<string>;
99
+ }
package/getUser.js ADDED
@@ -0,0 +1,62 @@
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.getUserOutput = exports.getUser = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * `confluentcloud.getUser` describes a User 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 exampleUsingIdUser = confluentcloud.getUser({
18
+ * id: "u-abc123",
19
+ * });
20
+ * export const exampleUsingId = exampleUsingIdUser;
21
+ * const exampleUsingEmail = confluentcloud.getUser({
22
+ * email: "test123@gmail.com",
23
+ * });
24
+ * const test_env = new confluentcloud.Environment("test-env", {displayName: exampleUsingIdUser.then(exampleUsingIdUser => `env_for_${exampleUsingIdUser.fullName}`)});
25
+ * const standard_cluster_on_aws = new confluentcloud.KafkaCluster("standard-cluster-on-aws", {
26
+ * displayName: "standard_kafka_cluster_on_aws",
27
+ * availability: "SINGLE_ZONE",
28
+ * cloud: "AWS",
29
+ * region: "us-west-2",
30
+ * standards: [{}],
31
+ * environment: {
32
+ * id: test_env.id,
33
+ * },
34
+ * });
35
+ * const test_role_binding = new confluentcloud.RoleBinding("test-role-binding", {
36
+ * principal: exampleUsingEmail.then(exampleUsingEmail => `User:${exampleUsingEmail.id}`),
37
+ * roleName: "CloudClusterAdmin",
38
+ * crnPattern: standard_cluster_on_aws.rbacCrn,
39
+ * });
40
+ * const exampleUsingFullName = confluentcloud.getUser({
41
+ * fullName: "John Doe",
42
+ * });
43
+ * ```
44
+ */
45
+ function getUser(args, opts) {
46
+ args = args || {};
47
+ if (!opts) {
48
+ opts = {};
49
+ }
50
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
51
+ return pulumi.runtime.invoke("confluentcloud:index/getUser:getUser", {
52
+ "email": args.email,
53
+ "fullName": args.fullName,
54
+ "id": args.id,
55
+ }, opts);
56
+ }
57
+ exports.getUser = getUser;
58
+ function getUserOutput(args, opts) {
59
+ return pulumi.output(args).apply(a => getUser(a, opts));
60
+ }
61
+ exports.getUserOutput = getUserOutput;
62
+ //# sourceMappingURL=getUser.js.map
package/getUser.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,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,sCAAsC,EAAE;QACjE,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,0BAYC;AA8CD,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3D,CAAC;AAFD,sCAEC"}
package/index.d.ts ADDED
@@ -0,0 +1,22 @@
1
+ export * from "./apiKey";
2
+ export * from "./connector";
3
+ export * from "./environment";
4
+ export * from "./getEnvironment";
5
+ export * from "./getKafkaCluster";
6
+ export * from "./getKafkaTopic";
7
+ export * from "./getNetwork";
8
+ export * from "./getOrganization";
9
+ export * from "./getServiceAccount";
10
+ export * from "./getUser";
11
+ export * from "./kafkaAcl";
12
+ export * from "./kafkaCluster";
13
+ export * from "./kafkaTopic";
14
+ export * from "./network";
15
+ export * from "./peering";
16
+ export * from "./privateLinkAccess";
17
+ export * from "./provider";
18
+ export * from "./roleBinding";
19
+ export * from "./serviceAccount";
20
+ import * as config from "./config";
21
+ import * as types from "./types";
22
+ export { config, types, };
package/index.js ADDED
@@ -0,0 +1,111 @@
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
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
+ if (k2 === undefined) k2 = k;
6
+ var desc = Object.getOwnPropertyDescriptor(m, k);
7
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
+ desc = { enumerable: true, get: function() { return m[k]; } };
9
+ }
10
+ Object.defineProperty(o, k2, desc);
11
+ }) : (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ o[k2] = m[k];
14
+ }));
15
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
17
+ };
18
+ Object.defineProperty(exports, "__esModule", { value: true });
19
+ exports.types = exports.config = void 0;
20
+ const pulumi = require("@pulumi/pulumi");
21
+ const utilities = require("./utilities");
22
+ // Export members:
23
+ __exportStar(require("./apiKey"), exports);
24
+ __exportStar(require("./connector"), exports);
25
+ __exportStar(require("./environment"), exports);
26
+ __exportStar(require("./getEnvironment"), exports);
27
+ __exportStar(require("./getKafkaCluster"), exports);
28
+ __exportStar(require("./getKafkaTopic"), exports);
29
+ __exportStar(require("./getNetwork"), exports);
30
+ __exportStar(require("./getOrganization"), exports);
31
+ __exportStar(require("./getServiceAccount"), exports);
32
+ __exportStar(require("./getUser"), exports);
33
+ __exportStar(require("./kafkaAcl"), exports);
34
+ __exportStar(require("./kafkaCluster"), exports);
35
+ __exportStar(require("./kafkaTopic"), exports);
36
+ __exportStar(require("./network"), exports);
37
+ __exportStar(require("./peering"), exports);
38
+ __exportStar(require("./privateLinkAccess"), exports);
39
+ __exportStar(require("./provider"), exports);
40
+ __exportStar(require("./roleBinding"), exports);
41
+ __exportStar(require("./serviceAccount"), exports);
42
+ // Export sub-modules:
43
+ const config = require("./config");
44
+ exports.config = config;
45
+ const types = require("./types");
46
+ exports.types = types;
47
+ // Import resources to register:
48
+ const apiKey_1 = require("./apiKey");
49
+ const connector_1 = require("./connector");
50
+ const environment_1 = require("./environment");
51
+ const kafkaAcl_1 = require("./kafkaAcl");
52
+ const kafkaCluster_1 = require("./kafkaCluster");
53
+ const kafkaTopic_1 = require("./kafkaTopic");
54
+ const network_1 = require("./network");
55
+ const peering_1 = require("./peering");
56
+ const privateLinkAccess_1 = require("./privateLinkAccess");
57
+ const roleBinding_1 = require("./roleBinding");
58
+ const serviceAccount_1 = require("./serviceAccount");
59
+ const _module = {
60
+ version: utilities.getVersion(),
61
+ construct: (name, type, urn) => {
62
+ switch (type) {
63
+ case "confluentcloud:index/apiKey:ApiKey":
64
+ return new apiKey_1.ApiKey(name, undefined, { urn });
65
+ case "confluentcloud:index/connector:Connector":
66
+ return new connector_1.Connector(name, undefined, { urn });
67
+ case "confluentcloud:index/environment:Environment":
68
+ return new environment_1.Environment(name, undefined, { urn });
69
+ case "confluentcloud:index/kafkaAcl:KafkaAcl":
70
+ return new kafkaAcl_1.KafkaAcl(name, undefined, { urn });
71
+ case "confluentcloud:index/kafkaCluster:KafkaCluster":
72
+ return new kafkaCluster_1.KafkaCluster(name, undefined, { urn });
73
+ case "confluentcloud:index/kafkaTopic:KafkaTopic":
74
+ return new kafkaTopic_1.KafkaTopic(name, undefined, { urn });
75
+ case "confluentcloud:index/network:Network":
76
+ return new network_1.Network(name, undefined, { urn });
77
+ case "confluentcloud:index/peering:Peering":
78
+ return new peering_1.Peering(name, undefined, { urn });
79
+ case "confluentcloud:index/privateLinkAccess:PrivateLinkAccess":
80
+ return new privateLinkAccess_1.PrivateLinkAccess(name, undefined, { urn });
81
+ case "confluentcloud:index/roleBinding:RoleBinding":
82
+ return new roleBinding_1.RoleBinding(name, undefined, { urn });
83
+ case "confluentcloud:index/serviceAccount:ServiceAccount":
84
+ return new serviceAccount_1.ServiceAccount(name, undefined, { urn });
85
+ default:
86
+ throw new Error(`unknown resource type ${type}`);
87
+ }
88
+ },
89
+ };
90
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/apiKey", _module);
91
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/connector", _module);
92
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/environment", _module);
93
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaAcl", _module);
94
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaCluster", _module);
95
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaTopic", _module);
96
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/network", _module);
97
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/peering", _module);
98
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/privateLinkAccess", _module);
99
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/roleBinding", _module);
100
+ pulumi.runtime.registerResourceModule("confluentcloud", "index/serviceAccount", _module);
101
+ const provider_1 = require("./provider");
102
+ pulumi.runtime.registerResourcePackage("confluentcloud", {
103
+ version: utilities.getVersion(),
104
+ constructProvider: (name, type, urn) => {
105
+ if (type !== "pulumi:providers:confluentcloud") {
106
+ throw new Error(`unknown provider type ${type}`);
107
+ }
108
+ return new provider_1.Provider(name, undefined, { urn });
109
+ },
110
+ });
111
+ //# sourceMappingURL=index.js.map
package/index.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
package/kafkaAcl.d.ts ADDED
@@ -0,0 +1,159 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import { input as inputs, output as outputs } from "./types";
3
+ /**
4
+ * ## Import
5
+ *
6
+ * You can import Kafka ACLs by using the Kafka cluster ID and attributes of `confluent_kafka_acl` resource in the format `<Kafka cluster ID>/<Kafka ACL resource type>#<Kafka ACL resource name>#<Kafka ACL pattern type>#<Kafka ACL principal>#<Kafka ACL host>#<Kafka ACL operation>#<Kafka ACL permission>`, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>" $ export KAFKA_API_KEY="<kafka_api_key>" $ export KAFKA_API_SECRET="<kafka_api_secret>" $ export KAFKA_HTTP_ENDPOINT="<kafka_http_endpoint>"
7
+ *
8
+ * ```sh
9
+ * $ pulumi import confluentcloud:index/kafkaAcl:KafkaAcl describe-cluster "lkc-12345/CLUSTER#kafka-cluster#LITERAL#User:sa-xyz123#*#DESCRIBE#ALLOW"
10
+ * ```
11
+ *
12
+ * !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
13
+ */
14
+ export declare class KafkaAcl extends pulumi.CustomResource {
15
+ /**
16
+ * Get an existing KafkaAcl resource's state with the given name, ID, and optional extra
17
+ * properties used to qualify the lookup.
18
+ *
19
+ * @param name The _unique_ name of the resulting resource.
20
+ * @param id The _unique_ provider ID of the resource to lookup.
21
+ * @param state Any extra arguments used during the lookup.
22
+ * @param opts Optional settings to control the behavior of the CustomResource.
23
+ */
24
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: KafkaAclState, opts?: pulumi.CustomResourceOptions): KafkaAcl;
25
+ /**
26
+ * Returns true if the given object is an instance of KafkaAcl. This is designed to work even
27
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
28
+ */
29
+ static isInstance(obj: any): obj is KafkaAcl;
30
+ /**
31
+ * The Cluster API Credentials.
32
+ */
33
+ readonly credentials: pulumi.Output<outputs.KafkaAclCredentials>;
34
+ /**
35
+ * The host for the ACL. Should be set to `*` for Confluent Cloud.
36
+ */
37
+ readonly host: pulumi.Output<string>;
38
+ /**
39
+ * The REST endpoint of the Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`.
40
+ */
41
+ readonly httpEndpoint: pulumi.Output<string>;
42
+ readonly kafkaCluster: pulumi.Output<outputs.KafkaAclKafkaCluster>;
43
+ /**
44
+ * The operation type for the ACL. Accepted values are: `UNKNOWN`, `ANY`, `ALL`, `READ`, `WRITE`, `CREATE`, `DELETE`, `ALTER`, `DESCRIBE`, `CLUSTER_ACTION`, `DESCRIBE_CONFIGS`, `ALTER_CONFIGS`, and `IDEMPOTENT_WRITE`.
45
+ */
46
+ readonly operation: pulumi.Output<string>;
47
+ /**
48
+ * The pattern type for the ACL. Accepted values are: `UNKNOWN`,`ANY`,`MATCH`, `LITERAL`, and `PREFIXED`.
49
+ */
50
+ readonly patternType: pulumi.Output<string>;
51
+ /**
52
+ * The permission for the ACL. Accepted values are: `UNKNOWN`, `ANY`, `DENY`, and `ALLOW`.
53
+ */
54
+ readonly permission: pulumi.Output<string>;
55
+ /**
56
+ * The principal for the ACL.
57
+ */
58
+ readonly principal: pulumi.Output<string>;
59
+ /**
60
+ * The resource name for the ACL.
61
+ */
62
+ readonly resourceName: pulumi.Output<string>;
63
+ /**
64
+ * The type of the resource. Accepted values are: `UNKNOWN`, `ANY`, `TOPIC`, `GROUP`, `CLUSTER`, `TRANSACTIONAL_ID`, `DELEGATION_TOKEN`.
65
+ */
66
+ readonly resourceType: pulumi.Output<string>;
67
+ /**
68
+ * Create a KafkaAcl resource with the given unique name, arguments, and options.
69
+ *
70
+ * @param name The _unique_ name of the resource.
71
+ * @param args The arguments to use to populate this resource's properties.
72
+ * @param opts A bag of options that control this resource's behavior.
73
+ */
74
+ constructor(name: string, args: KafkaAclArgs, opts?: pulumi.CustomResourceOptions);
75
+ }
76
+ /**
77
+ * Input properties used for looking up and filtering KafkaAcl resources.
78
+ */
79
+ export interface KafkaAclState {
80
+ /**
81
+ * The Cluster API Credentials.
82
+ */
83
+ credentials?: pulumi.Input<inputs.KafkaAclCredentials>;
84
+ /**
85
+ * The host for the ACL. Should be set to `*` for Confluent Cloud.
86
+ */
87
+ host?: pulumi.Input<string>;
88
+ /**
89
+ * The REST endpoint of the Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`.
90
+ */
91
+ httpEndpoint?: pulumi.Input<string>;
92
+ kafkaCluster?: pulumi.Input<inputs.KafkaAclKafkaCluster>;
93
+ /**
94
+ * The operation type for the ACL. Accepted values are: `UNKNOWN`, `ANY`, `ALL`, `READ`, `WRITE`, `CREATE`, `DELETE`, `ALTER`, `DESCRIBE`, `CLUSTER_ACTION`, `DESCRIBE_CONFIGS`, `ALTER_CONFIGS`, and `IDEMPOTENT_WRITE`.
95
+ */
96
+ operation?: pulumi.Input<string>;
97
+ /**
98
+ * The pattern type for the ACL. Accepted values are: `UNKNOWN`,`ANY`,`MATCH`, `LITERAL`, and `PREFIXED`.
99
+ */
100
+ patternType?: pulumi.Input<string>;
101
+ /**
102
+ * The permission for the ACL. Accepted values are: `UNKNOWN`, `ANY`, `DENY`, and `ALLOW`.
103
+ */
104
+ permission?: pulumi.Input<string>;
105
+ /**
106
+ * The principal for the ACL.
107
+ */
108
+ principal?: pulumi.Input<string>;
109
+ /**
110
+ * The resource name for the ACL.
111
+ */
112
+ resourceName?: pulumi.Input<string>;
113
+ /**
114
+ * The type of the resource. Accepted values are: `UNKNOWN`, `ANY`, `TOPIC`, `GROUP`, `CLUSTER`, `TRANSACTIONAL_ID`, `DELEGATION_TOKEN`.
115
+ */
116
+ resourceType?: pulumi.Input<string>;
117
+ }
118
+ /**
119
+ * The set of arguments for constructing a KafkaAcl resource.
120
+ */
121
+ export interface KafkaAclArgs {
122
+ /**
123
+ * The Cluster API Credentials.
124
+ */
125
+ credentials: pulumi.Input<inputs.KafkaAclCredentials>;
126
+ /**
127
+ * The host for the ACL. Should be set to `*` for Confluent Cloud.
128
+ */
129
+ host: pulumi.Input<string>;
130
+ /**
131
+ * The REST endpoint of the Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`.
132
+ */
133
+ httpEndpoint: pulumi.Input<string>;
134
+ kafkaCluster: pulumi.Input<inputs.KafkaAclKafkaCluster>;
135
+ /**
136
+ * The operation type for the ACL. Accepted values are: `UNKNOWN`, `ANY`, `ALL`, `READ`, `WRITE`, `CREATE`, `DELETE`, `ALTER`, `DESCRIBE`, `CLUSTER_ACTION`, `DESCRIBE_CONFIGS`, `ALTER_CONFIGS`, and `IDEMPOTENT_WRITE`.
137
+ */
138
+ operation: pulumi.Input<string>;
139
+ /**
140
+ * The pattern type for the ACL. Accepted values are: `UNKNOWN`,`ANY`,`MATCH`, `LITERAL`, and `PREFIXED`.
141
+ */
142
+ patternType: pulumi.Input<string>;
143
+ /**
144
+ * The permission for the ACL. Accepted values are: `UNKNOWN`, `ANY`, `DENY`, and `ALLOW`.
145
+ */
146
+ permission: pulumi.Input<string>;
147
+ /**
148
+ * The principal for the ACL.
149
+ */
150
+ principal: pulumi.Input<string>;
151
+ /**
152
+ * The resource name for the ACL.
153
+ */
154
+ resourceName: pulumi.Input<string>;
155
+ /**
156
+ * The type of the resource. Accepted values are: `UNKNOWN`, `ANY`, `TOPIC`, `GROUP`, `CLUSTER`, `TRANSACTIONAL_ID`, `DELEGATION_TOKEN`.
157
+ */
158
+ resourceType: pulumi.Input<string>;
159
+ }
package/kafkaAcl.js ADDED
@@ -0,0 +1,108 @@
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.KafkaAcl = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * ## Import
10
+ *
11
+ * You can import Kafka ACLs by using the Kafka cluster ID and attributes of `confluent_kafka_acl` resource in the format `<Kafka cluster ID>/<Kafka ACL resource type>#<Kafka ACL resource name>#<Kafka ACL pattern type>#<Kafka ACL principal>#<Kafka ACL host>#<Kafka ACL operation>#<Kafka ACL permission>`, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>" $ export KAFKA_API_KEY="<kafka_api_key>" $ export KAFKA_API_SECRET="<kafka_api_secret>" $ export KAFKA_HTTP_ENDPOINT="<kafka_http_endpoint>"
12
+ *
13
+ * ```sh
14
+ * $ pulumi import confluentcloud:index/kafkaAcl:KafkaAcl describe-cluster "lkc-12345/CLUSTER#kafka-cluster#LITERAL#User:sa-xyz123#*#DESCRIBE#ALLOW"
15
+ * ```
16
+ *
17
+ * !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
18
+ */
19
+ class KafkaAcl extends pulumi.CustomResource {
20
+ constructor(name, argsOrState, opts) {
21
+ let resourceInputs = {};
22
+ opts = opts || {};
23
+ if (opts.id) {
24
+ const state = argsOrState;
25
+ resourceInputs["credentials"] = state ? state.credentials : undefined;
26
+ resourceInputs["host"] = state ? state.host : undefined;
27
+ resourceInputs["httpEndpoint"] = state ? state.httpEndpoint : undefined;
28
+ resourceInputs["kafkaCluster"] = state ? state.kafkaCluster : undefined;
29
+ resourceInputs["operation"] = state ? state.operation : undefined;
30
+ resourceInputs["patternType"] = state ? state.patternType : undefined;
31
+ resourceInputs["permission"] = state ? state.permission : undefined;
32
+ resourceInputs["principal"] = state ? state.principal : undefined;
33
+ resourceInputs["resourceName"] = state ? state.resourceName : undefined;
34
+ resourceInputs["resourceType"] = state ? state.resourceType : undefined;
35
+ }
36
+ else {
37
+ const args = argsOrState;
38
+ if ((!args || args.credentials === undefined) && !opts.urn) {
39
+ throw new Error("Missing required property 'credentials'");
40
+ }
41
+ if ((!args || args.host === undefined) && !opts.urn) {
42
+ throw new Error("Missing required property 'host'");
43
+ }
44
+ if ((!args || args.httpEndpoint === undefined) && !opts.urn) {
45
+ throw new Error("Missing required property 'httpEndpoint'");
46
+ }
47
+ if ((!args || args.kafkaCluster === undefined) && !opts.urn) {
48
+ throw new Error("Missing required property 'kafkaCluster'");
49
+ }
50
+ if ((!args || args.operation === undefined) && !opts.urn) {
51
+ throw new Error("Missing required property 'operation'");
52
+ }
53
+ if ((!args || args.patternType === undefined) && !opts.urn) {
54
+ throw new Error("Missing required property 'patternType'");
55
+ }
56
+ if ((!args || args.permission === undefined) && !opts.urn) {
57
+ throw new Error("Missing required property 'permission'");
58
+ }
59
+ if ((!args || args.principal === undefined) && !opts.urn) {
60
+ throw new Error("Missing required property 'principal'");
61
+ }
62
+ if ((!args || args.resourceName === undefined) && !opts.urn) {
63
+ throw new Error("Missing required property 'resourceName'");
64
+ }
65
+ if ((!args || args.resourceType === undefined) && !opts.urn) {
66
+ throw new Error("Missing required property 'resourceType'");
67
+ }
68
+ resourceInputs["credentials"] = args ? args.credentials : undefined;
69
+ resourceInputs["host"] = args ? args.host : undefined;
70
+ resourceInputs["httpEndpoint"] = args ? args.httpEndpoint : undefined;
71
+ resourceInputs["kafkaCluster"] = args ? args.kafkaCluster : undefined;
72
+ resourceInputs["operation"] = args ? args.operation : undefined;
73
+ resourceInputs["patternType"] = args ? args.patternType : undefined;
74
+ resourceInputs["permission"] = args ? args.permission : undefined;
75
+ resourceInputs["principal"] = args ? args.principal : undefined;
76
+ resourceInputs["resourceName"] = args ? args.resourceName : undefined;
77
+ resourceInputs["resourceType"] = args ? args.resourceType : undefined;
78
+ }
79
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
80
+ super(KafkaAcl.__pulumiType, name, resourceInputs, opts);
81
+ }
82
+ /**
83
+ * Get an existing KafkaAcl resource's state with the given name, ID, and optional extra
84
+ * properties used to qualify the lookup.
85
+ *
86
+ * @param name The _unique_ name of the resulting resource.
87
+ * @param id The _unique_ provider ID of the resource to lookup.
88
+ * @param state Any extra arguments used during the lookup.
89
+ * @param opts Optional settings to control the behavior of the CustomResource.
90
+ */
91
+ static get(name, id, state, opts) {
92
+ return new KafkaAcl(name, state, Object.assign(Object.assign({}, opts), { id: id }));
93
+ }
94
+ /**
95
+ * Returns true if the given object is an instance of KafkaAcl. This is designed to work even
96
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
97
+ */
98
+ static isInstance(obj) {
99
+ if (obj === undefined || obj === null) {
100
+ return false;
101
+ }
102
+ return obj['__pulumiType'] === KafkaAcl.__pulumiType;
103
+ }
104
+ }
105
+ exports.KafkaAcl = KafkaAcl;
106
+ /** @internal */
107
+ KafkaAcl.__pulumiType = 'confluentcloud:index/kafkaAcl:KafkaAcl';
108
+ //# sourceMappingURL=kafkaAcl.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kafkaAcl.js","sourceRoot":"","sources":["../kafkaAcl.ts"],"names":[],"mappings":"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"}