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

64 lines (63 loc) 2.66 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * A profile object that contains change analysis configuration, such as notification settings, for this subscription * * Uses Azure REST API version 2020-04-01-preview. */ export declare function getConfigurationProfile(args: GetConfigurationProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigurationProfileResult>; export interface GetConfigurationProfileArgs { /** * The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten. */ profileName: string; } /** * A profile object that contains change analysis configuration, such as notification settings, for this subscription */ export interface GetConfigurationProfileResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * The identity block returned by ARM resource that supports managed identity. */ readonly identity?: outputs.changeanalysis.ResourceIdentityResponse; /** * The location where the resource is to be deployed. */ readonly location?: string; /** * The name of the resource */ readonly name: string; /** * The properties of a configuration profile. */ readonly properties: outputs.changeanalysis.ConfigurationProfileResourcePropertiesResponse; /** * Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources */ readonly systemData?: outputs.changeanalysis.SystemDataResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * A profile object that contains change analysis configuration, such as notification settings, for this subscription * * Uses Azure REST API version 2020-04-01-preview. */ export declare function getConfigurationProfileOutput(args: GetConfigurationProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfigurationProfileResult>; export interface GetConfigurationProfileOutputArgs { /** * The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten. */ profileName: pulumi.Input<string>; }