@pulumi/confluentcloud 1.36.0-alpha.1709099773 → 1.36.0-alpha.1709564148
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/flinkComputePool.d.ts +0 -24
- package/flinkComputePool.js +0 -4
- package/flinkComputePool.js.map +1 -1
- package/getFlinkComputePool.d.ts +0 -12
- package/getFlinkComputePool.js.map +1 -1
- package/getSchemaRegistryRegion.d.ts +10 -2
- package/getSchemaRegistryRegion.js +10 -2
- package/getSchemaRegistryRegion.js.map +1 -1
- package/package.json +1 -1
package/flinkComputePool.d.ts
CHANGED
|
@@ -58,12 +58,6 @@ export declare class FlinkComputePool extends pulumi.CustomResource {
|
|
|
58
58
|
* The cloud service provider that runs the Flink Compute Pool.
|
|
59
59
|
*/
|
|
60
60
|
readonly cloud: pulumi.Output<string>;
|
|
61
|
-
/**
|
|
62
|
-
* (Required Integer, **Deprecated**) The number of Confluent Flink Units (CFUs) currently allocated to this Flink compute pool.
|
|
63
|
-
*
|
|
64
|
-
* @deprecated `confluent_flink_compute_pool` resource's `current_cfu` attribute has been deprecated and will be removed in a future minor version (as `confluent_flink_compute_pool` resource is still in a Preview lifecycle stage).
|
|
65
|
-
*/
|
|
66
|
-
readonly currentCfu: pulumi.Output<number>;
|
|
67
61
|
/**
|
|
68
62
|
* The name of the Flink Compute Pool.
|
|
69
63
|
*/
|
|
@@ -88,12 +82,6 @@ export declare class FlinkComputePool extends pulumi.CustomResource {
|
|
|
88
82
|
* (Required String) The Confluent Resource Name of the Flink Compute Pool.
|
|
89
83
|
*/
|
|
90
84
|
readonly resourceName: pulumi.Output<string>;
|
|
91
|
-
/**
|
|
92
|
-
* (Required String, **Deprecated** use `confluentcloud.getFlinkRegion` data source's `restEndpoint` attribute instead) The API endpoint of the Flink Compute Pool.
|
|
93
|
-
*
|
|
94
|
-
* @deprecated `confluent_flink_compute_pool` resource's `rest_endpoint` attribute has been deprecated and will be removed in a future minor version (as `confluent_flink_compute_pool` resource is still in a Preview lifecycle stage). Use `confluent_flink_region` data source's `rest_endpoint` attribute instead.
|
|
95
|
-
*/
|
|
96
|
-
readonly restEndpoint: pulumi.Output<string>;
|
|
97
85
|
/**
|
|
98
86
|
* Create a FlinkComputePool resource with the given unique name, arguments, and options.
|
|
99
87
|
*
|
|
@@ -115,12 +103,6 @@ export interface FlinkComputePoolState {
|
|
|
115
103
|
* The cloud service provider that runs the Flink Compute Pool.
|
|
116
104
|
*/
|
|
117
105
|
cloud?: pulumi.Input<string>;
|
|
118
|
-
/**
|
|
119
|
-
* (Required Integer, **Deprecated**) The number of Confluent Flink Units (CFUs) currently allocated to this Flink compute pool.
|
|
120
|
-
*
|
|
121
|
-
* @deprecated `confluent_flink_compute_pool` resource's `current_cfu` attribute has been deprecated and will be removed in a future minor version (as `confluent_flink_compute_pool` resource is still in a Preview lifecycle stage).
|
|
122
|
-
*/
|
|
123
|
-
currentCfu?: pulumi.Input<number>;
|
|
124
106
|
/**
|
|
125
107
|
* The name of the Flink Compute Pool.
|
|
126
108
|
*/
|
|
@@ -145,12 +127,6 @@ export interface FlinkComputePoolState {
|
|
|
145
127
|
* (Required String) The Confluent Resource Name of the Flink Compute Pool.
|
|
146
128
|
*/
|
|
147
129
|
resourceName?: pulumi.Input<string>;
|
|
148
|
-
/**
|
|
149
|
-
* (Required String, **Deprecated** use `confluentcloud.getFlinkRegion` data source's `restEndpoint` attribute instead) The API endpoint of the Flink Compute Pool.
|
|
150
|
-
*
|
|
151
|
-
* @deprecated `confluent_flink_compute_pool` resource's `rest_endpoint` attribute has been deprecated and will be removed in a future minor version (as `confluent_flink_compute_pool` resource is still in a Preview lifecycle stage). Use `confluent_flink_region` data source's `rest_endpoint` attribute instead.
|
|
152
|
-
*/
|
|
153
|
-
restEndpoint?: pulumi.Input<string>;
|
|
154
130
|
}
|
|
155
131
|
/**
|
|
156
132
|
* The set of arguments for constructing a FlinkComputePool resource.
|
package/flinkComputePool.js
CHANGED
|
@@ -68,14 +68,12 @@ class FlinkComputePool extends pulumi.CustomResource {
|
|
|
68
68
|
const state = argsOrState;
|
|
69
69
|
resourceInputs["apiVersion"] = state ? state.apiVersion : undefined;
|
|
70
70
|
resourceInputs["cloud"] = state ? state.cloud : undefined;
|
|
71
|
-
resourceInputs["currentCfu"] = state ? state.currentCfu : undefined;
|
|
72
71
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
73
72
|
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
74
73
|
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
75
74
|
resourceInputs["maxCfu"] = state ? state.maxCfu : undefined;
|
|
76
75
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
77
76
|
resourceInputs["resourceName"] = state ? state.resourceName : undefined;
|
|
78
|
-
resourceInputs["restEndpoint"] = state ? state.restEndpoint : undefined;
|
|
79
77
|
}
|
|
80
78
|
else {
|
|
81
79
|
const args = argsOrState;
|
|
@@ -97,10 +95,8 @@ class FlinkComputePool extends pulumi.CustomResource {
|
|
|
97
95
|
resourceInputs["maxCfu"] = args ? args.maxCfu : undefined;
|
|
98
96
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
99
97
|
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
100
|
-
resourceInputs["currentCfu"] = undefined /*out*/;
|
|
101
98
|
resourceInputs["kind"] = undefined /*out*/;
|
|
102
99
|
resourceInputs["resourceName"] = undefined /*out*/;
|
|
103
|
-
resourceInputs["restEndpoint"] = undefined /*out*/;
|
|
104
100
|
}
|
|
105
101
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
106
102
|
super(FlinkComputePool.__pulumiType, name, resourceInputs, opts);
|
package/flinkComputePool.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flinkComputePool.js","sourceRoot":"","sources":["../flinkComputePool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,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,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;
|
|
1
|
+
{"version":3,"file":"flinkComputePool.js","sourceRoot":"","sources":["../flinkComputePool.ts"],"names":[],"mappings":"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"}
|
package/getFlinkComputePool.d.ts
CHANGED
|
@@ -63,12 +63,6 @@ export interface GetFlinkComputePoolResult {
|
|
|
63
63
|
* (Required String) The cloud service provider that runs the Flink Compute Pool.
|
|
64
64
|
*/
|
|
65
65
|
readonly cloud: string;
|
|
66
|
-
/**
|
|
67
|
-
* (Required Integer, **Deprecated**) The number of Confluent Flink Units (CFUs) currently allocated to this Flink compute pool.
|
|
68
|
-
*
|
|
69
|
-
* @deprecated `confluent_flink_compute_pool` data source's `current_cfu` attribute has been deprecated and will be removed in a future minor version (as `confluent_flink_compute_pool` data source is still in a Preview lifecycle stage).
|
|
70
|
-
*/
|
|
71
|
-
readonly currentCfu: number;
|
|
72
66
|
/**
|
|
73
67
|
* (Required String) The name of the Flink Compute Pool.
|
|
74
68
|
*/
|
|
@@ -97,12 +91,6 @@ export interface GetFlinkComputePoolResult {
|
|
|
97
91
|
* (Required String) The Confluent Resource Name of the Flink Compute Pool.
|
|
98
92
|
*/
|
|
99
93
|
readonly resourceName: string;
|
|
100
|
-
/**
|
|
101
|
-
* (Required String, **Deprecated** use `confluentcloud.getFlinkRegion` data source's `restEndpoint` attribute instead) The API endpoint of the Flink Compute Pool.
|
|
102
|
-
*
|
|
103
|
-
* @deprecated `confluent_flink_compute_pool` data source's `rest_endpoint` attribute has been deprecated and will be removed in a future minor version (as `confluent_flink_compute_pool` data source is still in a Preview lifecycle stage). Use `confluent_flink_region` data source's `rest_endpoint` attribute instead.
|
|
104
|
-
*/
|
|
105
|
-
readonly restEndpoint: string;
|
|
106
94
|
}
|
|
107
95
|
/**
|
|
108
96
|
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getFlinkComputePool.js","sourceRoot":"","sources":["../getFlinkComputePool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAE1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,kDAQC;
|
|
1
|
+
{"version":3,"file":"getFlinkComputePool.js","sourceRoot":"","sources":["../getFlinkComputePool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAE1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,kDAQC;AA+DD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
4
4
|
*
|
|
5
5
|
* `confluentcloud.getSchemaRegistryRegion` describes a Schema Registry cluster data source.
|
|
6
6
|
*
|
|
7
|
+
* !> **Warning:** The `confluentcloud.getSchemaRegistryRegion` data source has been deprecated and will be removed in the next major version of the provider (2.0.0).
|
|
8
|
+
* Refer to the Upgrade Guide for more details.
|
|
9
|
+
* The guide will be published once version 2.0.0 is released.
|
|
10
|
+
*
|
|
7
11
|
* ## Example Usage
|
|
8
12
|
*
|
|
9
13
|
* ```typescript
|
|
@@ -51,10 +55,14 @@ export interface GetSchemaRegistryRegionResult {
|
|
|
51
55
|
readonly region: string;
|
|
52
56
|
}
|
|
53
57
|
/**
|
|
54
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
55
59
|
*
|
|
56
60
|
* `confluentcloud.getSchemaRegistryRegion` describes a Schema Registry cluster data source.
|
|
57
61
|
*
|
|
62
|
+
* !> **Warning:** The `confluentcloud.getSchemaRegistryRegion` data source has been deprecated and will be removed in the next major version of the provider (2.0.0).
|
|
63
|
+
* Refer to the Upgrade Guide for more details.
|
|
64
|
+
* The guide will be published once version 2.0.0 is released.
|
|
65
|
+
*
|
|
58
66
|
* ## Example Usage
|
|
59
67
|
*
|
|
60
68
|
* ```typescript
|
|
@@ -6,10 +6,14 @@ exports.getSchemaRegistryRegionOutput = exports.getSchemaRegistryRegion = void 0
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
10
10
|
*
|
|
11
11
|
* `confluentcloud.getSchemaRegistryRegion` describes a Schema Registry cluster data source.
|
|
12
12
|
*
|
|
13
|
+
* !> **Warning:** The `confluentcloud.getSchemaRegistryRegion` data source has been deprecated and will be removed in the next major version of the provider (2.0.0).
|
|
14
|
+
* Refer to the Upgrade Guide for more details.
|
|
15
|
+
* The guide will be published once version 2.0.0 is released.
|
|
16
|
+
*
|
|
13
17
|
* ## Example Usage
|
|
14
18
|
*
|
|
15
19
|
* ```typescript
|
|
@@ -34,10 +38,14 @@ function getSchemaRegistryRegion(args, opts) {
|
|
|
34
38
|
}
|
|
35
39
|
exports.getSchemaRegistryRegion = getSchemaRegistryRegion;
|
|
36
40
|
/**
|
|
37
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
38
42
|
*
|
|
39
43
|
* `confluentcloud.getSchemaRegistryRegion` describes a Schema Registry cluster data source.
|
|
40
44
|
*
|
|
45
|
+
* !> **Warning:** The `confluentcloud.getSchemaRegistryRegion` data source has been deprecated and will be removed in the next major version of the provider (2.0.0).
|
|
46
|
+
* Refer to the Upgrade Guide for more details.
|
|
47
|
+
* The guide will be published once version 2.0.0 is released.
|
|
48
|
+
*
|
|
41
49
|
* ## Example Usage
|
|
42
50
|
*
|
|
43
51
|
* ```typescript
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSchemaRegistryRegion.js","sourceRoot":"","sources":["../getSchemaRegistryRegion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getSchemaRegistryRegion.js","sourceRoot":"","sources":["../getSchemaRegistryRegion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAElG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sEAAsE,EAAE;QACjG,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0DAQC;AAkCD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClF,CAAC;AAFD,sEAEC"}
|
package/package.json
CHANGED