UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

118 lines (117 loc) 4.44 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Retrieves information about a gallery inVMAccessControlProfile version. * * Uses Azure REST API version 2024-03-03. */ export declare function getGalleryInVMAccessControlProfileVersion(args: GetGalleryInVMAccessControlProfileVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetGalleryInVMAccessControlProfileVersionResult>; export interface GetGalleryInVMAccessControlProfileVersionArgs { /** * The name of the Shared Image Gallery. */ galleryName: string; /** * The name of the gallery inVMAccessControlProfile to be retrieved. */ inVMAccessControlProfileName: string; /** * The name of the gallery inVMAccessControlProfile version to be retrieved. */ inVMAccessControlProfileVersionName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Specifies information about the gallery inVMAccessControlProfile version that you want to create or update. */ export interface GetGalleryInVMAccessControlProfileVersionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * This property allows you to specify if the requests will be allowed to access the host endpoints. Possible values are: 'Allow', 'Deny'. */ readonly defaultAccess: string; /** * If set to true, Virtual Machines deployed from the latest version of the Resource Profile won't use this Profile version. */ readonly excludeFromLatest?: boolean; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * The geo-location where the resource lives */ readonly location: string; /** * This property allows you to specify whether the access control rules are in Audit mode, in Enforce mode or Disabled. Possible values are: 'Audit', 'Enforce' or 'Disabled'. */ readonly mode: string; /** * The name of the resource */ readonly name: string; /** * The provisioning state, which only appears in the response. */ readonly provisioningState: string; /** * The timestamp for when the Resource Profile Version is published. */ readonly publishedDate: string; /** * This is the replication status of the gallery image version. */ readonly replicationStatus: outputs.compute.ReplicationStatusResponse; /** * This is the Access Control Rules specification for an inVMAccessControlProfile version. */ readonly rules?: outputs.compute.AccessControlRulesResponse; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.compute.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The target regions where the Resource Profile version is going to be replicated to. This property is updatable. */ readonly targetLocations?: outputs.compute.TargetRegionResponse[]; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Retrieves information about a gallery inVMAccessControlProfile version. * * Uses Azure REST API version 2024-03-03. */ export declare function getGalleryInVMAccessControlProfileVersionOutput(args: GetGalleryInVMAccessControlProfileVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGalleryInVMAccessControlProfileVersionResult>; export interface GetGalleryInVMAccessControlProfileVersionOutputArgs { /** * The name of the Shared Image Gallery. */ galleryName: pulumi.Input<string>; /** * The name of the gallery inVMAccessControlProfile to be retrieved. */ inVMAccessControlProfileName: pulumi.Input<string>; /** * The name of the gallery inVMAccessControlProfile version to be retrieved. */ inVMAccessControlProfileVersionName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }