@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.76 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a Vcenter
*
* Uses Azure REST API version 2023-10-01-preview.
*
* Other available API versions: 2023-06-06, 2024-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native offazure [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getVcenterController(args: GetVcenterControllerArgs, opts?: pulumi.InvokeOptions): Promise<GetVcenterControllerResult>;
export interface GetVcenterControllerArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Site name
*/
siteName: string;
/**
* VCenters name
*/
vcenterName: string;
}
/**
* A vcenter resource belonging to a site resource.
*/
export interface GetVcenterControllerResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Gets the timestamp marking vCenter creation.
*/
readonly createdTimestamp: string;
/**
* Gets the errors.
*/
readonly errors: outputs.offazure.HealthErrorDetailsResponse[];
/**
* Gets or sets the FQDN/IPAddress of the vCenter.
*/
readonly fqdn?: string;
/**
* Gets or sets the friendly name of the vCenter.
*/
readonly friendlyName?: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* Gets the instance UUID of the vCenter.
*/
readonly instanceUuid: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* Gets the performance statistics enabled on the vCenter.
*/
readonly perfStatisticsLevel: string;
/**
* Gets or sets the port of the vCenter.
*/
readonly port?: string;
/**
* The status of the last operation.
*/
readonly provisioningState?: string;
/**
* Gets or sets the run as account ID of the vCenter.
*/
readonly runAsAccountId?: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.offazure.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
/**
* Gets the timestamp marking last updated on the vCenter.
*/
readonly updatedTimestamp: string;
/**
* Gets the version of the vCenter.
*/
readonly version: string;
}
/**
* Get a Vcenter
*
* Uses Azure REST API version 2023-10-01-preview.
*
* Other available API versions: 2023-06-06, 2024-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native offazure [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getVcenterControllerOutput(args: GetVcenterControllerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVcenterControllerResult>;
export interface GetVcenterControllerOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Site name
*/
siteName: pulumi.Input<string>;
/**
* VCenters name
*/
vcenterName: pulumi.Input<string>;
}