@pulumi/confluentcloud 1.14.0-alpha.1682638345 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/invitation.d.ts +1 -1
- package/invitation.js +1 -1
- package/kafkaAcl.d.ts +9 -9
- package/package.json +2 -2
- package/package.json.dev +2 -2
package/invitation.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ import * as outputs from "./types/output";
|
|
|
21
21
|
*
|
|
22
22
|
* ## Import
|
|
23
23
|
*
|
|
24
|
-
* You can import
|
|
24
|
+
* You can import an Invitation by using Invitation ID, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
25
25
|
*
|
|
26
26
|
* ```sh
|
|
27
27
|
* $ pulumi import confluentcloud:index/invitation:Invitation main i-gxxn1
|
package/invitation.js
CHANGED
|
@@ -25,7 +25,7 @@ const utilities = require("./utilities");
|
|
|
25
25
|
*
|
|
26
26
|
* ## Import
|
|
27
27
|
*
|
|
28
|
-
* You can import
|
|
28
|
+
* You can import an Invitation by using Invitation ID, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
29
29
|
*
|
|
30
30
|
* ```sh
|
|
31
31
|
* $ pulumi import confluentcloud:index/invitation:Invitation main i-gxxn1
|
package/kafkaAcl.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ export declare class KafkaAcl extends pulumi.CustomResource {
|
|
|
44
44
|
readonly host: pulumi.Output<string>;
|
|
45
45
|
readonly kafkaCluster: pulumi.Output<outputs.KafkaAclKafkaCluster | undefined>;
|
|
46
46
|
/**
|
|
47
|
-
* The operation type for the ACL. Accepted values are: `
|
|
47
|
+
* The operation type for the ACL. Accepted values are: `ALL`, `READ`, `WRITE`, `CREATE`, `DELETE`, `ALTER`, `DESCRIBE`, `CLUSTER_ACTION`, `DESCRIBE_CONFIGS`, `ALTER_CONFIGS`, and `IDEMPOTENT_WRITE`. See [Authorization using ACLs](https://docs.confluent.io/platform/current/kafka/authorization.html#operations) to find mappings of `(resource_type, operation)` to one or more Kafka APIs or request types.
|
|
48
48
|
*/
|
|
49
49
|
readonly operation: pulumi.Output<string>;
|
|
50
50
|
/**
|
|
@@ -52,7 +52,7 @@ export declare class KafkaAcl extends pulumi.CustomResource {
|
|
|
52
52
|
*/
|
|
53
53
|
readonly patternType: pulumi.Output<string>;
|
|
54
54
|
/**
|
|
55
|
-
* The permission for the ACL. Accepted values are: `
|
|
55
|
+
* The permission for the ACL. Accepted values are: `DENY` and `ALLOW`.
|
|
56
56
|
*/
|
|
57
57
|
readonly permission: pulumi.Output<string>;
|
|
58
58
|
/**
|
|
@@ -64,7 +64,7 @@ export declare class KafkaAcl extends pulumi.CustomResource {
|
|
|
64
64
|
*/
|
|
65
65
|
readonly resourceName: pulumi.Output<string>;
|
|
66
66
|
/**
|
|
67
|
-
* The type of the resource. Accepted values are: `
|
|
67
|
+
* The type of the resource. Accepted values are: `TOPIC`, `GROUP`, `CLUSTER`, `TRANSACTIONAL_ID`, `DELEGATION_TOKEN`. See [Authorization using ACLs](https://docs.confluent.io/platform/current/kafka/authorization.html#operations) to find definitions of resource types and mappings of `(resource_type, operation)` to one or more Kafka APIs or request types.
|
|
68
68
|
*/
|
|
69
69
|
readonly resourceType: pulumi.Output<string>;
|
|
70
70
|
/**
|
|
@@ -94,7 +94,7 @@ export interface KafkaAclState {
|
|
|
94
94
|
host?: pulumi.Input<string>;
|
|
95
95
|
kafkaCluster?: pulumi.Input<inputs.KafkaAclKafkaCluster>;
|
|
96
96
|
/**
|
|
97
|
-
* The operation type for the ACL. Accepted values are: `
|
|
97
|
+
* The operation type for the ACL. Accepted values are: `ALL`, `READ`, `WRITE`, `CREATE`, `DELETE`, `ALTER`, `DESCRIBE`, `CLUSTER_ACTION`, `DESCRIBE_CONFIGS`, `ALTER_CONFIGS`, and `IDEMPOTENT_WRITE`. See [Authorization using ACLs](https://docs.confluent.io/platform/current/kafka/authorization.html#operations) to find mappings of `(resource_type, operation)` to one or more Kafka APIs or request types.
|
|
98
98
|
*/
|
|
99
99
|
operation?: pulumi.Input<string>;
|
|
100
100
|
/**
|
|
@@ -102,7 +102,7 @@ export interface KafkaAclState {
|
|
|
102
102
|
*/
|
|
103
103
|
patternType?: pulumi.Input<string>;
|
|
104
104
|
/**
|
|
105
|
-
* The permission for the ACL. Accepted values are: `
|
|
105
|
+
* The permission for the ACL. Accepted values are: `DENY` and `ALLOW`.
|
|
106
106
|
*/
|
|
107
107
|
permission?: pulumi.Input<string>;
|
|
108
108
|
/**
|
|
@@ -114,7 +114,7 @@ export interface KafkaAclState {
|
|
|
114
114
|
*/
|
|
115
115
|
resourceName?: pulumi.Input<string>;
|
|
116
116
|
/**
|
|
117
|
-
* The type of the resource. Accepted values are: `
|
|
117
|
+
* The type of the resource. Accepted values are: `TOPIC`, `GROUP`, `CLUSTER`, `TRANSACTIONAL_ID`, `DELEGATION_TOKEN`. See [Authorization using ACLs](https://docs.confluent.io/platform/current/kafka/authorization.html#operations) to find definitions of resource types and mappings of `(resource_type, operation)` to one or more Kafka APIs or request types.
|
|
118
118
|
*/
|
|
119
119
|
resourceType?: pulumi.Input<string>;
|
|
120
120
|
/**
|
|
@@ -136,7 +136,7 @@ export interface KafkaAclArgs {
|
|
|
136
136
|
host: pulumi.Input<string>;
|
|
137
137
|
kafkaCluster?: pulumi.Input<inputs.KafkaAclKafkaCluster>;
|
|
138
138
|
/**
|
|
139
|
-
* The operation type for the ACL. Accepted values are: `
|
|
139
|
+
* The operation type for the ACL. Accepted values are: `ALL`, `READ`, `WRITE`, `CREATE`, `DELETE`, `ALTER`, `DESCRIBE`, `CLUSTER_ACTION`, `DESCRIBE_CONFIGS`, `ALTER_CONFIGS`, and `IDEMPOTENT_WRITE`. See [Authorization using ACLs](https://docs.confluent.io/platform/current/kafka/authorization.html#operations) to find mappings of `(resource_type, operation)` to one or more Kafka APIs or request types.
|
|
140
140
|
*/
|
|
141
141
|
operation: pulumi.Input<string>;
|
|
142
142
|
/**
|
|
@@ -144,7 +144,7 @@ export interface KafkaAclArgs {
|
|
|
144
144
|
*/
|
|
145
145
|
patternType: pulumi.Input<string>;
|
|
146
146
|
/**
|
|
147
|
-
* The permission for the ACL. Accepted values are: `
|
|
147
|
+
* The permission for the ACL. Accepted values are: `DENY` and `ALLOW`.
|
|
148
148
|
*/
|
|
149
149
|
permission: pulumi.Input<string>;
|
|
150
150
|
/**
|
|
@@ -156,7 +156,7 @@ export interface KafkaAclArgs {
|
|
|
156
156
|
*/
|
|
157
157
|
resourceName: pulumi.Input<string>;
|
|
158
158
|
/**
|
|
159
|
-
* The type of the resource. Accepted values are: `
|
|
159
|
+
* The type of the resource. Accepted values are: `TOPIC`, `GROUP`, `CLUSTER`, `TRANSACTIONAL_ID`, `DELEGATION_TOKEN`. See [Authorization using ACLs](https://docs.confluent.io/platform/current/kafka/authorization.html#operations) to find definitions of resource types and mappings of `(resource_type, operation)` to one or more Kafka APIs or request types.
|
|
160
160
|
*/
|
|
161
161
|
resourceType: pulumi.Input<string>;
|
|
162
162
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/confluentcloud",
|
|
3
|
-
"version": "v1.14.0
|
|
3
|
+
"version": "v1.14.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Confluent cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource confluentcloud v1.14.0
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource confluentcloud v1.14.0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/confluentcloud",
|
|
3
|
-
"version": "v1.14.0
|
|
3
|
+
"version": "v1.14.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Confluent cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource confluentcloud v1.14.0
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource confluentcloud v1.14.0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|