@pulumi/confluentcloud 1.16.0-alpha.1683783653 → 1.16.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/businessMetadataBinding.d.ts +6 -6
- package/connector.d.ts +0 -9
- package/connector.js.map +1 -1
- package/getBusinessMetadata.d.ts +6 -2
- package/getBusinessMetadata.js.map +1 -1
- package/getBusinessMetadataBinding.d.ts +2 -2
- package/getByokKey.d.ts +2 -8
- package/getByokKey.js +2 -8
- package/getByokKey.js.map +1 -1
- package/getEnvironment.d.ts +4 -0
- package/getEnvironment.js.map +1 -1
- package/getIdentityPool.d.ts +4 -0
- package/getIdentityPool.js.map +1 -1
- package/getIdentityProvider.d.ts +4 -0
- package/getIdentityProvider.js.map +1 -1
- package/getKafkaCluster.d.ts +4 -0
- package/getKafkaCluster.js.map +1 -1
- package/getKsqlCluster.d.ts +4 -0
- package/getKsqlCluster.js.map +1 -1
- package/getNetwork.d.ts +4 -0
- package/getNetwork.js.map +1 -1
- package/getPeering.d.ts +4 -0
- package/getPeering.js.map +1 -1
- package/getPrivateLinkAccess.d.ts +4 -0
- package/getPrivateLinkAccess.js.map +1 -1
- package/getSchema.d.ts +4 -0
- package/getSchema.js.map +1 -1
- package/getSchemaRegistryCluster.d.ts +7 -0
- package/getSchemaRegistryCluster.js.map +1 -1
- package/getSchemaRegistryRegion.d.ts +4 -0
- package/getSchemaRegistryRegion.js.map +1 -1
- package/getServiceAccount.d.ts +4 -0
- package/getServiceAccount.js.map +1 -1
- package/getSubjectMode.d.ts +4 -0
- package/getSubjectMode.js.map +1 -1
- package/getTag.d.ts +6 -2
- package/getTag.js.map +1 -1
- package/getTagBinding.d.ts +6 -2
- package/getTagBinding.js.map +1 -1
- package/getTransitGatewayAttachment.d.ts +4 -0
- package/getTransitGatewayAttachment.js.map +1 -1
- package/getUser.d.ts +4 -0
- package/getUser.js.map +1 -1
- package/identityProvider.d.ts +6 -0
- package/identityProvider.js.map +1 -1
- package/kafkaAcl.d.ts +3 -3
- package/kafkaMirrorTopic.d.ts +0 -9
- package/kafkaMirrorTopic.js.map +1 -1
- package/network.d.ts +6 -0
- package/network.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/tag.d.ts +6 -6
- package/tagBinding.d.ts +6 -6
- package/tfImporter.d.ts +3 -3
- package/types/input.d.ts +74 -27
- package/types/output.d.ts +73 -25
|
@@ -29,13 +29,13 @@ export declare class BusinessMetadataBinding extends pulumi.CustomResource {
|
|
|
29
29
|
*/
|
|
30
30
|
static isInstance(obj: any): obj is BusinessMetadataBinding;
|
|
31
31
|
/**
|
|
32
|
-
* The
|
|
32
|
+
* The attributes.
|
|
33
33
|
*/
|
|
34
34
|
readonly attributes: pulumi.Output<{
|
|
35
35
|
[key: string]: string;
|
|
36
36
|
}>;
|
|
37
37
|
/**
|
|
38
|
-
* The name of the Business Metadata to be applied, for example, `PII`.
|
|
38
|
+
* The name of the Business Metadata to be applied, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
39
39
|
*/
|
|
40
40
|
readonly businessMetadataName: pulumi.Output<string>;
|
|
41
41
|
/**
|
|
@@ -69,13 +69,13 @@ export declare class BusinessMetadataBinding extends pulumi.CustomResource {
|
|
|
69
69
|
*/
|
|
70
70
|
export interface BusinessMetadataBindingState {
|
|
71
71
|
/**
|
|
72
|
-
* The
|
|
72
|
+
* The attributes.
|
|
73
73
|
*/
|
|
74
74
|
attributes?: pulumi.Input<{
|
|
75
75
|
[key: string]: pulumi.Input<string>;
|
|
76
76
|
}>;
|
|
77
77
|
/**
|
|
78
|
-
* The name of the Business Metadata to be applied, for example, `PII`.
|
|
78
|
+
* The name of the Business Metadata to be applied, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
79
79
|
*/
|
|
80
80
|
businessMetadataName?: pulumi.Input<string>;
|
|
81
81
|
/**
|
|
@@ -101,13 +101,13 @@ export interface BusinessMetadataBindingState {
|
|
|
101
101
|
*/
|
|
102
102
|
export interface BusinessMetadataBindingArgs {
|
|
103
103
|
/**
|
|
104
|
-
* The
|
|
104
|
+
* The attributes.
|
|
105
105
|
*/
|
|
106
106
|
attributes?: pulumi.Input<{
|
|
107
107
|
[key: string]: pulumi.Input<string>;
|
|
108
108
|
}>;
|
|
109
109
|
/**
|
|
110
|
-
* The name of the Business Metadata to be applied, for example, `PII`.
|
|
110
|
+
* The name of the Business Metadata to be applied, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
111
111
|
*/
|
|
112
112
|
businessMetadataName: pulumi.Input<string>;
|
|
113
113
|
/**
|
package/connector.d.ts
CHANGED
|
@@ -43,9 +43,6 @@ export declare class Connector extends pulumi.CustomResource {
|
|
|
43
43
|
*/
|
|
44
44
|
readonly environment: pulumi.Output<outputs.ConnectorEnvironment>;
|
|
45
45
|
readonly kafkaCluster: pulumi.Output<outputs.ConnectorKafkaCluster>;
|
|
46
|
-
/**
|
|
47
|
-
* The status of the connector (one of `"NONE"`, `"PROVISIONING"`, `"RUNNING"`, `"DEGRADED"`, `"FAILED"`, `"PAUSED"`, `"DELETED"`). Pausing (`"RUNNING" > "PAUSED"`) and resuming (`"PAUSED" > "RUNNING"`) a connector is supported via an update operation.
|
|
48
|
-
*/
|
|
49
46
|
readonly status: pulumi.Output<string>;
|
|
50
47
|
/**
|
|
51
48
|
* Create a Connector resource with the given unique name, arguments, and options.
|
|
@@ -77,9 +74,6 @@ export interface ConnectorState {
|
|
|
77
74
|
*/
|
|
78
75
|
environment?: pulumi.Input<inputs.ConnectorEnvironment>;
|
|
79
76
|
kafkaCluster?: pulumi.Input<inputs.ConnectorKafkaCluster>;
|
|
80
|
-
/**
|
|
81
|
-
* The status of the connector (one of `"NONE"`, `"PROVISIONING"`, `"RUNNING"`, `"DEGRADED"`, `"FAILED"`, `"PAUSED"`, `"DELETED"`). Pausing (`"RUNNING" > "PAUSED"`) and resuming (`"PAUSED" > "RUNNING"`) a connector is supported via an update operation.
|
|
82
|
-
*/
|
|
83
77
|
status?: pulumi.Input<string>;
|
|
84
78
|
}
|
|
85
79
|
/**
|
|
@@ -103,8 +97,5 @@ export interface ConnectorArgs {
|
|
|
103
97
|
*/
|
|
104
98
|
environment: pulumi.Input<inputs.ConnectorEnvironment>;
|
|
105
99
|
kafkaCluster: pulumi.Input<inputs.ConnectorKafkaCluster>;
|
|
106
|
-
/**
|
|
107
|
-
* The status of the connector (one of `"NONE"`, `"PROVISIONING"`, `"RUNNING"`, `"DEGRADED"`, `"FAILED"`, `"PAUSED"`, `"DELETED"`). Pausing (`"RUNNING" > "PAUSED"`) and resuming (`"PAUSED" > "RUNNING"`) a connector is supported via an update operation.
|
|
108
|
-
*/
|
|
109
100
|
status?: pulumi.Input<string>;
|
|
110
101
|
}
|
package/connector.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connector.js","sourceRoot":"","sources":["../connector.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;
|
|
1
|
+
{"version":3,"file":"connector.js","sourceRoot":"","sources":["../connector.ts"],"names":[],"mappings":"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"}
|
package/getBusinessMetadata.d.ts
CHANGED
|
@@ -8,7 +8,9 @@ export declare function getBusinessMetadata(args: GetBusinessMetadataArgs, opts?
|
|
|
8
8
|
export interface GetBusinessMetadataArgs {
|
|
9
9
|
credentials?: inputs.GetBusinessMetadataCredentials;
|
|
10
10
|
/**
|
|
11
|
-
* The name of the Business Metadata, for example, `PII`.
|
|
11
|
+
* The name of the Business Metadata, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
12
|
+
*
|
|
13
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
12
14
|
*/
|
|
13
15
|
name: string;
|
|
14
16
|
/**
|
|
@@ -52,7 +54,9 @@ export declare function getBusinessMetadataOutput(args: GetBusinessMetadataOutpu
|
|
|
52
54
|
export interface GetBusinessMetadataOutputArgs {
|
|
53
55
|
credentials?: pulumi.Input<inputs.GetBusinessMetadataCredentialsArgs>;
|
|
54
56
|
/**
|
|
55
|
-
* The name of the Business Metadata, for example, `PII`.
|
|
57
|
+
* The name of the Business Metadata, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
58
|
+
*
|
|
59
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
56
60
|
*/
|
|
57
61
|
name: pulumi.Input<string>;
|
|
58
62
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getBusinessMetadata.js","sourceRoot":"","sources":["../getBusinessMetadata.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,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,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;KACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,kDASC;
|
|
1
|
+
{"version":3,"file":"getBusinessMetadata.js","sourceRoot":"","sources":["../getBusinessMetadata.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,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,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;KACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,kDASC;AAgDD,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"}
|
|
@@ -7,7 +7,7 @@ export declare function getBusinessMetadataBinding(args: GetBusinessMetadataBind
|
|
|
7
7
|
*/
|
|
8
8
|
export interface GetBusinessMetadataBindingArgs {
|
|
9
9
|
/**
|
|
10
|
-
* The name of the Business Metadata to be applied, for example, `PII`.
|
|
10
|
+
* The name of the Business Metadata to be applied, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
11
11
|
*/
|
|
12
12
|
businessMetadataName: string;
|
|
13
13
|
credentials?: inputs.GetBusinessMetadataBindingCredentials;
|
|
@@ -52,7 +52,7 @@ export declare function getBusinessMetadataBindingOutput(args: GetBusinessMetada
|
|
|
52
52
|
*/
|
|
53
53
|
export interface GetBusinessMetadataBindingOutputArgs {
|
|
54
54
|
/**
|
|
55
|
-
* The name of the Business Metadata to be applied, for example, `PII`.
|
|
55
|
+
* The name of the Business Metadata to be applied, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
56
56
|
*/
|
|
57
57
|
businessMetadataName: pulumi.Input<string>;
|
|
58
58
|
credentials?: pulumi.Input<inputs.GetBusinessMetadataBindingCredentialsArgs>;
|
package/getByokKey.d.ts
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
8
5
|
*
|
|
9
6
|
* `confluentcloud.ByokKey` describes a BYOK Key data source.
|
|
10
7
|
*
|
|
@@ -48,10 +45,7 @@ export interface GetByokKeyResult {
|
|
|
48
45
|
readonly id: string;
|
|
49
46
|
}
|
|
50
47
|
/**
|
|
51
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
55
49
|
*
|
|
56
50
|
* `confluentcloud.ByokKey` describes a BYOK Key data source.
|
|
57
51
|
*
|
package/getByokKey.js
CHANGED
|
@@ -6,10 +6,7 @@ exports.getByokKeyOutput = exports.getByokKey = 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)
|
|
13
10
|
*
|
|
14
11
|
* `confluentcloud.ByokKey` describes a BYOK Key data source.
|
|
15
12
|
*
|
|
@@ -33,10 +30,7 @@ function getByokKey(args, opts) {
|
|
|
33
30
|
}
|
|
34
31
|
exports.getByokKey = getByokKey;
|
|
35
32
|
/**
|
|
36
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
40
34
|
*
|
|
41
35
|
* `confluentcloud.ByokKey` describes a BYOK Key data source.
|
|
42
36
|
*
|
package/getByokKey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getByokKey.js","sourceRoot":"","sources":["../getByokKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getByokKey.js","sourceRoot":"","sources":["../getByokKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AA6BD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
package/getEnvironment.d.ts
CHANGED
|
@@ -34,6 +34,8 @@ export declare function getEnvironment(args?: GetEnvironmentArgs, opts?: pulumi.
|
|
|
34
34
|
export interface GetEnvironmentArgs {
|
|
35
35
|
/**
|
|
36
36
|
* A human-readable name for the Environment.
|
|
37
|
+
*
|
|
38
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
37
39
|
*/
|
|
38
40
|
displayName?: string;
|
|
39
41
|
/**
|
|
@@ -93,6 +95,8 @@ export declare function getEnvironmentOutput(args?: GetEnvironmentOutputArgs, op
|
|
|
93
95
|
export interface GetEnvironmentOutputArgs {
|
|
94
96
|
/**
|
|
95
97
|
* A human-readable name for the Environment.
|
|
98
|
+
*
|
|
99
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
96
100
|
*/
|
|
97
101
|
displayName?: pulumi.Input<string>;
|
|
98
102
|
/**
|
package/getEnvironment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getEnvironment.js","sourceRoot":"","sources":["../getEnvironment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wCAQC;
|
|
1
|
+
{"version":3,"file":"getEnvironment.js","sourceRoot":"","sources":["../getEnvironment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wCAQC;AAmCD;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|
package/getIdentityPool.d.ts
CHANGED
|
@@ -39,6 +39,8 @@ export interface GetIdentityPoolArgs {
|
|
|
39
39
|
displayName?: string;
|
|
40
40
|
/**
|
|
41
41
|
* The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
|
|
42
|
+
*
|
|
43
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
42
44
|
*/
|
|
43
45
|
id?: string;
|
|
44
46
|
/**
|
|
@@ -113,6 +115,8 @@ export interface GetIdentityPoolOutputArgs {
|
|
|
113
115
|
displayName?: pulumi.Input<string>;
|
|
114
116
|
/**
|
|
115
117
|
* The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
|
|
118
|
+
*
|
|
119
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
116
120
|
*/
|
|
117
121
|
id?: pulumi.Input<string>;
|
|
118
122
|
/**
|
package/getIdentityPool.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getIdentityPool.js","sourceRoot":"","sources":["../getIdentityPool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0CAQC;
|
|
1
|
+
{"version":3,"file":"getIdentityPool.js","sourceRoot":"","sources":["../getIdentityPool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0CAQC;AAmDD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
package/getIdentityProvider.d.ts
CHANGED
|
@@ -27,6 +27,8 @@ export declare function getIdentityProvider(args?: GetIdentityProviderArgs, opts
|
|
|
27
27
|
export interface GetIdentityProviderArgs {
|
|
28
28
|
/**
|
|
29
29
|
* A human-readable name for the Identity Provider.
|
|
30
|
+
*
|
|
31
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
30
32
|
*/
|
|
31
33
|
displayName?: string;
|
|
32
34
|
/**
|
|
@@ -87,6 +89,8 @@ export declare function getIdentityProviderOutput(args?: GetIdentityProviderOutp
|
|
|
87
89
|
export interface GetIdentityProviderOutputArgs {
|
|
88
90
|
/**
|
|
89
91
|
* A human-readable name for the Identity Provider.
|
|
92
|
+
*
|
|
93
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
90
94
|
*/
|
|
91
95
|
displayName?: pulumi.Input<string>;
|
|
92
96
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getIdentityProvider.js","sourceRoot":"","sources":["../getIdentityProvider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,kDAQC;
|
|
1
|
+
{"version":3,"file":"getIdentityProvider.js","sourceRoot":"","sources":["../getIdentityProvider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,kDAQC;AA2CD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,yBAAyB,CAAC,IAAoC,EAAE,IAA2B;IACvG,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"}
|
package/getKafkaCluster.d.ts
CHANGED
|
@@ -48,6 +48,8 @@ export interface GetKafkaClusterArgs {
|
|
|
48
48
|
environment: inputs.GetKafkaClusterEnvironment;
|
|
49
49
|
/**
|
|
50
50
|
* The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
|
|
51
|
+
*
|
|
52
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
51
53
|
*/
|
|
52
54
|
id?: string;
|
|
53
55
|
/**
|
|
@@ -168,6 +170,8 @@ export interface GetKafkaClusterOutputArgs {
|
|
|
168
170
|
environment: pulumi.Input<inputs.GetKafkaClusterEnvironmentArgs>;
|
|
169
171
|
/**
|
|
170
172
|
* The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
|
|
173
|
+
*
|
|
174
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
171
175
|
*/
|
|
172
176
|
id?: pulumi.Input<string>;
|
|
173
177
|
/**
|
package/getKafkaCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getKafkaCluster.js","sourceRoot":"","sources":["../getKafkaCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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;AAXD,0CAWC;
|
|
1
|
+
{"version":3,"file":"getKafkaCluster.js","sourceRoot":"","sources":["../getKafkaCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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;AAXD,0CAWC;AAiGD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
package/getKsqlCluster.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ export interface GetKsqlClusterArgs {
|
|
|
42
42
|
environment: inputs.GetKsqlClusterEnvironment;
|
|
43
43
|
/**
|
|
44
44
|
* The ID of the Environment that the ksqlDB cluster belongs to, for example, `env-xyz456`.
|
|
45
|
+
*
|
|
46
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
45
47
|
*/
|
|
46
48
|
id?: string;
|
|
47
49
|
}
|
|
@@ -137,6 +139,8 @@ export interface GetKsqlClusterOutputArgs {
|
|
|
137
139
|
environment: pulumi.Input<inputs.GetKsqlClusterEnvironmentArgs>;
|
|
138
140
|
/**
|
|
139
141
|
* The ID of the Environment that the ksqlDB cluster belongs to, for example, `env-xyz456`.
|
|
142
|
+
*
|
|
143
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
140
144
|
*/
|
|
141
145
|
id?: pulumi.Input<string>;
|
|
142
146
|
}
|
package/getKsqlCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getKsqlCluster.js","sourceRoot":"","sources":["../getKsqlCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,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,wCAQC;
|
|
1
|
+
{"version":3,"file":"getKsqlCluster.js","sourceRoot":"","sources":["../getKsqlCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,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,wCAQC;AAsED;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|
package/getNetwork.d.ts
CHANGED
|
@@ -56,6 +56,8 @@ export interface GetNetworkArgs {
|
|
|
56
56
|
gcps?: inputs.GetNetworkGcp[];
|
|
57
57
|
/**
|
|
58
58
|
* The ID of the Environment that the Network belongs to, for example, `env-xyz456`.
|
|
59
|
+
*
|
|
60
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
59
61
|
*/
|
|
60
62
|
id?: string;
|
|
61
63
|
}
|
|
@@ -185,6 +187,8 @@ export interface GetNetworkOutputArgs {
|
|
|
185
187
|
gcps?: pulumi.Input<pulumi.Input<inputs.GetNetworkGcpArgs>[]>;
|
|
186
188
|
/**
|
|
187
189
|
* The ID of the Environment that the Network belongs to, for example, `env-xyz456`.
|
|
190
|
+
*
|
|
191
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
188
192
|
*/
|
|
189
193
|
id?: pulumi.Input<string>;
|
|
190
194
|
}
|
package/getNetwork.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNetwork.js","sourceRoot":"","sources":["../getNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,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;AAZD,gCAYC;
|
|
1
|
+
{"version":3,"file":"getNetwork.js","sourceRoot":"","sources":["../getNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,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;AAZD,gCAYC;AAwGD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
package/getPeering.d.ts
CHANGED
|
@@ -43,6 +43,8 @@ export interface GetPeeringArgs {
|
|
|
43
43
|
environment: inputs.GetPeeringEnvironment;
|
|
44
44
|
/**
|
|
45
45
|
* The ID of the Environment that the Peering belongs to, for example, `env-xyz456`.
|
|
46
|
+
*
|
|
47
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
46
48
|
*/
|
|
47
49
|
id?: string;
|
|
48
50
|
}
|
|
@@ -121,6 +123,8 @@ export interface GetPeeringOutputArgs {
|
|
|
121
123
|
environment: pulumi.Input<inputs.GetPeeringEnvironmentArgs>;
|
|
122
124
|
/**
|
|
123
125
|
* The ID of the Environment that the Peering belongs to, for example, `env-xyz456`.
|
|
126
|
+
*
|
|
127
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
124
128
|
*/
|
|
125
129
|
id?: pulumi.Input<string>;
|
|
126
130
|
}
|
package/getPeering.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPeering.js","sourceRoot":"","sources":["../getPeering.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,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,gCAQC;
|
|
1
|
+
{"version":3,"file":"getPeering.js","sourceRoot":"","sources":["../getPeering.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,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,gCAQC;AAuDD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
|
@@ -43,6 +43,8 @@ export interface GetPrivateLinkAccessArgs {
|
|
|
43
43
|
environment: inputs.GetPrivateLinkAccessEnvironment;
|
|
44
44
|
/**
|
|
45
45
|
* The ID of the Environment that the Private Link Access belongs to, for example, `env-xyz456`.
|
|
46
|
+
*
|
|
47
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
46
48
|
*/
|
|
47
49
|
id?: string;
|
|
48
50
|
}
|
|
@@ -121,6 +123,8 @@ export interface GetPrivateLinkAccessOutputArgs {
|
|
|
121
123
|
environment: pulumi.Input<inputs.GetPrivateLinkAccessEnvironmentArgs>;
|
|
122
124
|
/**
|
|
123
125
|
* The ID of the Environment that the Private Link Access belongs to, for example, `env-xyz456`.
|
|
126
|
+
*
|
|
127
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
124
128
|
*/
|
|
125
129
|
id?: pulumi.Input<string>;
|
|
126
130
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPrivateLinkAccess.js","sourceRoot":"","sources":["../getPrivateLinkAccess.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAE5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE;QAC3F,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,oDAQC;
|
|
1
|
+
{"version":3,"file":"getPrivateLinkAccess.js","sourceRoot":"","sources":["../getPrivateLinkAccess.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAE5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE;QAC3F,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,oDAQC;AAuDD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,oBAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/E,CAAC;AAFD,gEAEC"}
|
package/getSchema.d.ts
CHANGED
|
@@ -13,6 +13,8 @@ export interface GetSchemaArgs {
|
|
|
13
13
|
restEndpoint?: string;
|
|
14
14
|
/**
|
|
15
15
|
* The globally unique ID of the Schema, for example, `100003`. If the same schema is registered under a different subject, the same identifier will be returned. However, the `version` of the schema may be different under different subjects.
|
|
16
|
+
*
|
|
17
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
16
18
|
*/
|
|
17
19
|
schemaIdentifier: number;
|
|
18
20
|
schemaRegistryCluster?: inputs.GetSchemaSchemaRegistryCluster;
|
|
@@ -68,6 +70,8 @@ export interface GetSchemaOutputArgs {
|
|
|
68
70
|
restEndpoint?: pulumi.Input<string>;
|
|
69
71
|
/**
|
|
70
72
|
* The globally unique ID of the Schema, for example, `100003`. If the same schema is registered under a different subject, the same identifier will be returned. However, the `version` of the schema may be different under different subjects.
|
|
73
|
+
*
|
|
74
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
71
75
|
*/
|
|
72
76
|
schemaIdentifier: pulumi.Input<number>;
|
|
73
77
|
schemaRegistryCluster?: pulumi.Input<inputs.GetSchemaSchemaRegistryClusterArgs>;
|
package/getSchema.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSchema.js","sourceRoot":"","sources":["../getSchema.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;
|
|
1
|
+
{"version":3,"file":"getSchema.js","sourceRoot":"","sources":["../getSchema.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;AA2DD,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
|
|
@@ -40,6 +40,8 @@ export interface GetSchemaRegistryClusterArgs {
|
|
|
40
40
|
environment: inputs.GetSchemaRegistryClusterEnvironment;
|
|
41
41
|
/**
|
|
42
42
|
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
43
|
+
*
|
|
44
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
43
45
|
*/
|
|
44
46
|
id?: string;
|
|
45
47
|
}
|
|
@@ -56,6 +58,9 @@ export interface GetSchemaRegistryClusterResult {
|
|
|
56
58
|
*/
|
|
57
59
|
readonly displayName: string;
|
|
58
60
|
readonly environment: outputs.GetSchemaRegistryClusterEnvironment;
|
|
61
|
+
/**
|
|
62
|
+
* (Required String) The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example, `sgreg-1`. See Schema Registry Regions.
|
|
63
|
+
*/
|
|
59
64
|
readonly id: string;
|
|
60
65
|
/**
|
|
61
66
|
* (Required String) A kind of the Schema Registry cluster, for example, `Cluster`.
|
|
@@ -117,6 +122,8 @@ export interface GetSchemaRegistryClusterOutputArgs {
|
|
|
117
122
|
environment: pulumi.Input<inputs.GetSchemaRegistryClusterEnvironmentArgs>;
|
|
118
123
|
/**
|
|
119
124
|
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
125
|
+
*
|
|
126
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
120
127
|
*/
|
|
121
128
|
id?: pulumi.Input<string>;
|
|
122
129
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSchemaRegistryCluster.js","sourceRoot":"","sources":["../getSchemaRegistryCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IAEpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wEAAwE,EAAE;QACnG,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,4DAQC;
|
|
1
|
+
{"version":3,"file":"getSchemaRegistryCluster.js","sourceRoot":"","sources":["../getSchemaRegistryCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IAEpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wEAAwE,EAAE;QACnG,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,4DAQC;AAyDD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,wBAAwB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnF,CAAC;AAFD,wEAEC"}
|
|
@@ -29,6 +29,8 @@ export interface GetSchemaRegistryRegionArgs {
|
|
|
29
29
|
cloud: string;
|
|
30
30
|
/**
|
|
31
31
|
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
32
|
+
*
|
|
33
|
+
* > **Note:** See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to manually find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
32
34
|
*/
|
|
33
35
|
package: string;
|
|
34
36
|
/**
|
|
@@ -78,6 +80,8 @@ export interface GetSchemaRegistryRegionOutputArgs {
|
|
|
78
80
|
cloud: pulumi.Input<string>;
|
|
79
81
|
/**
|
|
80
82
|
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
83
|
+
*
|
|
84
|
+
* > **Note:** See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to manually find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
81
85
|
*/
|
|
82
86
|
package: pulumi.Input<string>;
|
|
83
87
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSchemaRegistryRegion.js","sourceRoot":"","sources":["../getSchemaRegistryRegion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;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;
|
|
1
|
+
{"version":3,"file":"getSchemaRegistryRegion.js","sourceRoot":"","sources":["../getSchemaRegistryRegion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;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;;;;;;;;;;;;;;;;;;GAkBG;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/getServiceAccount.d.ts
CHANGED
|
@@ -27,6 +27,8 @@ export declare function getServiceAccount(args?: GetServiceAccountArgs, opts?: p
|
|
|
27
27
|
export interface GetServiceAccountArgs {
|
|
28
28
|
/**
|
|
29
29
|
* A human-readable name for the Service Account.
|
|
30
|
+
*
|
|
31
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
30
32
|
*/
|
|
31
33
|
displayName?: string;
|
|
32
34
|
/**
|
|
@@ -87,6 +89,8 @@ export declare function getServiceAccountOutput(args?: GetServiceAccountOutputAr
|
|
|
87
89
|
export interface GetServiceAccountOutputArgs {
|
|
88
90
|
/**
|
|
89
91
|
* A human-readable name for the Service Account.
|
|
92
|
+
*
|
|
93
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
90
94
|
*/
|
|
91
95
|
displayName?: pulumi.Input<string>;
|
|
92
96
|
/**
|
package/getServiceAccount.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServiceAccount.js","sourceRoot":"","sources":["../getServiceAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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;AARD,8CAQC;
|
|
1
|
+
{"version":3,"file":"getServiceAccount.js","sourceRoot":"","sources":["../getServiceAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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;AARD,8CAQC;AA2CD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
|
package/getSubjectMode.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export interface GetSubjectModeArgs {
|
|
|
14
14
|
schemaRegistryCluster?: inputs.GetSubjectModeSchemaRegistryCluster;
|
|
15
15
|
/**
|
|
16
16
|
* The name of the subject (in other words, the namespace), representing the subject under which the schema will be registered, for example, `test-subject`.
|
|
17
|
+
*
|
|
18
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
17
19
|
*/
|
|
18
20
|
subjectName: string;
|
|
19
21
|
}
|
|
@@ -47,6 +49,8 @@ export interface GetSubjectModeOutputArgs {
|
|
|
47
49
|
schemaRegistryCluster?: pulumi.Input<inputs.GetSubjectModeSchemaRegistryClusterArgs>;
|
|
48
50
|
/**
|
|
49
51
|
* The name of the subject (in other words, the namespace), representing the subject under which the schema will be registered, for example, `test-subject`.
|
|
52
|
+
*
|
|
53
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
50
54
|
*/
|
|
51
55
|
subjectName: pulumi.Input<string>;
|
|
52
56
|
}
|
package/getSubjectMode.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSubjectMode.js","sourceRoot":"","sources":["../getSubjectMode.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,wCASC;
|
|
1
|
+
{"version":3,"file":"getSubjectMode.js","sourceRoot":"","sources":["../getSubjectMode.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,wCASC;AAqCD,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|
package/getTag.d.ts
CHANGED
|
@@ -8,7 +8,9 @@ export declare function getTag(args: GetTagArgs, opts?: pulumi.InvokeOptions): P
|
|
|
8
8
|
export interface GetTagArgs {
|
|
9
9
|
credentials?: inputs.GetTagCredentials;
|
|
10
10
|
/**
|
|
11
|
-
* The name of the tag, for example, `PII`.
|
|
11
|
+
* The name of the tag, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
12
|
+
*
|
|
13
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
12
14
|
*/
|
|
13
15
|
name: string;
|
|
14
16
|
/**
|
|
@@ -49,7 +51,9 @@ export declare function getTagOutput(args: GetTagOutputArgs, opts?: pulumi.Invok
|
|
|
49
51
|
export interface GetTagOutputArgs {
|
|
50
52
|
credentials?: pulumi.Input<inputs.GetTagCredentialsArgs>;
|
|
51
53
|
/**
|
|
52
|
-
* The name of the tag, for example, `PII`.
|
|
54
|
+
* The name of the tag, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
55
|
+
*
|
|
56
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
53
57
|
*/
|
|
54
58
|
name: pulumi.Input<string>;
|
|
55
59
|
/**
|
package/getTag.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTag.js","sourceRoot":"","sources":["../getTag.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,MAAM,CAAC,IAAgB,EAAE,IAA2B;IAEhE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;KACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,wBASC;
|
|
1
|
+
{"version":3,"file":"getTag.js","sourceRoot":"","sources":["../getTag.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,MAAM,CAAC,IAAgB,EAAE,IAA2B;IAEhE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;KACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,wBASC;AA6CD,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACjE,CAAC;AAFD,oCAEC"}
|
package/getTagBinding.d.ts
CHANGED
|
@@ -13,6 +13,8 @@ export interface GetTagBindingArgs {
|
|
|
13
13
|
entityName: string;
|
|
14
14
|
/**
|
|
15
15
|
* The entity type, for example, `srSchema`.
|
|
16
|
+
*
|
|
17
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
16
18
|
*/
|
|
17
19
|
entityType: string;
|
|
18
20
|
/**
|
|
@@ -21,7 +23,7 @@ export interface GetTagBindingArgs {
|
|
|
21
23
|
restEndpoint?: string;
|
|
22
24
|
schemaRegistryCluster?: inputs.GetTagBindingSchemaRegistryCluster;
|
|
23
25
|
/**
|
|
24
|
-
* The name of the tag to be applied, for example, `PII`.
|
|
26
|
+
* The name of the tag to be applied, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
25
27
|
*/
|
|
26
28
|
tagName: string;
|
|
27
29
|
}
|
|
@@ -52,6 +54,8 @@ export interface GetTagBindingOutputArgs {
|
|
|
52
54
|
entityName: pulumi.Input<string>;
|
|
53
55
|
/**
|
|
54
56
|
* The entity type, for example, `srSchema`.
|
|
57
|
+
*
|
|
58
|
+
* > **Note:** A Schema Registry API key consists of a key and a secret. Schema Registry API keys are required to interact with Schema Registry clusters in Confluent Cloud. Each Schema Registry API key is valid for one specific Schema Registry cluster.
|
|
55
59
|
*/
|
|
56
60
|
entityType: pulumi.Input<string>;
|
|
57
61
|
/**
|
|
@@ -60,7 +64,7 @@ export interface GetTagBindingOutputArgs {
|
|
|
60
64
|
restEndpoint?: pulumi.Input<string>;
|
|
61
65
|
schemaRegistryCluster?: pulumi.Input<inputs.GetTagBindingSchemaRegistryClusterArgs>;
|
|
62
66
|
/**
|
|
63
|
-
* The name of the tag to be applied, for example, `PII`.
|
|
67
|
+
* The name of the tag to be applied, for example, `PII`. The name must not be empty and consist of a letter followed by a sequence of letter, number, space, or _ characters.
|
|
64
68
|
*/
|
|
65
69
|
tagName: pulumi.Input<string>;
|
|
66
70
|
}
|