azure-native.automation.AutomationAccount
Explore with Pulumi AI
Definition of the automation account type. Azure REST API version: 2022-08-08. Prior API version in Azure Native 1.x: 2021-06-22.
Other available API versions: 2023-05-15-preview, 2023-11-01.
Example Usage
Create or update automation account
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var automationAccount = new AzureNative.Automation.AutomationAccount("automationAccount", new()
{
AutomationAccountName = "myAutomationAccount9",
Location = "East US 2",
Name = "myAutomationAccount9",
ResourceGroupName = "rg",
Sku = new AzureNative.Automation.Inputs.SkuArgs
{
Name = AzureNative.Automation.SkuNameEnum.Free,
},
});
});
package main
import (
automation "github.com/pulumi/pulumi-azure-native-sdk/automation/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := automation.NewAutomationAccount(ctx, "automationAccount", &automation.AutomationAccountArgs{
AutomationAccountName: pulumi.String("myAutomationAccount9"),
Location: pulumi.String("East US 2"),
Name: pulumi.String("myAutomationAccount9"),
ResourceGroupName: pulumi.String("rg"),
Sku: &automation.SkuArgs{
Name: pulumi.String(automation.SkuNameEnumFree),
},
})
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.automation.AutomationAccount;
import com.pulumi.azurenative.automation.AutomationAccountArgs;
import com.pulumi.azurenative.automation.inputs.SkuArgs;
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 automationAccount = new AutomationAccount("automationAccount", AutomationAccountArgs.builder()
.automationAccountName("myAutomationAccount9")
.location("East US 2")
.name("myAutomationAccount9")
.resourceGroupName("rg")
.sku(SkuArgs.builder()
.name("Free")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
automation_account = azure_native.automation.AutomationAccount("automationAccount",
automation_account_name="myAutomationAccount9",
location="East US 2",
name="myAutomationAccount9",
resource_group_name="rg",
sku=azure_native.automation.SkuArgs(
name=azure_native.automation.SkuNameEnum.FREE,
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const automationAccount = new azure_native.automation.AutomationAccount("automationAccount", {
automationAccountName: "myAutomationAccount9",
location: "East US 2",
name: "myAutomationAccount9",
resourceGroupName: "rg",
sku: {
name: azure_native.automation.SkuNameEnum.Free,
},
});
resources:
automationAccount:
type: azure-native:automation:AutomationAccount
properties:
automationAccountName: myAutomationAccount9
location: East US 2
name: myAutomationAccount9
resourceGroupName: rg
sku:
name: Free
Create AutomationAccount Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AutomationAccount(name: string, args: AutomationAccountArgs, opts?: CustomResourceOptions);
@overload
def AutomationAccount(resource_name: str,
args: AutomationAccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AutomationAccount(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
automation_account_name: Optional[str] = None,
disable_local_auth: Optional[bool] = None,
encryption: Optional[EncryptionPropertiesArgs] = None,
identity: Optional[IdentityArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
public_network_access: Optional[bool] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewAutomationAccount(ctx *Context, name string, args AutomationAccountArgs, opts ...ResourceOption) (*AutomationAccount, error)
public AutomationAccount(string name, AutomationAccountArgs args, CustomResourceOptions? opts = null)
public AutomationAccount(String name, AutomationAccountArgs args)
public AutomationAccount(String name, AutomationAccountArgs args, CustomResourceOptions options)
type: azure-native:automation:AutomationAccount
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 AutomationAccountArgs
- 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 AutomationAccountArgs
- 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 AutomationAccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutomationAccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutomationAccountArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var automationAccountResource = new AzureNative.Automation.AutomationAccount("automationAccountResource", new()
{
ResourceGroupName = "string",
AutomationAccountName = "string",
DisableLocalAuth = false,
Encryption = new AzureNative.Automation.Inputs.EncryptionPropertiesArgs
{
Identity = new AzureNative.Automation.Inputs.EncryptionPropertiesIdentityArgs
{
UserAssignedIdentity = "any",
},
KeySource = AzureNative.Automation.EncryptionKeySourceType.Microsoft_Automation,
KeyVaultProperties = new AzureNative.Automation.Inputs.KeyVaultPropertiesArgs
{
KeyName = "string",
KeyVersion = "string",
KeyvaultUri = "string",
},
},
Identity = new AzureNative.Automation.Inputs.IdentityArgs
{
Type = AzureNative.Automation.ResourceIdentityType.SystemAssigned,
UserAssignedIdentities = new[]
{
"string",
},
},
Location = "string",
Name = "string",
PublicNetworkAccess = false,
Sku = new AzureNative.Automation.Inputs.SkuArgs
{
Name = "string",
Capacity = 0,
Family = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := automation.NewAutomationAccount(ctx, "automationAccountResource", &automation.AutomationAccountArgs{
ResourceGroupName: pulumi.String("string"),
AutomationAccountName: pulumi.String("string"),
DisableLocalAuth: pulumi.Bool(false),
Encryption: &automation.EncryptionPropertiesArgs{
Identity: &automation.EncryptionPropertiesIdentityArgs{
UserAssignedIdentity: pulumi.Any("any"),
},
KeySource: automation.EncryptionKeySourceType_Microsoft_Automation,
KeyVaultProperties: &automation.KeyVaultPropertiesArgs{
KeyName: pulumi.String("string"),
KeyVersion: pulumi.String("string"),
KeyvaultUri: pulumi.String("string"),
},
},
Identity: &automation.IdentityArgs{
Type: automation.ResourceIdentityTypeSystemAssigned,
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
PublicNetworkAccess: pulumi.Bool(false),
Sku: &automation.SkuArgs{
Name: pulumi.String("string"),
Capacity: pulumi.Int(0),
Family: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var automationAccountResource = new AutomationAccount("automationAccountResource", AutomationAccountArgs.builder()
.resourceGroupName("string")
.automationAccountName("string")
.disableLocalAuth(false)
.encryption(EncryptionPropertiesArgs.builder()
.identity(EncryptionPropertiesIdentityArgs.builder()
.userAssignedIdentity("any")
.build())
.keySource("Microsoft.Automation")
.keyVaultProperties(KeyVaultPropertiesArgs.builder()
.keyName("string")
.keyVersion("string")
.keyvaultUri("string")
.build())
.build())
.identity(IdentityArgs.builder()
.type("SystemAssigned")
.userAssignedIdentities("string")
.build())
.location("string")
.name("string")
.publicNetworkAccess(false)
.sku(SkuArgs.builder()
.name("string")
.capacity(0)
.family("string")
.build())
.tags(Map.of("string", "string"))
.build());
automation_account_resource = azure_native.automation.AutomationAccount("automationAccountResource",
resource_group_name="string",
automation_account_name="string",
disable_local_auth=False,
encryption=azure_native.automation.EncryptionPropertiesArgs(
identity=azure_native.automation.EncryptionPropertiesIdentityArgs(
user_assigned_identity="any",
),
key_source=azure_native.automation.EncryptionKeySourceType.MICROSOFT_AUTOMATION,
key_vault_properties=azure_native.automation.KeyVaultPropertiesArgs(
key_name="string",
key_version="string",
keyvault_uri="string",
),
),
identity=azure_native.automation.IdentityArgs(
type=azure_native.automation.ResourceIdentityType.SYSTEM_ASSIGNED,
user_assigned_identities=["string"],
),
location="string",
name="string",
public_network_access=False,
sku=azure_native.automation.SkuArgs(
name="string",
capacity=0,
family="string",
),
tags={
"string": "string",
})
const automationAccountResource = new azure_native.automation.AutomationAccount("automationAccountResource", {
resourceGroupName: "string",
automationAccountName: "string",
disableLocalAuth: false,
encryption: {
identity: {
userAssignedIdentity: "any",
},
keySource: azure_native.automation.EncryptionKeySourceType.Microsoft_Automation,
keyVaultProperties: {
keyName: "string",
keyVersion: "string",
keyvaultUri: "string",
},
},
identity: {
type: azure_native.automation.ResourceIdentityType.SystemAssigned,
userAssignedIdentities: ["string"],
},
location: "string",
name: "string",
publicNetworkAccess: false,
sku: {
name: "string",
capacity: 0,
family: "string",
},
tags: {
string: "string",
},
});
type: azure-native:automation:AutomationAccount
properties:
automationAccountName: string
disableLocalAuth: false
encryption:
identity:
userAssignedIdentity: any
keySource: Microsoft.Automation
keyVaultProperties:
keyName: string
keyVersion: string
keyvaultUri: string
identity:
type: SystemAssigned
userAssignedIdentities:
- string
location: string
name: string
publicNetworkAccess: false
resourceGroupName: string
sku:
capacity: 0
family: string
name: string
tags:
string: string
AutomationAccount 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 AutomationAccount resource accepts the following input properties:
- Resource
Group stringName - Name of an Azure Resource group.
- Automation
Account stringName - The name of the automation account.
- Disable
Local boolAuth - Indicates whether requests using non-AAD authentication are blocked
- Encryption
Pulumi.
Azure Native. Automation. Inputs. Encryption Properties - Set the encryption properties for the automation account
- Identity
Pulumi.
Azure Native. Automation. Inputs. Identity - Sets the identity property for automation account
- Location string
- Gets or sets the location of the resource.
- Name string
- Gets or sets name of the resource.
- Public
Network boolAccess - Indicates whether traffic on the non-ARM endpoint (Webhook/Agent) is allowed from the public internet
- Sku
Pulumi.
Azure Native. Automation. Inputs. Sku - Gets or sets account SKU.
- Dictionary<string, string>
- Gets or sets the tags attached to the resource.
- Resource
Group stringName - Name of an Azure Resource group.
- Automation
Account stringName - The name of the automation account.
- Disable
Local boolAuth - Indicates whether requests using non-AAD authentication are blocked
- Encryption
Encryption
Properties Args - Set the encryption properties for the automation account
- Identity
Identity
Args - Sets the identity property for automation account
- Location string
- Gets or sets the location of the resource.
- Name string
- Gets or sets name of the resource.
- Public
Network boolAccess - Indicates whether traffic on the non-ARM endpoint (Webhook/Agent) is allowed from the public internet
- Sku
Sku
Args - Gets or sets account SKU.
- map[string]string
- Gets or sets the tags attached to the resource.
- resource
Group StringName - Name of an Azure Resource group.
- automation
Account StringName - The name of the automation account.
- disable
Local BooleanAuth - Indicates whether requests using non-AAD authentication are blocked
- encryption
Encryption
Properties - Set the encryption properties for the automation account
- identity Identity
- Sets the identity property for automation account
- location String
- Gets or sets the location of the resource.
- name String
- Gets or sets name of the resource.
- public
Network BooleanAccess - Indicates whether traffic on the non-ARM endpoint (Webhook/Agent) is allowed from the public internet
- sku Sku
- Gets or sets account SKU.
- Map<String,String>
- Gets or sets the tags attached to the resource.
- resource
Group stringName - Name of an Azure Resource group.
- automation
Account stringName - The name of the automation account.
- disable
Local booleanAuth - Indicates whether requests using non-AAD authentication are blocked
- encryption
Encryption
Properties - Set the encryption properties for the automation account
- identity Identity
- Sets the identity property for automation account
- location string
- Gets or sets the location of the resource.
- name string
- Gets or sets name of the resource.
- public
Network booleanAccess - Indicates whether traffic on the non-ARM endpoint (Webhook/Agent) is allowed from the public internet
- sku Sku
- Gets or sets account SKU.
- {[key: string]: string}
- Gets or sets the tags attached to the resource.
- resource_
group_ strname - Name of an Azure Resource group.
- automation_
account_ strname - The name of the automation account.
- disable_
local_ boolauth - Indicates whether requests using non-AAD authentication are blocked
- encryption
Encryption
Properties Args - Set the encryption properties for the automation account
- identity
Identity
Args - Sets the identity property for automation account
- location str
- Gets or sets the location of the resource.
- name str
- Gets or sets name of the resource.
- public_
network_ boolaccess - Indicates whether traffic on the non-ARM endpoint (Webhook/Agent) is allowed from the public internet
- sku
Sku
Args - Gets or sets account SKU.
- Mapping[str, str]
- Gets or sets the tags attached to the resource.
- resource
Group StringName - Name of an Azure Resource group.
- automation
Account StringName - The name of the automation account.
- disable
Local BooleanAuth - Indicates whether requests using non-AAD authentication are blocked
- encryption Property Map
- Set the encryption properties for the automation account
- identity Property Map
- Sets the identity property for automation account
- location String
- Gets or sets the location of the resource.
- name String
- Gets or sets name of the resource.
- public
Network BooleanAccess - Indicates whether traffic on the non-ARM endpoint (Webhook/Agent) is allowed from the public internet
- sku Property Map
- Gets or sets account SKU.
- Map<String>
- Gets or sets the tags attached to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the AutomationAccount resource produces the following output properties:
- Creation
Time string - Gets the creation time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringTime - Gets the last modified time.
- State string
- Gets status of account.
- System
Data Pulumi.Azure Native. Automation. Outputs. System Data Response - Resource system metadata.
- Type string
- The type of the resource.
- Automation
Hybrid stringService Url - URL of automation hybrid service which is used for hybrid worker on-boarding.
- Description string
- Gets or sets the description.
- Etag string
- Gets or sets the etag of the resource.
- Last
Modified stringBy - Gets or sets the last modified by.
- Private
Endpoint List<Pulumi.Connections Azure Native. Automation. Outputs. Private Endpoint Connection Response> - List of Automation operations supported by the Automation resource provider.
- Creation
Time string - Gets the creation time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringTime - Gets the last modified time.
- State string
- Gets status of account.
- System
Data SystemData Response - Resource system metadata.
- Type string
- The type of the resource.
- Automation
Hybrid stringService Url - URL of automation hybrid service which is used for hybrid worker on-boarding.
- Description string
- Gets or sets the description.
- Etag string
- Gets or sets the etag of the resource.
- Last
Modified stringBy - Gets or sets the last modified by.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - List of Automation operations supported by the Automation resource provider.
- creation
Time String - Gets the creation time.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringTime - Gets the last modified time.
- state String
- Gets status of account.
- system
Data SystemData Response - Resource system metadata.
- type String
- The type of the resource.
- automation
Hybrid StringService Url - URL of automation hybrid service which is used for hybrid worker on-boarding.
- description String
- Gets or sets the description.
- etag String
- Gets or sets the etag of the resource.
- last
Modified StringBy - Gets or sets the last modified by.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - List of Automation operations supported by the Automation resource provider.
- creation
Time string - Gets the creation time.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified stringTime - Gets the last modified time.
- state string
- Gets status of account.
- system
Data SystemData Response - Resource system metadata.
- type string
- The type of the resource.
- automation
Hybrid stringService Url - URL of automation hybrid service which is used for hybrid worker on-boarding.
- description string
- Gets or sets the description.
- etag string
- Gets or sets the etag of the resource.
- last
Modified stringBy - Gets or sets the last modified by.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - List of Automation operations supported by the Automation resource provider.
- creation_
time str - Gets the creation time.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified_ strtime - Gets the last modified time.
- state str
- Gets status of account.
- system_
data SystemData Response - Resource system metadata.
- type str
- The type of the resource.
- automation_
hybrid_ strservice_ url - URL of automation hybrid service which is used for hybrid worker on-boarding.
- description str
- Gets or sets the description.
- etag str
- Gets or sets the etag of the resource.
- last_
modified_ strby - Gets or sets the last modified by.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - List of Automation operations supported by the Automation resource provider.
- creation
Time String - Gets the creation time.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringTime - Gets the last modified time.
- state String
- Gets status of account.
- system
Data Property Map - Resource system metadata.
- type String
- The type of the resource.
- automation
Hybrid StringService Url - URL of automation hybrid service which is used for hybrid worker on-boarding.
- description String
- Gets or sets the description.
- etag String
- Gets or sets the etag of the resource.
- last
Modified StringBy - Gets or sets the last modified by.
- private
Endpoint List<Property Map>Connections - List of Automation operations supported by the Automation resource provider.
Supporting Types
EncryptionKeySourceType, EncryptionKeySourceTypeArgs
- Microsoft_Automation
- Microsoft.Automation
- Microsoft_Keyvault
- Microsoft.Keyvault
- Encryption
Key Source Type_Microsoft_Automation - Microsoft.Automation
- Encryption
Key Source Type_Microsoft_Keyvault - Microsoft.Keyvault
- Microsoft_Automation
- Microsoft.Automation
- Microsoft_Keyvault
- Microsoft.Keyvault
- Microsoft_Automation
- Microsoft.Automation
- Microsoft_Keyvault
- Microsoft.Keyvault
- MICROSOFT_AUTOMATION
- Microsoft.Automation
- MICROSOFT_KEYVAULT
- Microsoft.Keyvault
- "Microsoft.
Automation" - Microsoft.Automation
- "Microsoft.
Keyvault" - Microsoft.Keyvault
EncryptionProperties, EncryptionPropertiesArgs
- Identity
Pulumi.
Azure Native. Automation. Inputs. Encryption Properties Identity - User identity used for CMK.
- Key
Source Pulumi.Azure Native. Automation. Encryption Key Source Type - Encryption Key Source
- Key
Vault Pulumi.Properties Azure Native. Automation. Inputs. Key Vault Properties - Key vault properties.
- Identity
Encryption
Properties Identity - User identity used for CMK.
- Key
Source EncryptionKey Source Type - Encryption Key Source
- Key
Vault KeyProperties Vault Properties - Key vault properties.
- identity
Encryption
Properties Identity - User identity used for CMK.
- key
Source EncryptionKey Source Type - Encryption Key Source
- key
Vault KeyProperties Vault Properties - Key vault properties.
- identity
Encryption
Properties Identity - User identity used for CMK.
- key
Source EncryptionKey Source Type - Encryption Key Source
- key
Vault KeyProperties Vault Properties - Key vault properties.
- identity
Encryption
Properties Identity - User identity used for CMK.
- key_
source EncryptionKey Source Type - Encryption Key Source
- key_
vault_ Keyproperties Vault Properties - Key vault properties.
- identity Property Map
- User identity used for CMK.
- key
Source "Microsoft.Automation" | "Microsoft. Keyvault" - Encryption Key Source
- key
Vault Property MapProperties - Key vault properties.
EncryptionPropertiesIdentity, EncryptionPropertiesIdentityArgs
- User
Assigned objectIdentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- User
Assigned interface{}Identity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- user
Assigned ObjectIdentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- user
Assigned anyIdentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- user_
assigned_ Anyidentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- user
Assigned AnyIdentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
EncryptionPropertiesResponse, EncryptionPropertiesResponseArgs
- Identity
Pulumi.
Azure Native. Automation. Inputs. Encryption Properties Response Identity - User identity used for CMK.
- Key
Source string - Encryption Key Source
- Key
Vault Pulumi.Properties Azure Native. Automation. Inputs. Key Vault Properties Response - Key vault properties.
- Identity
Encryption
Properties Response Identity - User identity used for CMK.
- Key
Source string - Encryption Key Source
- Key
Vault KeyProperties Vault Properties Response - Key vault properties.
- identity
Encryption
Properties Response Identity - User identity used for CMK.
- key
Source String - Encryption Key Source
- key
Vault KeyProperties Vault Properties Response - Key vault properties.
- identity
Encryption
Properties Response Identity - User identity used for CMK.
- key
Source string - Encryption Key Source
- key
Vault KeyProperties Vault Properties Response - Key vault properties.
- identity
Encryption
Properties Response Identity - User identity used for CMK.
- key_
source str - Encryption Key Source
- key_
vault_ Keyproperties Vault Properties Response - Key vault properties.
- identity Property Map
- User identity used for CMK.
- key
Source String - Encryption Key Source
- key
Vault Property MapProperties - Key vault properties.
EncryptionPropertiesResponseIdentity, EncryptionPropertiesResponseIdentityArgs
- User
Assigned objectIdentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- User
Assigned interface{}Identity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- user
Assigned ObjectIdentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- user
Assigned anyIdentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- user_
assigned_ Anyidentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- user
Assigned AnyIdentity - The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
Identity, IdentityArgs
- Type
Pulumi.
Azure Native. Automation. Resource Identity Type - The identity type.
- User
Assigned List<string>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Type
Resource
Identity Type - The identity type.
- User
Assigned []stringIdentities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
Resource
Identity Type - The identity type.
- user
Assigned List<String>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
Resource
Identity Type - The identity type.
- user
Assigned string[]Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
Resource
Identity Type - The identity type.
- user_
assigned_ Sequence[str]identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
"System
Assigned" | "User Assigned" | "System Assigned, User Assigned" | "None" - The identity type.
- user
Assigned List<String>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Automation. Inputs. User Assigned Identities Properties Response> - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned map[string]UserIdentities Assigned Identities Properties Response - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<String,UserIdentities Assigned Identities Properties Response> - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Identities Properties Response} - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The identity type.
- user_
assigned_ Mapping[str, Useridentities Assigned Identities Properties Response] - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
KeyVaultProperties, KeyVaultPropertiesArgs
- Key
Name string - The name of key used to encrypt data.
- Key
Version string - The key version of the key used to encrypt data.
- Keyvault
Uri string - The URI of the key vault key used to encrypt data.
- Key
Name string - The name of key used to encrypt data.
- Key
Version string - The key version of the key used to encrypt data.
- Keyvault
Uri string - The URI of the key vault key used to encrypt data.
- key
Name String - The name of key used to encrypt data.
- key
Version String - The key version of the key used to encrypt data.
- keyvault
Uri String - The URI of the key vault key used to encrypt data.
- key
Name string - The name of key used to encrypt data.
- key
Version string - The key version of the key used to encrypt data.
- keyvault
Uri string - The URI of the key vault key used to encrypt data.
- key_
name str - The name of key used to encrypt data.
- key_
version str - The key version of the key used to encrypt data.
- keyvault_
uri str - The URI of the key vault key used to encrypt data.
- key
Name String - The name of key used to encrypt data.
- key
Version String - The key version of the key used to encrypt data.
- keyvault
Uri String - The URI of the key vault key used to encrypt data.
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs
- Key
Name string - The name of key used to encrypt data.
- Key
Version string - The key version of the key used to encrypt data.
- Keyvault
Uri string - The URI of the key vault key used to encrypt data.
- Key
Name string - The name of key used to encrypt data.
- Key
Version string - The key version of the key used to encrypt data.
- Keyvault
Uri string - The URI of the key vault key used to encrypt data.
- key
Name String - The name of key used to encrypt data.
- key
Version String - The key version of the key used to encrypt data.
- keyvault
Uri String - The URI of the key vault key used to encrypt data.
- key
Name string - The name of key used to encrypt data.
- key
Version string - The key version of the key used to encrypt data.
- keyvault
Uri string - The URI of the key vault key used to encrypt data.
- key_
name str - The name of key used to encrypt data.
- key_
version str - The key version of the key used to encrypt data.
- keyvault_
uri str - The URI of the key vault key used to encrypt data.
- key
Name String - The name of key used to encrypt data.
- key
Version String - The key version of the key used to encrypt data.
- keyvault
Uri String - The URI of the key vault key used to encrypt data.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified resource Id for the resource
- Name string
- The name of the resource
- Type string
- The type of the resource.
- Group
Ids List<string> - Gets the groupIds.
- Private
Endpoint Pulumi.Azure Native. Automation. Inputs. Private Endpoint Property Response - Private endpoint which the connection belongs to.
- Private
Link Pulumi.Service Connection State Azure Native. Automation. Inputs. Private Link Service Connection State Property Response - Connection State of the Private Endpoint Connection.
- Id string
- Fully qualified resource Id for the resource
- Name string
- The name of the resource
- Type string
- The type of the resource.
- Group
Ids []string - Gets the groupIds.
- Private
Endpoint PrivateEndpoint Property Response - Private endpoint which the connection belongs to.
- Private
Link PrivateService Connection State Link Service Connection State Property Response - Connection State of the Private Endpoint Connection.
- id String
- Fully qualified resource Id for the resource
- name String
- The name of the resource
- type String
- The type of the resource.
- group
Ids List<String> - Gets the groupIds.
- private
Endpoint PrivateEndpoint Property Response - Private endpoint which the connection belongs to.
- private
Link PrivateService Connection State Link Service Connection State Property Response - Connection State of the Private Endpoint Connection.
- id string
- Fully qualified resource Id for the resource
- name string
- The name of the resource
- type string
- The type of the resource.
- group
Ids string[] - Gets the groupIds.
- private
Endpoint PrivateEndpoint Property Response - Private endpoint which the connection belongs to.
- private
Link PrivateService Connection State Link Service Connection State Property Response - Connection State of the Private Endpoint Connection.
- id str
- Fully qualified resource Id for the resource
- name str
- The name of the resource
- type str
- The type of the resource.
- group_
ids Sequence[str] - Gets the groupIds.
- private_
endpoint PrivateEndpoint Property Response - Private endpoint which the connection belongs to.
- private_
link_ Privateservice_ connection_ state Link Service Connection State Property Response - Connection State of the Private Endpoint Connection.
- id String
- Fully qualified resource Id for the resource
- name String
- The name of the resource
- type String
- The type of the resource.
- group
Ids List<String> - Gets the groupIds.
- private
Endpoint Property Map - Private endpoint which the connection belongs to.
- private
Link Property MapService Connection State - Connection State of the Private Endpoint Connection.
PrivateEndpointPropertyResponse, PrivateEndpointPropertyResponseArgs
- Id string
- Resource id of the private endpoint.
- Id string
- Resource id of the private endpoint.
- id String
- Resource id of the private endpoint.
- id string
- Resource id of the private endpoint.
- id str
- Resource id of the private endpoint.
- id String
- Resource id of the private endpoint.
PrivateLinkServiceConnectionStatePropertyResponse, PrivateLinkServiceConnectionStatePropertyResponseArgs
- Actions
Required string - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- Description string
- The private link service connection description.
- Status string
- The private link service connection status.
- Actions
Required string - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- Description string
- The private link service connection description.
- Status string
- The private link service connection status.
- actions
Required String - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- description String
- The private link service connection description.
- status String
- The private link service connection status.
- actions
Required string - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- description string
- The private link service connection description.
- status string
- The private link service connection status.
- actions_
required str - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- description str
- The private link service connection description.
- status str
- The private link service connection status.
- actions
Required String - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- description String
- The private link service connection description.
- status String
- The private link service connection status.
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - SystemAssigned, UserAssigned
- "None"
- None
Sku, SkuArgs
- Name
string | Pulumi.
Azure Native. Automation. Sku Name Enum - Gets or sets the SKU name of the account.
- Capacity int
- Gets or sets the SKU capacity.
- Family string
- Gets or sets the SKU family.
- Name
string | Sku
Name Enum - Gets or sets the SKU name of the account.
- Capacity int
- Gets or sets the SKU capacity.
- Family string
- Gets or sets the SKU family.
- name
String | Sku
Name Enum - Gets or sets the SKU name of the account.
- capacity Integer
- Gets or sets the SKU capacity.
- family String
- Gets or sets the SKU family.
- name
string | Sku
Name Enum - Gets or sets the SKU name of the account.
- capacity number
- Gets or sets the SKU capacity.
- family string
- Gets or sets the SKU family.
- name
str | Sku
Name Enum - Gets or sets the SKU name of the account.
- capacity int
- Gets or sets the SKU capacity.
- family str
- Gets or sets the SKU family.
- name String | "Free" | "Basic"
- Gets or sets the SKU name of the account.
- capacity Number
- Gets or sets the SKU capacity.
- family String
- Gets or sets the SKU family.
SkuNameEnum, SkuNameEnumArgs
- Free
- Free
- Basic
- Basic
- Sku
Name Enum Free - Free
- Sku
Name Enum Basic - Basic
- Free
- Free
- Basic
- Basic
- Free
- Free
- Basic
- Basic
- FREE
- Free
- BASIC
- Basic
- "Free"
- Free
- "Basic"
- Basic
SkuResponse, SkuResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentitiesPropertiesResponse, UserAssignedIdentitiesPropertiesResponseArgs
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id string - The principal id of user assigned identity.
- client_
id str - The client id of user assigned identity.
- principal_
id str - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:automation:AutomationAccount ContoseAutomationAccount /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0