@pulumi/confluentcloud 1.11.0 → 1.12.0-alpha.1680558618

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/types/output.d.ts CHANGED
@@ -314,6 +314,46 @@ export interface GetNetworkGcp {
314
314
  */
315
315
  vpcNetwork: string;
316
316
  }
317
+ export interface GetNetworkLinkEndpointEnvironment {
318
+ /**
319
+ * The ID of the Environment that the Network Link Endpoint belongs to, for example, `env-xyz456`.
320
+ */
321
+ id: string;
322
+ }
323
+ export interface GetNetworkLinkEndpointNetwork {
324
+ /**
325
+ * The ID of the Environment that the Network Link Endpoint belongs to, for example, `env-xyz456`.
326
+ */
327
+ id: string;
328
+ }
329
+ export interface GetNetworkLinkEndpointNetworkLinkService {
330
+ /**
331
+ * The ID of the Environment that the Network Link Endpoint belongs to, for example, `env-xyz456`.
332
+ */
333
+ id: string;
334
+ }
335
+ export interface GetNetworkLinkServiceAccept {
336
+ /**
337
+ * (Optional List of Strings) List of environments ids from which connections can be accepted. All networks within the list of environment will be allowed.
338
+ */
339
+ environments: string[];
340
+ /**
341
+ * (Optional List of Strings) List of network ids from which connections can be accepted.
342
+ */
343
+ networks: string[];
344
+ }
345
+ export interface GetNetworkLinkServiceEnvironment {
346
+ /**
347
+ * The ID of the Environment that the Network Link Service belongs to, for example, `env-1234`.
348
+ */
349
+ id: string;
350
+ }
351
+ export interface GetNetworkLinkServiceNetwork {
352
+ /**
353
+ * The ID of the Environment that the Network Link Service belongs to, for example, `env-1234`.
354
+ */
355
+ id: string;
356
+ }
317
357
  export interface GetNetworkZoneInfo {
318
358
  /**
319
359
  * (Required String) The IPv4 CIDR block to be used for the network. Must be `/27`. Required for VPC peering and AWS TransitGateway.
@@ -845,6 +885,46 @@ export interface NetworkGcp {
845
885
  */
846
886
  vpcNetwork: string;
847
887
  }
888
+ export interface NetworkLinkEndpointEnvironment {
889
+ /**
890
+ * The ID of the Environment that the Network Link Endpoint belongs to, for example, `env-xyz456`.
891
+ */
892
+ id: string;
893
+ }
894
+ export interface NetworkLinkEndpointNetwork {
895
+ /**
896
+ * The ID of the Environment that the Network Link Endpoint belongs to, for example, `env-xyz456`.
897
+ */
898
+ id: string;
899
+ }
900
+ export interface NetworkLinkEndpointNetworkLinkService {
901
+ /**
902
+ * The ID of the Environment that the Network Link Endpoint belongs to, for example, `env-xyz456`.
903
+ */
904
+ id: string;
905
+ }
906
+ export interface NetworkLinkServiceAccept {
907
+ /**
908
+ * List of environments ids from which connections can be accepted. All networks within the list of environment will be allowed.
909
+ */
910
+ environments: string[];
911
+ /**
912
+ * List of network ids from which connections can be accepted.
913
+ */
914
+ networks: string[];
915
+ }
916
+ export interface NetworkLinkServiceEnvironment {
917
+ /**
918
+ * The ID of the Network that the Network Link Service belongs to, for example, `n-abc123`.
919
+ */
920
+ id: string;
921
+ }
922
+ export interface NetworkLinkServiceNetwork {
923
+ /**
924
+ * The ID of the Network that the Network Link Service belongs to, for example, `n-abc123`.
925
+ */
926
+ id: string;
927
+ }
848
928
  export interface NetworkZoneInfo {
849
929
  /**
850
930
  * The IPv4 CIDR block to be used for the network. Must be `/27`. Required for VPC peering and AWS TransitGateway.