azure-native.changeanalysis.ConfigurationProfile

Explore with Pulumi AI

A profile object that contains change analysis configuration, such as notification settings, for this subscription API Version: 2020-04-01-preview.

Example Usage

ConfigurationProfile_Create

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var configurationProfile = new AzureNative.ChangeAnalysis.ConfigurationProfile("configurationProfile", new()
    {
        ProfileName = "default",
    });

});
package main

import (
	changeanalysis "github.com/pulumi/pulumi-azure-native/sdk/go/azure/changeanalysis"
	"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 Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var configurationProfile = new AzureNative.ChangeAnalysis.ConfigurationProfile("configurationProfile", new()
    {
        ProfileName = "default",
    });

});
package main

import (
	changeanalysis "github.com/pulumi/pulumi-azure-native/sdk/go/azure/changeanalysis"
	"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

new ConfigurationProfile(name: string, args?: ConfigurationProfileArgs, opts?: CustomResourceOptions);
@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)
@overload
def ConfigurationProfile(resource_name: str,
                         args: Optional[ConfigurationProfileArgs] = None,
                         opts: Optional[ResourceOptions] = 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.

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.

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.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 Pulumi.AzureNative.ChangeAnalysis.Inputs.ConfigurationProfileResourcePropertiesArgs

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 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 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 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

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

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

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

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

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

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

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

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

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

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

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

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/c80fb759-c965-4c6a-9110-9b2b2d038882/providers/Microsoft.ChangeAnalysis/profile/default 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0