@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 4.46 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get ArcSetting resource details of HCI Cluster.
*
* Uses Azure REST API version 2024-04-01.
*
* Other available API versions: 2022-12-15-preview, 2023-02-01, 2023-03-01, 2023-06-01, 2023-08-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01, 2024-02-15-preview, 2024-09-01-preview, 2024-12-01-preview, 2025-02-01-preview, 2025-09-15-preview, 2025-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native azurestackhci [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getArcSetting(args: GetArcSettingArgs, opts?: pulumi.InvokeOptions): Promise<GetArcSettingResult>;
export interface GetArcSettingArgs {
/**
* The name of the proxy resource holding details of HCI ArcSetting information.
*/
arcSettingName: string;
/**
* The name of the cluster.
*/
clusterName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* ArcSetting details.
*/
export interface GetArcSettingResult {
/**
* Aggregate state of Arc agent across the nodes in this HCI cluster.
*/
readonly aggregateState: string;
/**
* App id of arc AAD identity.
*/
readonly arcApplicationClientId?: string;
/**
* Object id of arc AAD identity.
*/
readonly arcApplicationObjectId?: string;
/**
* Tenant id of arc AAD identity.
*/
readonly arcApplicationTenantId?: string;
/**
* The resource group that hosts the Arc agents, ie. Hybrid Compute Machine resources.
*/
readonly arcInstanceResourceGroup?: string;
/**
* Object id of arc AAD service principal.
*/
readonly arcServicePrincipalObjectId?: string;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* contains connectivity related configuration for ARC resources
*/
readonly connectivityProperties?: outputs.azurestackhci.ArcConnectivityPropertiesResponse[];
/**
* Properties for each of the default extensions category
*/
readonly defaultExtensions: outputs.azurestackhci.DefaultExtensionDetailsResponse[];
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* State of Arc agent in each of the nodes.
*/
readonly perNodeDetails: outputs.azurestackhci.PerNodeStateResponse[];
/**
* Provisioning state of the ArcSetting proxy resource.
*/
readonly provisioningState: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.azurestackhci.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get ArcSetting resource details of HCI Cluster.
*
* Uses Azure REST API version 2024-04-01.
*
* Other available API versions: 2022-12-15-preview, 2023-02-01, 2023-03-01, 2023-06-01, 2023-08-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01, 2024-02-15-preview, 2024-09-01-preview, 2024-12-01-preview, 2025-02-01-preview, 2025-09-15-preview, 2025-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native azurestackhci [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getArcSettingOutput(args: GetArcSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetArcSettingResult>;
export interface GetArcSettingOutputArgs {
/**
* The name of the proxy resource holding details of HCI ArcSetting information.
*/
arcSettingName: pulumi.Input<string>;
/**
* The name of the cluster.
*/
clusterName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}