@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.94 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the custom rollout details.
*
* Uses Azure REST API version 2024-09-01.
*/
export declare function getCustomRollout(args: GetCustomRolloutArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomRolloutResult>;
export interface GetCustomRolloutArgs {
/**
* The name of the resource provider hosted within ProviderHub.
*/
providerNamespace: string;
/**
* The rollout name.
*/
rolloutName: string;
}
export interface GetCustomRolloutResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* 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;
/**
* Properties of the rollout.
*/
readonly properties: outputs.providerhub.CustomRolloutPropertiesResponse;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.providerhub.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets the custom rollout details.
*
* Uses Azure REST API version 2024-09-01.
*/
export declare function getCustomRolloutOutput(args: GetCustomRolloutOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCustomRolloutResult>;
export interface GetCustomRolloutOutputArgs {
/**
* The name of the resource provider hosted within ProviderHub.
*/
providerNamespace: pulumi.Input<string>;
/**
* The rollout name.
*/
rolloutName: pulumi.Input<string>;
}