1. Packages
  2. Azure Native
  3. API Docs
  4. changeanalysis
  5. ConfigurationProfile
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.changeanalysis.ConfigurationProfile

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    A profile object that contains change analysis configuration, such as notification settings, for this subscription Azure REST API version: 2020-04-01-preview. Prior API version in Azure Native 1.x: 2020-04-01-preview.

    Example Usage

    ConfigurationProfile_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var configurationProfile = new AzureNative.ChangeAnalysis.ConfigurationProfile("configurationProfile", new()
        {
            ProfileName = "default",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/changeanalysis/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := changeanalysis.NewConfigurationProfile(ctx, "configurationProfile", &changeanalysis.ConfigurationProfileArgs{
    			ProfileName: pulumi.String("default"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.changeanalysis.ConfigurationProfile;
    import com.pulumi.azurenative.changeanalysis.ConfigurationProfileArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var configurationProfile = new ConfigurationProfile("configurationProfile", ConfigurationProfileArgs.builder()        
                .profileName("default")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    configuration_profile = azure_native.changeanalysis.ConfigurationProfile("configurationProfile", profile_name="default")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const configurationProfile = new azure_native.changeanalysis.ConfigurationProfile("configurationProfile", {profileName: "default"});
    
    resources:
      configurationProfile:
        type: azure-native:changeanalysis:ConfigurationProfile
        properties:
          profileName: default
    

    ConfigurationProfile_CreateWithIdentity

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var configurationProfile = new AzureNative.ChangeAnalysis.ConfigurationProfile("configurationProfile", new()
        {
            ProfileName = "default",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/changeanalysis/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := changeanalysis.NewConfigurationProfile(ctx, "configurationProfile", &changeanalysis.ConfigurationProfileArgs{
    			ProfileName: pulumi.String("default"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.changeanalysis.ConfigurationProfile;
    import com.pulumi.azurenative.changeanalysis.ConfigurationProfileArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var configurationProfile = new ConfigurationProfile("configurationProfile", ConfigurationProfileArgs.builder()        
                .profileName("default")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    configuration_profile = azure_native.changeanalysis.ConfigurationProfile("configurationProfile", profile_name="default")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const configurationProfile = new azure_native.changeanalysis.ConfigurationProfile("configurationProfile", {profileName: "default"});
    
    resources:
      configurationProfile:
        type: azure-native:changeanalysis:ConfigurationProfile
        properties:
          profileName: default
    

    Create ConfigurationProfile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ConfigurationProfile(name: string, args?: ConfigurationProfileArgs, opts?: CustomResourceOptions);
    @overload
    def ConfigurationProfile(resource_name: str,
                             args: Optional[ConfigurationProfileArgs] = None,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ConfigurationProfile(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             identity: Optional[ResourceIdentityArgs] = None,
                             location: Optional[str] = None,
                             profile_name: Optional[str] = None,
                             properties: Optional[ConfigurationProfileResourcePropertiesArgs] = None)
    func NewConfigurationProfile(ctx *Context, name string, args *ConfigurationProfileArgs, opts ...ResourceOption) (*ConfigurationProfile, error)
    public ConfigurationProfile(string name, ConfigurationProfileArgs? args = null, CustomResourceOptions? opts = null)
    public ConfigurationProfile(String name, ConfigurationProfileArgs args)
    public ConfigurationProfile(String name, ConfigurationProfileArgs args, CustomResourceOptions options)
    
    type: azure-native:changeanalysis:ConfigurationProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ConfigurationProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ConfigurationProfileArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ConfigurationProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConfigurationProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConfigurationProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var azure_nativeConfigurationProfileResource = new AzureNative.ChangeAnalysis.ConfigurationProfile("azure-nativeConfigurationProfileResource", new()
    {
        Identity = new AzureNative.ChangeAnalysis.Inputs.ResourceIdentityArgs
        {
            Type = "string",
        },
        Location = "string",
        ProfileName = "string",
        Properties = new AzureNative.ChangeAnalysis.Inputs.ConfigurationProfileResourcePropertiesArgs
        {
            Notifications = new AzureNative.ChangeAnalysis.Inputs.NotificationSettingsArgs
            {
                ActivationState = "string",
                AzureMonitorWorkspaceProperties = new AzureNative.ChangeAnalysis.Inputs.AzureMonitorWorkspacePropertiesArgs
                {
                    IncludeChangeDetails = "string",
                    WorkspaceId = "string",
                    WorkspaceResourceId = "string",
                },
            },
        },
    });
    
    example, err := changeanalysis.NewConfigurationProfile(ctx, "azure-nativeConfigurationProfileResource", &changeanalysis.ConfigurationProfileArgs{
    Identity: &changeanalysis.ResourceIdentityArgs{
    Type: pulumi.String("string"),
    },
    Location: pulumi.String("string"),
    ProfileName: pulumi.String("string"),
    Properties: &changeanalysis.ConfigurationProfileResourcePropertiesArgs{
    Notifications: &changeanalysis.NotificationSettingsArgs{
    ActivationState: pulumi.String("string"),
    AzureMonitorWorkspaceProperties: &changeanalysis.AzureMonitorWorkspacePropertiesArgs{
    IncludeChangeDetails: pulumi.String("string"),
    WorkspaceId: pulumi.String("string"),
    WorkspaceResourceId: pulumi.String("string"),
    },
    },
    },
    })
    
    var azure_nativeConfigurationProfileResource = new ConfigurationProfile("azure-nativeConfigurationProfileResource", ConfigurationProfileArgs.builder()        
        .identity(ResourceIdentityArgs.builder()
            .type("string")
            .build())
        .location("string")
        .profileName("string")
        .properties(ConfigurationProfileResourcePropertiesArgs.builder()
            .notifications(NotificationSettingsArgs.builder()
                .activationState("string")
                .azureMonitorWorkspaceProperties(AzureMonitorWorkspacePropertiesArgs.builder()
                    .includeChangeDetails("string")
                    .workspaceId("string")
                    .workspaceResourceId("string")
                    .build())
                .build())
            .build())
        .build());
    
    azure_native_configuration_profile_resource = azure_native.changeanalysis.ConfigurationProfile("azure-nativeConfigurationProfileResource",
        identity=azure_native.changeanalysis.ResourceIdentityArgs(
            type="string",
        ),
        location="string",
        profile_name="string",
        properties=azure_native.changeanalysis.ConfigurationProfileResourcePropertiesArgs(
            notifications=azure_native.changeanalysis.NotificationSettingsArgs(
                activation_state="string",
                azure_monitor_workspace_properties=azure_native.changeanalysis.AzureMonitorWorkspacePropertiesArgs(
                    include_change_details="string",
                    workspace_id="string",
                    workspace_resource_id="string",
                ),
            ),
        ))
    
    const azure_nativeConfigurationProfileResource = new azure_native.changeanalysis.ConfigurationProfile("azure-nativeConfigurationProfileResource", {
        identity: {
            type: "string",
        },
        location: "string",
        profileName: "string",
        properties: {
            notifications: {
                activationState: "string",
                azureMonitorWorkspaceProperties: {
                    includeChangeDetails: "string",
                    workspaceId: "string",
                    workspaceResourceId: "string",
                },
            },
        },
    });
    
    type: azure-native:changeanalysis:ConfigurationProfile
    properties:
        identity:
            type: string
        location: string
        profileName: string
        properties:
            notifications:
                activationState: string
                azureMonitorWorkspaceProperties:
                    includeChangeDetails: string
                    workspaceId: string
                    workspaceResourceId: string
    

    ConfigurationProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ConfigurationProfile resource accepts the following input properties:

    Identity Pulumi.AzureNative.ChangeAnalysis.Inputs.ResourceIdentity
    The identity block returned by ARM resource that supports managed identity.
    Location string
    The location where the resource is to be deployed.
    ProfileName string
    The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
    Properties Pulumi.AzureNative.ChangeAnalysis.Inputs.ConfigurationProfileResourceProperties
    The properties of a configuration profile.
    Identity ResourceIdentityArgs
    The identity block returned by ARM resource that supports managed identity.
    Location string
    The location where the resource is to be deployed.
    ProfileName string
    The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
    Properties ConfigurationProfileResourcePropertiesArgs
    The properties of a configuration profile.
    identity ResourceIdentity
    The identity block returned by ARM resource that supports managed identity.
    location String
    The location where the resource is to be deployed.
    profileName String
    The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
    properties ConfigurationProfileResourceProperties
    The properties of a configuration profile.
    identity ResourceIdentity
    The identity block returned by ARM resource that supports managed identity.
    location string
    The location where the resource is to be deployed.
    profileName string
    The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
    properties ConfigurationProfileResourceProperties
    The properties of a configuration profile.
    identity ResourceIdentityArgs
    The identity block returned by ARM resource that supports managed identity.
    location str
    The location where the resource is to be deployed.
    profile_name str
    The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
    properties ConfigurationProfileResourcePropertiesArgs
    The properties of a configuration profile.
    identity Property Map
    The identity block returned by ARM resource that supports managed identity.
    location String
    The location where the resource is to be deployed.
    profileName String
    The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
    properties Property Map
    The properties of a configuration profile.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ConfigurationProfile resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    SystemData Pulumi.AzureNative.ChangeAnalysis.Outputs.SystemDataResponse
    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
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    SystemData SystemDataResponse
    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
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    systemData SystemDataResponse
    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
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    systemData SystemDataResponse
    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
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    system_data SystemDataResponse
    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
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    systemData Property Map
    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

    Supporting Types

    AzureMonitorWorkspaceProperties, AzureMonitorWorkspacePropertiesArgs

    IncludeChangeDetails string | Pulumi.AzureNative.ChangeAnalysis.ChangeDetailsMode
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    WorkspaceId string
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    WorkspaceResourceId string
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    IncludeChangeDetails string | ChangeDetailsMode
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    WorkspaceId string
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    WorkspaceResourceId string
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    includeChangeDetails String | ChangeDetailsMode
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    workspaceId String
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    workspaceResourceId String
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    includeChangeDetails string | ChangeDetailsMode
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    workspaceId string
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    workspaceResourceId string
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    include_change_details str | ChangeDetailsMode
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    workspace_id str
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    workspace_resource_id str
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    includeChangeDetails String | "None" | "Include" | "Exclude"
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    workspaceId String
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    workspaceResourceId String
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}

    AzureMonitorWorkspacePropertiesResponse, AzureMonitorWorkspacePropertiesResponseArgs

    IncludeChangeDetails string
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    WorkspaceId string
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    WorkspaceResourceId string
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    IncludeChangeDetails string
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    WorkspaceId string
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    WorkspaceResourceId string
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    includeChangeDetails String
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    workspaceId String
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    workspaceResourceId String
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    includeChangeDetails string
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    workspaceId string
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    workspaceResourceId string
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    include_change_details str
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    workspace_id str
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    workspace_resource_id str
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}
    includeChangeDetails String
    The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.
    workspaceId String
    The Azure Monitor workspace ID - the unique identifier for the Log Analytics workspace.
    workspaceResourceId String
    The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}

    ChangeDetailsMode, ChangeDetailsModeArgs

    None
    None
    Include
    Include
    Exclude
    Exclude
    ChangeDetailsModeNone
    None
    ChangeDetailsModeInclude
    Include
    ChangeDetailsModeExclude
    Exclude
    None
    None
    Include
    Include
    Exclude
    Exclude
    None
    None
    Include
    Include
    Exclude
    Exclude
    NONE
    None
    INCLUDE
    Include
    EXCLUDE
    Exclude
    "None"
    None
    "Include"
    Include
    "Exclude"
    Exclude

    ConfigurationProfileResourceProperties, ConfigurationProfileResourcePropertiesArgs

    Notifications Pulumi.AzureNative.ChangeAnalysis.Inputs.NotificationSettings
    Settings of change notification configuration for a subscription.
    Notifications NotificationSettings
    Settings of change notification configuration for a subscription.
    notifications NotificationSettings
    Settings of change notification configuration for a subscription.
    notifications NotificationSettings
    Settings of change notification configuration for a subscription.
    notifications NotificationSettings
    Settings of change notification configuration for a subscription.
    notifications Property Map
    Settings of change notification configuration for a subscription.

    ConfigurationProfileResourcePropertiesResponse, ConfigurationProfileResourcePropertiesResponseArgs

    Notifications Pulumi.AzureNative.ChangeAnalysis.Inputs.NotificationSettingsResponse
    Settings of change notification configuration for a subscription.
    Notifications NotificationSettingsResponse
    Settings of change notification configuration for a subscription.
    notifications NotificationSettingsResponse
    Settings of change notification configuration for a subscription.
    notifications NotificationSettingsResponse
    Settings of change notification configuration for a subscription.
    notifications NotificationSettingsResponse
    Settings of change notification configuration for a subscription.
    notifications Property Map
    Settings of change notification configuration for a subscription.

    ManagedIdentityTypes, ManagedIdentityTypesArgs

    None
    None
    SystemAssigned
    SystemAssigned
    ManagedIdentityTypesNone
    None
    ManagedIdentityTypesSystemAssigned
    SystemAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned

    NotificationSettings, NotificationSettingsArgs

    ActivationState string | Pulumi.AzureNative.ChangeAnalysis.NotificationsState
    The state of notifications feature.
    AzureMonitorWorkspaceProperties Pulumi.AzureNative.ChangeAnalysis.Inputs.AzureMonitorWorkspaceProperties
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    ActivationState string | NotificationsState
    The state of notifications feature.
    AzureMonitorWorkspaceProperties AzureMonitorWorkspaceProperties
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    activationState String | NotificationsState
    The state of notifications feature.
    azureMonitorWorkspaceProperties AzureMonitorWorkspaceProperties
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    activationState string | NotificationsState
    The state of notifications feature.
    azureMonitorWorkspaceProperties AzureMonitorWorkspaceProperties
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    activation_state str | NotificationsState
    The state of notifications feature.
    azure_monitor_workspace_properties AzureMonitorWorkspaceProperties
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    activationState String | "None" | "Enabled" | "Disabled"
    The state of notifications feature.
    azureMonitorWorkspaceProperties Property Map
    Configuration properties of an Azure Monitor workspace that receives change notifications.

    NotificationSettingsResponse, NotificationSettingsResponseArgs

    ActivationState string
    The state of notifications feature.
    AzureMonitorWorkspaceProperties Pulumi.AzureNative.ChangeAnalysis.Inputs.AzureMonitorWorkspacePropertiesResponse
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    ActivationState string
    The state of notifications feature.
    AzureMonitorWorkspaceProperties AzureMonitorWorkspacePropertiesResponse
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    activationState String
    The state of notifications feature.
    azureMonitorWorkspaceProperties AzureMonitorWorkspacePropertiesResponse
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    activationState string
    The state of notifications feature.
    azureMonitorWorkspaceProperties AzureMonitorWorkspacePropertiesResponse
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    activation_state str
    The state of notifications feature.
    azure_monitor_workspace_properties AzureMonitorWorkspacePropertiesResponse
    Configuration properties of an Azure Monitor workspace that receives change notifications.
    activationState String
    The state of notifications feature.
    azureMonitorWorkspaceProperties Property Map
    Configuration properties of an Azure Monitor workspace that receives change notifications.

    NotificationsState, NotificationsStateArgs

    None
    None
    Enabled
    Enabled
    Disabled
    Disabled
    NotificationsStateNone
    None
    NotificationsStateEnabled
    Enabled
    NotificationsStateDisabled
    Disabled
    None
    None
    Enabled
    Enabled
    Disabled
    Disabled
    None
    None
    Enabled
    Enabled
    Disabled
    Disabled
    NONE
    None
    ENABLED
    Enabled
    DISABLED
    Disabled
    "None"
    None
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    ResourceIdentity, ResourceIdentityArgs

    Type string | Pulumi.AzureNative.ChangeAnalysis.ManagedIdentityTypes
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    Type string | ManagedIdentityTypes
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    type String | ManagedIdentityTypes
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    type string | ManagedIdentityTypes
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    type str | ManagedIdentityTypes
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    type String | "None" | "SystemAssigned"
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.

    ResourceIdentityResponse, ResourceIdentityResponseArgs

    PrincipalId string
    The principal id of the identity. This property will only be provided for a system-assigned identity.
    TenantId string
    The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
    Type string
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    PrincipalId string
    The principal id of the identity. This property will only be provided for a system-assigned identity.
    TenantId string
    The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
    Type string
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    principalId String
    The principal id of the identity. This property will only be provided for a system-assigned identity.
    tenantId String
    The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
    type String
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    principalId string
    The principal id of the identity. This property will only be provided for a system-assigned identity.
    tenantId string
    The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
    type string
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    principal_id str
    The principal id of the identity. This property will only be provided for a system-assigned identity.
    tenant_id str
    The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
    type str
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
    principalId String
    The principal id of the identity. This property will only be provided for a system-assigned identity.
    tenantId String
    The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
    type String
    The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC)
    CreatedBy string
    A string identifier for the identity that created the resource
    CreatedByType string
    The type of identity that created the resource: user, application, managedIdentity, key
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    A string identifier for the identity that last modified the resource
    LastModifiedByType string
    The type of identity that last modified the resource: user, application, managedIdentity, key
    CreatedAt string
    The timestamp of resource creation (UTC)
    CreatedBy string
    A string identifier for the identity that created the resource
    CreatedByType string
    The type of identity that created the resource: user, application, managedIdentity, key
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    A string identifier for the identity that last modified the resource
    LastModifiedByType string
    The type of identity that last modified the resource: user, application, managedIdentity, key
    createdAt String
    The timestamp of resource creation (UTC)
    createdBy String
    A string identifier for the identity that created the resource
    createdByType String
    The type of identity that created the resource: user, application, managedIdentity, key
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    A string identifier for the identity that last modified the resource
    lastModifiedByType String
    The type of identity that last modified the resource: user, application, managedIdentity, key
    createdAt string
    The timestamp of resource creation (UTC)
    createdBy string
    A string identifier for the identity that created the resource
    createdByType string
    The type of identity that created the resource: user, application, managedIdentity, key
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    A string identifier for the identity that last modified the resource
    lastModifiedByType string
    The type of identity that last modified the resource: user, application, managedIdentity, key
    created_at str
    The timestamp of resource creation (UTC)
    created_by str
    A string identifier for the identity that created the resource
    created_by_type str
    The type of identity that created the resource: user, application, managedIdentity, key
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    A string identifier for the identity that last modified the resource
    last_modified_by_type str
    The type of identity that last modified the resource: user, application, managedIdentity, key
    createdAt String
    The timestamp of resource creation (UTC)
    createdBy String
    A string identifier for the identity that created the resource
    createdByType String
    The type of identity that created the resource: user, application, managedIdentity, key
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    A string identifier for the identity that last modified the resource
    lastModifiedByType String
    The type of identity that last modified the resource: user, application, managedIdentity, key

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:changeanalysis:ConfigurationProfile default /subscriptions/{subscriptionId}/providers/Microsoft.ChangeAnalysis/profile/{profileName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi