import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Vm Cluster Networks in Oracle Cloud Infrastructure Datacc service. * * Obtain a list of VM cluster networks on Database Infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterNetworks = oci.oci.getDataccVmClusterNetworks({ * compartmentId: compartmentId, * displayName: vmClusterNetworkDisplayName, * infrastructureId: testInfrastructure.id, * isScanEnabled: vmClusterNetworkIsScanEnabled === "true", * nodeCount: Number(vmClusterNetworkNodeCount), * states: vmClusterNetworkState, * vmNetworkConsumerType: vmClusterNetworkVmNetworkConsumerType, * }); * ``` */ export declare function getDataccVmClusterNetworks(args: GetDataccVmClusterNetworksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDataccVmClusterNetworks. */ export interface GetDataccVmClusterNetworksArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. For list operations, you may provide the tenant [OCID] in this field. When a tenant OCID is provided, it will be validated against the caller's tenant and then treated as tenant scope (compartmentId filtering is not applied). */ compartmentId: string; /** * A filter to return resources that match the entire display name given. The match is case sensitive. */ displayName?: string; filters?: inputs.oci.GetDataccVmClusterNetworksFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Infrastructure. */ infrastructureId?: string; /** * A filter to return VM cluster network resources that matches the specified value. */ isScanEnabled?: boolean; /** * Count of virtual machines in this VM cluster. */ nodeCount?: number; /** * A filter to return resources that match the specified lifecycle state. */ states?: string[]; /** * VM network consumer type. */ vmNetworkConsumerType?: string; } /** * A collection of values returned by getDataccVmClusterNetworks. */ export interface GetDataccVmClusterNetworksResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the VM cluster network. */ readonly compartmentId: string; /** * The user-friendly name for the VM cluster network. The name does not need to be unique. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDataccVmClusterNetworksFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Infrastructure. */ readonly infrastructureId?: string; /** * Indicates whether Single Client Access Name (SCAN) is enabled on the VM cluster. */ readonly isScanEnabled?: boolean; /** * Count of virtual machines in this VM cluster. */ readonly nodeCount?: number; /** * The current state of the virtual machine cluster network. */ readonly states?: string[]; /** * The list of vm_cluster_network_collection. */ readonly vmClusterNetworkCollections: outputs.oci.GetDataccVmClusterNetworksVmClusterNetworkCollection[]; readonly vmNetworkConsumerType?: string; } /** * This data source provides the list of Vm Cluster Networks in Oracle Cloud Infrastructure Datacc service. * * Obtain a list of VM cluster networks on Database Infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterNetworks = oci.oci.getDataccVmClusterNetworks({ * compartmentId: compartmentId, * displayName: vmClusterNetworkDisplayName, * infrastructureId: testInfrastructure.id, * isScanEnabled: vmClusterNetworkIsScanEnabled === "true", * nodeCount: Number(vmClusterNetworkNodeCount), * states: vmClusterNetworkState, * vmNetworkConsumerType: vmClusterNetworkVmNetworkConsumerType, * }); * ``` */ export declare function getDataccVmClusterNetworksOutput(args: GetDataccVmClusterNetworksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDataccVmClusterNetworks. */ export interface GetDataccVmClusterNetworksOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. For list operations, you may provide the tenant [OCID] in this field. When a tenant OCID is provided, it will be validated against the caller's tenant and then treated as tenant scope (compartmentId filtering is not applied). */ compartmentId: pulumi.Input; /** * A filter to return resources that match the entire display name given. The match is case sensitive. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Infrastructure. */ infrastructureId?: pulumi.Input; /** * A filter to return VM cluster network resources that matches the specified value. */ isScanEnabled?: pulumi.Input; /** * Count of virtual machines in this VM cluster. */ nodeCount?: pulumi.Input; /** * A filter to return resources that match the specified lifecycle state. */ states?: pulumi.Input[] | undefined>; /** * VM network consumer type. */ vmNetworkConsumerType?: pulumi.Input; } //# sourceMappingURL=getDataccVmClusterNetworks.d.ts.map