@pulumi/confluentcloud 1.46.0-alpha.1715336015 → 1.46.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/accessPoint.d.ts CHANGED
@@ -13,18 +13,31 @@ import * as outputs from "./types/output";
13
13
  * import * as confluentcloud from "@pulumi/confluentcloud";
14
14
  *
15
15
  * const development = new confluentcloud.Environment("development", {displayName: "Development"});
16
- * const main = new confluentcloud.AccessPoint("main", {
16
+ * const aws = new confluentcloud.AccessPoint("aws", {
17
17
  * displayName: "access_point",
18
18
  * environment: {
19
19
  * id: development.id,
20
20
  * },
21
21
  * gateway: {
22
- * id: mainConfluentNetwork.gateway[0].id,
22
+ * id: main.gateway[0].id,
23
23
  * },
24
24
  * awsEgressPrivateLinkEndpoint: {
25
25
  * vpcEndpointServiceName: "com.amazonaws.vpce.us-west-2.vpce-svc-00000000000000000",
26
26
  * },
27
27
  * });
28
+ * const azure = new confluentcloud.AccessPoint("azure", {
29
+ * displayName: "access_point",
30
+ * environment: {
31
+ * id: development.id,
32
+ * },
33
+ * gateway: {
34
+ * id: main.gateway[0].id,
35
+ * },
36
+ * azureEgressPrivateLinkEndpoint: {
37
+ * privateLinkServiceResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/s-abcde/providers/Microsoft.Network/privateLinkServices/pls-plt-abcdef-az3",
38
+ * privateLinkSubresourceName: "sqlServer",
39
+ * },
40
+ * });
28
41
  * ```
29
42
  *
30
43
  * ## Import
@@ -57,7 +70,14 @@ export declare class AccessPoint extends pulumi.CustomResource {
57
70
  * when multiple copies of the Pulumi SDK have been loaded into the same process.
58
71
  */
59
72
  static isInstance(obj: any): obj is AccessPoint;
73
+ /**
74
+ * (Optional Configuration Block) supports the following:
75
+ */
60
76
  readonly awsEgressPrivateLinkEndpoint: pulumi.Output<outputs.AccessPointAwsEgressPrivateLinkEndpoint | undefined>;
77
+ /**
78
+ * (Optional Configuration Block) supports the following:
79
+ */
80
+ readonly azureEgressPrivateLinkEndpoint: pulumi.Output<outputs.AccessPointAzureEgressPrivateLinkEndpoint | undefined>;
61
81
  /**
62
82
  * The name of the Access Point.
63
83
  */
@@ -80,7 +100,14 @@ export declare class AccessPoint extends pulumi.CustomResource {
80
100
  * Input properties used for looking up and filtering AccessPoint resources.
81
101
  */
82
102
  export interface AccessPointState {
103
+ /**
104
+ * (Optional Configuration Block) supports the following:
105
+ */
83
106
  awsEgressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAwsEgressPrivateLinkEndpoint>;
107
+ /**
108
+ * (Optional Configuration Block) supports the following:
109
+ */
110
+ azureEgressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAzureEgressPrivateLinkEndpoint>;
84
111
  /**
85
112
  * The name of the Access Point.
86
113
  */
@@ -95,7 +122,14 @@ export interface AccessPointState {
95
122
  * The set of arguments for constructing a AccessPoint resource.
96
123
  */
97
124
  export interface AccessPointArgs {
125
+ /**
126
+ * (Optional Configuration Block) supports the following:
127
+ */
98
128
  awsEgressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAwsEgressPrivateLinkEndpoint>;
129
+ /**
130
+ * (Optional Configuration Block) supports the following:
131
+ */
132
+ azureEgressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAzureEgressPrivateLinkEndpoint>;
99
133
  /**
100
134
  * The name of the Access Point.
101
135
  */
package/accessPoint.js CHANGED
@@ -17,18 +17,31 @@ const utilities = require("./utilities");
17
17
  * import * as confluentcloud from "@pulumi/confluentcloud";
18
18
  *
19
19
  * const development = new confluentcloud.Environment("development", {displayName: "Development"});
20
- * const main = new confluentcloud.AccessPoint("main", {
20
+ * const aws = new confluentcloud.AccessPoint("aws", {
21
21
  * displayName: "access_point",
22
22
  * environment: {
23
23
  * id: development.id,
24
24
  * },
25
25
  * gateway: {
26
- * id: mainConfluentNetwork.gateway[0].id,
26
+ * id: main.gateway[0].id,
27
27
  * },
28
28
  * awsEgressPrivateLinkEndpoint: {
29
29
  * vpcEndpointServiceName: "com.amazonaws.vpce.us-west-2.vpce-svc-00000000000000000",
30
30
  * },
31
31
  * });
32
+ * const azure = new confluentcloud.AccessPoint("azure", {
33
+ * displayName: "access_point",
34
+ * environment: {
35
+ * id: development.id,
36
+ * },
37
+ * gateway: {
38
+ * id: main.gateway[0].id,
39
+ * },
40
+ * azureEgressPrivateLinkEndpoint: {
41
+ * privateLinkServiceResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/s-abcde/providers/Microsoft.Network/privateLinkServices/pls-plt-abcdef-az3",
42
+ * privateLinkSubresourceName: "sqlServer",
43
+ * },
44
+ * });
32
45
  * ```
33
46
  *
34
47
  * ## Import
@@ -74,6 +87,7 @@ class AccessPoint extends pulumi.CustomResource {
74
87
  if (opts.id) {
75
88
  const state = argsOrState;
76
89
  resourceInputs["awsEgressPrivateLinkEndpoint"] = state ? state.awsEgressPrivateLinkEndpoint : undefined;
90
+ resourceInputs["azureEgressPrivateLinkEndpoint"] = state ? state.azureEgressPrivateLinkEndpoint : undefined;
77
91
  resourceInputs["displayName"] = state ? state.displayName : undefined;
78
92
  resourceInputs["environment"] = state ? state.environment : undefined;
79
93
  resourceInputs["gateway"] = state ? state.gateway : undefined;
@@ -87,6 +101,7 @@ class AccessPoint extends pulumi.CustomResource {
87
101
  throw new Error("Missing required property 'gateway'");
88
102
  }
89
103
  resourceInputs["awsEgressPrivateLinkEndpoint"] = args ? args.awsEgressPrivateLinkEndpoint : undefined;
104
+ resourceInputs["azureEgressPrivateLinkEndpoint"] = args ? args.azureEgressPrivateLinkEndpoint : undefined;
90
105
  resourceInputs["displayName"] = args ? args.displayName : undefined;
91
106
  resourceInputs["environment"] = args ? args.environment : undefined;
92
107
  resourceInputs["gateway"] = args ? args.gateway : undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"accessPoint.js","sourceRoot":"","sources":["../accessPoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAqBD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AAvEL,kCAwEC;AA1DG,gBAAgB;AACO,wBAAY,GAAG,8CAA8C,CAAC"}
1
+ {"version":3,"file":"accessPoint.js","sourceRoot":"","sources":["../accessPoint.ts"],"names":[],"mappings":"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"}
@@ -37,9 +37,13 @@ export interface GetAccessPointArgs {
37
37
  */
38
38
  export interface GetAccessPointResult {
39
39
  /**
40
- * (Required Configuration Block) supports the following:
40
+ * (Optional Configuration Block) supports the following:
41
41
  */
42
42
  readonly awsEgressPrivateLinkEndpoints: outputs.GetAccessPointAwsEgressPrivateLinkEndpoint[];
43
+ /**
44
+ * (Optional Configuration Block) supports the following:
45
+ */
46
+ readonly azureEgressPrivateLinkEndpoints: outputs.GetAccessPointAzureEgressPrivateLinkEndpoint[];
43
47
  /**
44
48
  * (Required String) A human-readable name for the Access Point.
45
49
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getAccessPoint.js","sourceRoot":"","sources":["../getAccessPoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AAmCD;;;;;;;;;;;;;;;;;;;GAmBG;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"}
1
+ {"version":3,"file":"getAccessPoint.js","sourceRoot":"","sources":["../getAccessPoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AAuCD;;;;;;;;;;;;;;;;;;;GAmBG;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/getGateway.d.ts CHANGED
@@ -44,6 +44,14 @@ export interface GetGatewayResult {
44
44
  * (Optional Configuration Block) supports the following:
45
45
  */
46
46
  readonly awsPeeringGateways: outputs.GetGatewayAwsPeeringGateway[];
47
+ /**
48
+ * (Optional Configuration Block) supports the following:
49
+ */
50
+ readonly azureEgressPrivateLinkGateways: outputs.GetGatewayAzureEgressPrivateLinkGateway[];
51
+ /**
52
+ * (Optional Configuration Block) supports the following:
53
+ */
54
+ readonly azurePeeringGateways: outputs.GetGatewayAzurePeeringGateway[];
47
55
  /**
48
56
  * (Required String) A human-readable name for the Gateway.
49
57
  */
package/getGateway.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getGateway.js","sourceRoot":"","sources":["../getGateway.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;AAgCD;;;;;;;;;;;;;;;;;;;GAmBG;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"}
1
+ {"version":3,"file":"getGateway.js","sourceRoot":"","sources":["../getGateway.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;AAwCD;;;;;;;;;;;;;;;;;;;GAmBG;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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/confluentcloud",
3
- "version": "v1.46.0-alpha.1715336015+3089c36",
3
+ "version": "v1.46.0",
4
4
  "description": "A Pulumi package for creating and managing Confluent cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
package/types/input.d.ts CHANGED
@@ -18,6 +18,28 @@ export interface AccessPointAwsEgressPrivateLinkEndpoint {
18
18
  */
19
19
  vpcEndpointServiceName: pulumi.Input<string>;
20
20
  }
21
+ export interface AccessPointAzureEgressPrivateLinkEndpoint {
22
+ /**
23
+ * (Required String) Domain of the Private Endpoint (if any) that is connected to the Private Link service.
24
+ */
25
+ privateEndpointDomain?: pulumi.Input<string>;
26
+ /**
27
+ * (Required String) IP address of the Private Endpoint (if any) that is connected to the Private Link service.
28
+ */
29
+ privateEndpointIpAddress?: pulumi.Input<string>;
30
+ /**
31
+ * (Required String) Resource ID of the Private Endpoint (if any) that is connected to the Private Link service.
32
+ */
33
+ privateEndpointResourceId?: pulumi.Input<string>;
34
+ /**
35
+ * Resource ID of the Azure Private Link service.
36
+ */
37
+ privateLinkServiceResourceId: pulumi.Input<string>;
38
+ /**
39
+ * Name of the subresource for the Private Endpoint to connect to.
40
+ */
41
+ privateLinkSubresourceName?: pulumi.Input<string>;
42
+ }
21
43
  export interface AccessPointEnvironment {
22
44
  /**
23
45
  * The ID of the Environment that the Access Point belongs to, for example, `env-abc123`.
package/types/output.d.ts CHANGED
@@ -17,6 +17,28 @@ export interface AccessPointAwsEgressPrivateLinkEndpoint {
17
17
  */
18
18
  vpcEndpointServiceName: string;
19
19
  }
20
+ export interface AccessPointAzureEgressPrivateLinkEndpoint {
21
+ /**
22
+ * (Required String) Domain of the Private Endpoint (if any) that is connected to the Private Link service.
23
+ */
24
+ privateEndpointDomain: string;
25
+ /**
26
+ * (Required String) IP address of the Private Endpoint (if any) that is connected to the Private Link service.
27
+ */
28
+ privateEndpointIpAddress: string;
29
+ /**
30
+ * (Required String) Resource ID of the Private Endpoint (if any) that is connected to the Private Link service.
31
+ */
32
+ privateEndpointResourceId: string;
33
+ /**
34
+ * Resource ID of the Azure Private Link service.
35
+ */
36
+ privateLinkServiceResourceId: string;
37
+ /**
38
+ * Name of the subresource for the Private Endpoint to connect to.
39
+ */
40
+ privateLinkSubresourceName?: string;
41
+ }
20
42
  export interface AccessPointEnvironment {
21
43
  /**
22
44
  * The ID of the Environment that the Access Point belongs to, for example, `env-abc123`.
@@ -409,6 +431,28 @@ export interface GetAccessPointAwsEgressPrivateLinkEndpoint {
409
431
  */
410
432
  vpcEndpointServiceName: string;
411
433
  }
434
+ export interface GetAccessPointAzureEgressPrivateLinkEndpoint {
435
+ /**
436
+ * (Required String) Domain of the Private Endpoint (if any) that is connected to the Private Link service.
437
+ */
438
+ privateEndpointDomain: string;
439
+ /**
440
+ * (Required String) IP address of the Private Endpoint (if any) that is connected to the Private Link service.
441
+ */
442
+ privateEndpointIpAddress: string;
443
+ /**
444
+ * (Required String) Resource ID of the Private Endpoint (if any) that is connected to the Private Link service.
445
+ */
446
+ privateEndpointResourceId: string;
447
+ /**
448
+ * (Required String) Resource ID of the Azure Private Link service.
449
+ */
450
+ privateLinkServiceResourceId: string;
451
+ /**
452
+ * (Required String) Name of the subresource for the Private Endpoint to connect to.
453
+ */
454
+ privateLinkSubresourceName: string;
455
+ }
412
456
  export interface GetAccessPointEnvironment {
413
457
  /**
414
458
  * The ID of the Environment that the Access Point belongs to, for example, `env-123abc`.
@@ -561,13 +605,29 @@ export interface GetGatewayAwsEgressPrivateLinkGateway {
561
605
  */
562
606
  principalArn: string;
563
607
  /**
564
- * (Required String) AWS region of the Peering Gateway.
608
+ * (Required String) Azure region of the Peering Gateway.
565
609
  */
566
610
  region: string;
567
611
  }
568
612
  export interface GetGatewayAwsPeeringGateway {
569
613
  /**
570
- * (Required String) AWS region of the Peering Gateway.
614
+ * (Required String) Azure region of the Peering Gateway.
615
+ */
616
+ region: string;
617
+ }
618
+ export interface GetGatewayAzureEgressPrivateLinkGateway {
619
+ /**
620
+ * (Required String) Azure region of the Peering Gateway.
621
+ */
622
+ region: string;
623
+ /**
624
+ * (Required String) The Azure Subscription ID associated with the Confluent Cloud VPC.
625
+ */
626
+ subscription: string;
627
+ }
628
+ export interface GetGatewayAzurePeeringGateway {
629
+ /**
630
+ * (Required String) Azure region of the Peering Gateway.
571
631
  */
572
632
  region: string;
573
633
  }