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

82 lines (81 loc) 3.6 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; 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. In version 2.x of the Azure Native provider, it used API version 2020-04-01-preview. */ export declare class ConfigurationProfile extends pulumi.CustomResource { /** * Get an existing ConfigurationProfile resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ConfigurationProfile; /** * Returns true if the given object is an instance of ConfigurationProfile. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ConfigurationProfile; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * The identity block returned by ARM resource that supports managed identity. */ readonly identity: pulumi.Output<outputs.changeanalysis.ResourceIdentityResponse | undefined>; /** * The location where the resource is to be deployed. */ readonly location: pulumi.Output<string | undefined>; /** * The name of the resource */ readonly name: pulumi.Output<string>; /** * The properties of a configuration profile. */ readonly properties: pulumi.Output<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: pulumi.Output<outputs.changeanalysis.SystemDataResponse | undefined>; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output<string>; /** * Create a ConfigurationProfile resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: ConfigurationProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ConfigurationProfile resource. */ export interface ConfigurationProfileArgs { /** * The identity block returned by ARM resource that supports managed identity. */ identity?: pulumi.Input<inputs.changeanalysis.ResourceIdentityArgs>; /** * The location where the resource is to be deployed. */ location?: pulumi.Input<string>; /** * The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten. */ profileName?: pulumi.Input<string>; /** * The properties of a configuration profile. */ properties?: pulumi.Input<inputs.changeanalysis.ConfigurationProfileResourcePropertiesArgs>; }