azure-native.powerplatform.EnterprisePolicy
Explore with Pulumi AI
Definition of the EnterprisePolicy. Azure REST API version: 2020-10-30-preview. Prior API version in Azure Native 1.x: 2020-10-30-preview.
Example Usage
Create or update EnterprisePolicy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var enterprisePolicy = new AzureNative.PowerPlatform.EnterprisePolicy("enterprisePolicy", new()
{
EnterprisePolicyName = "enterprisePolicy",
Identity = new AzureNative.PowerPlatform.Inputs.EnterprisePolicyIdentityArgs
{
Type = AzureNative.PowerPlatform.ResourceIdentityType.SystemAssigned,
},
Kind = AzureNative.PowerPlatform.EnterprisePolicyKind.Lockbox,
Location = "East US",
ResourceGroupName = "resourceGroup",
Tags =
{
{ "Organization", "Administration" },
},
});
});
package main
import (
powerplatform "github.com/pulumi/pulumi-azure-native-sdk/powerplatform/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := powerplatform.NewEnterprisePolicy(ctx, "enterprisePolicy", &powerplatform.EnterprisePolicyArgs{
EnterprisePolicyName: pulumi.String("enterprisePolicy"),
Identity: &powerplatform.EnterprisePolicyIdentityArgs{
Type: powerplatform.ResourceIdentityTypeSystemAssigned,
},
Kind: pulumi.String(powerplatform.EnterprisePolicyKindLockbox),
Location: pulumi.String("East US"),
ResourceGroupName: pulumi.String("resourceGroup"),
Tags: pulumi.StringMap{
"Organization": pulumi.String("Administration"),
},
})
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.powerplatform.EnterprisePolicy;
import com.pulumi.azurenative.powerplatform.EnterprisePolicyArgs;
import com.pulumi.azurenative.powerplatform.inputs.EnterprisePolicyIdentityArgs;
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 enterprisePolicy = new EnterprisePolicy("enterprisePolicy", EnterprisePolicyArgs.builder()
.enterprisePolicyName("enterprisePolicy")
.identity(EnterprisePolicyIdentityArgs.builder()
.type("SystemAssigned")
.build())
.kind("Lockbox")
.location("East US")
.resourceGroupName("resourceGroup")
.tags(Map.of("Organization", "Administration"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
enterprise_policy = azure_native.powerplatform.EnterprisePolicy("enterprisePolicy",
enterprise_policy_name="enterprisePolicy",
identity={
"type": azure_native.powerplatform.ResourceIdentityType.SYSTEM_ASSIGNED,
},
kind=azure_native.powerplatform.EnterprisePolicyKind.LOCKBOX,
location="East US",
resource_group_name="resourceGroup",
tags={
"Organization": "Administration",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const enterprisePolicy = new azure_native.powerplatform.EnterprisePolicy("enterprisePolicy", {
enterprisePolicyName: "enterprisePolicy",
identity: {
type: azure_native.powerplatform.ResourceIdentityType.SystemAssigned,
},
kind: azure_native.powerplatform.EnterprisePolicyKind.Lockbox,
location: "East US",
resourceGroupName: "resourceGroup",
tags: {
Organization: "Administration",
},
});
resources:
enterprisePolicy:
type: azure-native:powerplatform:EnterprisePolicy
properties:
enterprisePolicyName: enterprisePolicy
identity:
type: SystemAssigned
kind: Lockbox
location: East US
resourceGroupName: resourceGroup
tags:
Organization: Administration
Create EnterprisePolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EnterprisePolicy(name: string, args: EnterprisePolicyArgs, opts?: CustomResourceOptions);
@overload
def EnterprisePolicy(resource_name: str,
args: EnterprisePolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EnterprisePolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
kind: Optional[Union[str, EnterprisePolicyKind]] = None,
resource_group_name: Optional[str] = None,
encryption: Optional[PropertiesEncryptionArgs] = None,
enterprise_policy_name: Optional[str] = None,
health_status: Optional[Union[str, HealthStatus]] = None,
identity: Optional[EnterprisePolicyIdentityArgs] = None,
location: Optional[str] = None,
lockbox: Optional[PropertiesLockboxArgs] = None,
network_injection: Optional[PropertiesNetworkInjectionArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewEnterprisePolicy(ctx *Context, name string, args EnterprisePolicyArgs, opts ...ResourceOption) (*EnterprisePolicy, error)
public EnterprisePolicy(string name, EnterprisePolicyArgs args, CustomResourceOptions? opts = null)
public EnterprisePolicy(String name, EnterprisePolicyArgs args)
public EnterprisePolicy(String name, EnterprisePolicyArgs args, CustomResourceOptions options)
type: azure-native:powerplatform:EnterprisePolicy
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 EnterprisePolicyArgs
- 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 EnterprisePolicyArgs
- 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 EnterprisePolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EnterprisePolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EnterprisePolicyArgs
- 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 enterprisePolicyResource = new AzureNative.PowerPlatform.EnterprisePolicy("enterprisePolicyResource", new()
{
Kind = "string",
ResourceGroupName = "string",
Encryption = new AzureNative.PowerPlatform.Inputs.PropertiesEncryptionArgs
{
KeyVault = new AzureNative.PowerPlatform.Inputs.KeyVaultPropertiesArgs
{
Id = "string",
Key = new AzureNative.PowerPlatform.Inputs.KeyPropertiesArgs
{
Name = "string",
Version = "string",
},
},
State = "string",
},
EnterprisePolicyName = "string",
HealthStatus = "string",
Identity = new AzureNative.PowerPlatform.Inputs.EnterprisePolicyIdentityArgs
{
Type = AzureNative.PowerPlatform.ResourceIdentityType.SystemAssigned,
},
Location = "string",
Lockbox = new AzureNative.PowerPlatform.Inputs.PropertiesLockboxArgs
{
State = "string",
},
NetworkInjection = new AzureNative.PowerPlatform.Inputs.PropertiesNetworkInjectionArgs
{
VirtualNetworks = new AzureNative.PowerPlatform.Inputs.VirtualNetworkPropertiesListArgs
{
NextLink = "string",
Value = new[]
{
new AzureNative.PowerPlatform.Inputs.VirtualNetworkPropertiesArgs
{
Id = "string",
Subnet = new AzureNative.PowerPlatform.Inputs.SubnetPropertiesArgs
{
Name = "string",
},
},
},
},
},
Tags =
{
{ "string", "string" },
},
});
example, err := powerplatform.NewEnterprisePolicy(ctx, "enterprisePolicyResource", &powerplatform.EnterprisePolicyArgs{
Kind: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Encryption: &powerplatform.PropertiesEncryptionArgs{
KeyVault: &powerplatform.KeyVaultPropertiesArgs{
Id: pulumi.String("string"),
Key: &powerplatform.KeyPropertiesArgs{
Name: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
State: pulumi.String("string"),
},
EnterprisePolicyName: pulumi.String("string"),
HealthStatus: pulumi.String("string"),
Identity: &powerplatform.EnterprisePolicyIdentityArgs{
Type: powerplatform.ResourceIdentityTypeSystemAssigned,
},
Location: pulumi.String("string"),
Lockbox: &powerplatform.PropertiesLockboxArgs{
State: pulumi.String("string"),
},
NetworkInjection: &powerplatform.PropertiesNetworkInjectionArgs{
VirtualNetworks: &powerplatform.VirtualNetworkPropertiesListArgs{
NextLink: pulumi.String("string"),
Value: powerplatform.VirtualNetworkPropertiesArray{
&powerplatform.VirtualNetworkPropertiesArgs{
Id: pulumi.String("string"),
Subnet: &powerplatform.SubnetPropertiesArgs{
Name: pulumi.String("string"),
},
},
},
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var enterprisePolicyResource = new EnterprisePolicy("enterprisePolicyResource", EnterprisePolicyArgs.builder()
.kind("string")
.resourceGroupName("string")
.encryption(PropertiesEncryptionArgs.builder()
.keyVault(KeyVaultPropertiesArgs.builder()
.id("string")
.key(KeyPropertiesArgs.builder()
.name("string")
.version("string")
.build())
.build())
.state("string")
.build())
.enterprisePolicyName("string")
.healthStatus("string")
.identity(EnterprisePolicyIdentityArgs.builder()
.type("SystemAssigned")
.build())
.location("string")
.lockbox(PropertiesLockboxArgs.builder()
.state("string")
.build())
.networkInjection(PropertiesNetworkInjectionArgs.builder()
.virtualNetworks(VirtualNetworkPropertiesListArgs.builder()
.nextLink("string")
.value(VirtualNetworkPropertiesArgs.builder()
.id("string")
.subnet(SubnetPropertiesArgs.builder()
.name("string")
.build())
.build())
.build())
.build())
.tags(Map.of("string", "string"))
.build());
enterprise_policy_resource = azure_native.powerplatform.EnterprisePolicy("enterprisePolicyResource",
kind="string",
resource_group_name="string",
encryption={
"keyVault": {
"id": "string",
"key": {
"name": "string",
"version": "string",
},
},
"state": "string",
},
enterprise_policy_name="string",
health_status="string",
identity={
"type": azure_native.powerplatform.ResourceIdentityType.SYSTEM_ASSIGNED,
},
location="string",
lockbox={
"state": "string",
},
network_injection={
"virtualNetworks": {
"nextLink": "string",
"value": [{
"id": "string",
"subnet": {
"name": "string",
},
}],
},
},
tags={
"string": "string",
})
const enterprisePolicyResource = new azure_native.powerplatform.EnterprisePolicy("enterprisePolicyResource", {
kind: "string",
resourceGroupName: "string",
encryption: {
keyVault: {
id: "string",
key: {
name: "string",
version: "string",
},
},
state: "string",
},
enterprisePolicyName: "string",
healthStatus: "string",
identity: {
type: azure_native.powerplatform.ResourceIdentityType.SystemAssigned,
},
location: "string",
lockbox: {
state: "string",
},
networkInjection: {
virtualNetworks: {
nextLink: "string",
value: [{
id: "string",
subnet: {
name: "string",
},
}],
},
},
tags: {
string: "string",
},
});
type: azure-native:powerplatform:EnterprisePolicy
properties:
encryption:
keyVault:
id: string
key:
name: string
version: string
state: string
enterprisePolicyName: string
healthStatus: string
identity:
type: SystemAssigned
kind: string
location: string
lockbox:
state: string
networkInjection:
virtualNetworks:
nextLink: string
value:
- id: string
subnet:
name: string
resourceGroupName: string
tags:
string: string
EnterprisePolicy 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 EnterprisePolicy resource accepts the following input properties:
- Kind
string | Pulumi.
Azure Native. Power Platform. Enterprise Policy Kind - The kind (type) of Enterprise Policy.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Encryption
Pulumi.
Azure Native. Power Platform. Inputs. Properties Encryption - The encryption settings for a configuration store.
- Enterprise
Policy stringName - Name of the EnterprisePolicy.
- Health
Status string | Pulumi.Azure Native. Power Platform. Health Status - The health status of the resource.
- Identity
Pulumi.
Azure Native. Power Platform. Inputs. Enterprise Policy Identity - The identity of the EnterprisePolicy.
- Location string
- The geo-location where the resource lives
- Lockbox
Pulumi.
Azure Native. Power Platform. Inputs. Properties Lockbox - Settings concerning lockbox.
- Network
Injection Pulumi.Azure Native. Power Platform. Inputs. Properties Network Injection - Settings concerning network injection.
- Dictionary<string, string>
- Resource tags.
- Kind
string | Enterprise
Policy Kind - The kind (type) of Enterprise Policy.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Encryption
Properties
Encryption Args - The encryption settings for a configuration store.
- Enterprise
Policy stringName - Name of the EnterprisePolicy.
- Health
Status string | HealthStatus - The health status of the resource.
- Identity
Enterprise
Policy Identity Args - The identity of the EnterprisePolicy.
- Location string
- The geo-location where the resource lives
- Lockbox
Properties
Lockbox Args - Settings concerning lockbox.
- Network
Injection PropertiesNetwork Injection Args - Settings concerning network injection.
- map[string]string
- Resource tags.
- kind
String | Enterprise
Policy Kind - The kind (type) of Enterprise Policy.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- encryption
Properties
Encryption - The encryption settings for a configuration store.
- enterprise
Policy StringName - Name of the EnterprisePolicy.
- health
Status String | HealthStatus - The health status of the resource.
- identity
Enterprise
Policy Identity - The identity of the EnterprisePolicy.
- location String
- The geo-location where the resource lives
- lockbox
Properties
Lockbox - Settings concerning lockbox.
- network
Injection PropertiesNetwork Injection - Settings concerning network injection.
- Map<String,String>
- Resource tags.
- kind
string | Enterprise
Policy Kind - The kind (type) of Enterprise Policy.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- encryption
Properties
Encryption - The encryption settings for a configuration store.
- enterprise
Policy stringName - Name of the EnterprisePolicy.
- health
Status string | HealthStatus - The health status of the resource.
- identity
Enterprise
Policy Identity - The identity of the EnterprisePolicy.
- location string
- The geo-location where the resource lives
- lockbox
Properties
Lockbox - Settings concerning lockbox.
- network
Injection PropertiesNetwork Injection - Settings concerning network injection.
- {[key: string]: string}
- Resource tags.
- kind
str | Enterprise
Policy Kind - The kind (type) of Enterprise Policy.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- encryption
Properties
Encryption Args - The encryption settings for a configuration store.
- enterprise_
policy_ strname - Name of the EnterprisePolicy.
- health_
status str | HealthStatus - The health status of the resource.
- identity
Enterprise
Policy Identity Args - The identity of the EnterprisePolicy.
- location str
- The geo-location where the resource lives
- lockbox
Properties
Lockbox Args - Settings concerning lockbox.
- network_
injection PropertiesNetwork Injection Args - Settings concerning network injection.
- Mapping[str, str]
- Resource tags.
- kind
String | "Lockbox" | "Private
Endpoint" | "Encryption" | "Network Injection" | "Identity" - The kind (type) of Enterprise Policy.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- encryption Property Map
- The encryption settings for a configuration store.
- enterprise
Policy StringName - Name of the EnterprisePolicy.
- health
Status String | "Undetermined" | "Healthy" | "Warning" | "Unhealthy" - The health status of the resource.
- identity Property Map
- The identity of the EnterprisePolicy.
- location String
- The geo-location where the resource lives
- lockbox Property Map
- Settings concerning lockbox.
- network
Injection Property Map - Settings concerning network injection.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the EnterprisePolicy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Power Platform. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- System
Id string - The internally assigned unique identifier of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- System
Id string - The internally assigned unique identifier of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- system
Id String - The internally assigned unique identifier of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- system
Id string - The internally assigned unique identifier of the resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- system_
id str - The internally assigned unique identifier of the resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- system
Id String - The internally assigned unique identifier of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
EnterprisePolicyIdentity, EnterprisePolicyIdentityArgs
- Type
Pulumi.
Azure Native. Power Platform. Resource Identity Type - The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- Type
Resource
Identity Type - The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- type
Resource
Identity Type - The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- type
Resource
Identity Type - The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- type
Resource
Identity Type - The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- type
"System
Assigned" | "None" - The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
EnterprisePolicyIdentityResponse, EnterprisePolicyIdentityResponseArgs
- System
Assigned stringIdentity Principal Id - The principal id of EnterprisePolicy identity.
- Tenant
Id string - The tenant id associated with the EnterprisePolicy.
- Type string
- The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- System
Assigned stringIdentity Principal Id - The principal id of EnterprisePolicy identity.
- Tenant
Id string - The tenant id associated with the EnterprisePolicy.
- Type string
- The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- system
Assigned StringIdentity Principal Id - The principal id of EnterprisePolicy identity.
- tenant
Id String - The tenant id associated with the EnterprisePolicy.
- type String
- The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- system
Assigned stringIdentity Principal Id - The principal id of EnterprisePolicy identity.
- tenant
Id string - The tenant id associated with the EnterprisePolicy.
- type string
- The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- system_
assigned_ stridentity_ principal_ id - The principal id of EnterprisePolicy identity.
- tenant_
id str - The tenant id associated with the EnterprisePolicy.
- type str
- The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
- system
Assigned StringIdentity Principal Id - The principal id of EnterprisePolicy identity.
- tenant
Id String - The tenant id associated with the EnterprisePolicy.
- type String
- The type of identity used for the EnterprisePolicy. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity.
EnterprisePolicyKind, EnterprisePolicyKindArgs
- Lockbox
- Lockbox
- Private
Endpoint - PrivateEndpoint
- Encryption
- Encryption
- Network
Injection - NetworkInjection
- Identity
- Identity
- Enterprise
Policy Kind Lockbox - Lockbox
- Enterprise
Policy Kind Private Endpoint - PrivateEndpoint
- Enterprise
Policy Kind Encryption - Encryption
- Enterprise
Policy Kind Network Injection - NetworkInjection
- Enterprise
Policy Kind Identity - Identity
- Lockbox
- Lockbox
- Private
Endpoint - PrivateEndpoint
- Encryption
- Encryption
- Network
Injection - NetworkInjection
- Identity
- Identity
- Lockbox
- Lockbox
- Private
Endpoint - PrivateEndpoint
- Encryption
- Encryption
- Network
Injection - NetworkInjection
- Identity
- Identity
- LOCKBOX
- Lockbox
- PRIVATE_ENDPOINT
- PrivateEndpoint
- ENCRYPTION
- Encryption
- NETWORK_INJECTION
- NetworkInjection
- IDENTITY
- Identity
- "Lockbox"
- Lockbox
- "Private
Endpoint" - PrivateEndpoint
- "Encryption"
- Encryption
- "Network
Injection" - NetworkInjection
- "Identity"
- Identity
HealthStatus, HealthStatusArgs
- Undetermined
- Undetermined
- Healthy
- Healthy
- Warning
- Warning
- Unhealthy
- Unhealthy
- Health
Status Undetermined - Undetermined
- Health
Status Healthy - Healthy
- Health
Status Warning - Warning
- Health
Status Unhealthy - Unhealthy
- Undetermined
- Undetermined
- Healthy
- Healthy
- Warning
- Warning
- Unhealthy
- Unhealthy
- Undetermined
- Undetermined
- Healthy
- Healthy
- Warning
- Warning
- Unhealthy
- Unhealthy
- UNDETERMINED
- Undetermined
- HEALTHY
- Healthy
- WARNING
- Warning
- UNHEALTHY
- Unhealthy
- "Undetermined"
- Undetermined
- "Healthy"
- Healthy
- "Warning"
- Warning
- "Unhealthy"
- Unhealthy
KeyProperties, KeyPropertiesArgs
KeyPropertiesResponse, KeyPropertiesResponseArgs
KeyVaultProperties, KeyVaultPropertiesArgs
- Id string
- Uri of KeyVault
- Key
Pulumi.
Azure Native. Power Platform. Inputs. Key Properties - Identity of the secret that includes name and version.
- Id string
- Uri of KeyVault
- Key
Key
Properties - Identity of the secret that includes name and version.
- id String
- Uri of KeyVault
- key
Key
Properties - Identity of the secret that includes name and version.
- id string
- Uri of KeyVault
- key
Key
Properties - Identity of the secret that includes name and version.
- id str
- Uri of KeyVault
- key
Key
Properties - Identity of the secret that includes name and version.
- id String
- Uri of KeyVault
- key Property Map
- Identity of the secret that includes name and version.
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs
- Id string
- Uri of KeyVault
- Key
Pulumi.
Azure Native. Power Platform. Inputs. Key Properties Response - Identity of the secret that includes name and version.
- Id string
- Uri of KeyVault
- Key
Key
Properties Response - Identity of the secret that includes name and version.
- id String
- Uri of KeyVault
- key
Key
Properties Response - Identity of the secret that includes name and version.
- id string
- Uri of KeyVault
- key
Key
Properties Response - Identity of the secret that includes name and version.
- id str
- Uri of KeyVault
- key
Key
Properties Response - Identity of the secret that includes name and version.
- id String
- Uri of KeyVault
- key Property Map
- Identity of the secret that includes name and version.
PropertiesEncryption, PropertiesEncryptionArgs
- Key
Vault Pulumi.Azure Native. Power Platform. Inputs. Key Vault Properties - Key vault properties.
- State
string | Pulumi.
Azure Native. Power Platform. State - The state of onboarding, which only appears in the response.
- Key
Vault KeyVault Properties - Key vault properties.
- State string | State
- The state of onboarding, which only appears in the response.
- key
Vault KeyVault Properties - Key vault properties.
- state String | State
- The state of onboarding, which only appears in the response.
- key
Vault KeyVault Properties - Key vault properties.
- state string | State
- The state of onboarding, which only appears in the response.
- key_
vault KeyVault Properties - Key vault properties.
- state str | State
- The state of onboarding, which only appears in the response.
- key
Vault Property Map - Key vault properties.
- state
String | "Enabled" | "Disabled" | "Not
Configured" - The state of onboarding, which only appears in the response.
PropertiesLockbox, PropertiesLockboxArgs
- State
string | Pulumi.
Azure Native. Power Platform. State - lockbox configuration
- state
String | "Enabled" | "Disabled" | "Not
Configured" - lockbox configuration
PropertiesNetworkInjection, PropertiesNetworkInjectionArgs
- Virtual
Networks Pulumi.Azure Native. Power Platform. Inputs. Virtual Network Properties List - Network injection configuration
- Virtual
Networks VirtualNetwork Properties List - Network injection configuration
- virtual
Networks VirtualNetwork Properties List - Network injection configuration
- virtual
Networks VirtualNetwork Properties List - Network injection configuration
- virtual_
networks VirtualNetwork Properties List - Network injection configuration
- virtual
Networks Property Map - Network injection configuration
PropertiesResponseEncryption, PropertiesResponseEncryptionArgs
- Key
Vault Pulumi.Azure Native. Power Platform. Inputs. Key Vault Properties Response - Key vault properties.
- State string
- The state of onboarding, which only appears in the response.
- Key
Vault KeyVault Properties Response - Key vault properties.
- State string
- The state of onboarding, which only appears in the response.
- key
Vault KeyVault Properties Response - Key vault properties.
- state String
- The state of onboarding, which only appears in the response.
- key
Vault KeyVault Properties Response - Key vault properties.
- state string
- The state of onboarding, which only appears in the response.
- key_
vault KeyVault Properties Response - Key vault properties.
- state str
- The state of onboarding, which only appears in the response.
- key
Vault Property Map - Key vault properties.
- state String
- The state of onboarding, which only appears in the response.
PropertiesResponseLockbox, PropertiesResponseLockboxArgs
- State string
- lockbox configuration
- State string
- lockbox configuration
- state String
- lockbox configuration
- state string
- lockbox configuration
- state str
- lockbox configuration
- state String
- lockbox configuration
PropertiesResponseNetworkInjection, PropertiesResponseNetworkInjectionArgs
- Virtual
Networks Pulumi.Azure Native. Power Platform. Inputs. Virtual Network Properties List Response - Network injection configuration
- Virtual
Networks VirtualNetwork Properties List Response - Network injection configuration
- virtual
Networks VirtualNetwork Properties List Response - Network injection configuration
- virtual
Networks VirtualNetwork Properties List Response - Network injection configuration
- virtual_
networks VirtualNetwork Properties List Response - Network injection configuration
- virtual
Networks Property Map - Network injection configuration
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- None
- None
- System
Assigned - SystemAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "None"
- None
State, StateArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Not
Configured - NotConfigured
- State
Enabled - Enabled
- State
Disabled - Disabled
- State
Not Configured - NotConfigured
- Enabled
- Enabled
- Disabled
- Disabled
- Not
Configured - NotConfigured
- Enabled
- Enabled
- Disabled
- Disabled
- Not
Configured - NotConfigured
- ENABLED
- Enabled
- DISABLED
- Disabled
- NOT_CONFIGURED
- NotConfigured
- "Enabled"
- Enabled
- "Disabled"
- Disabled
- "Not
Configured" - NotConfigured
SubnetProperties, SubnetPropertiesArgs
- Name string
- Subnet name.
- Name string
- Subnet name.
- name String
- Subnet name.
- name string
- Subnet name.
- name str
- Subnet name.
- name String
- Subnet name.
SubnetPropertiesResponse, SubnetPropertiesResponseArgs
- Name string
- Subnet name.
- Name string
- Subnet name.
- name String
- Subnet name.
- name string
- Subnet name.
- name str
- Subnet name.
- name String
- Subnet name.
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.
VirtualNetworkProperties, VirtualNetworkPropertiesArgs
- Id string
- Uri of the virtual network.
- Subnet
Pulumi.
Azure Native. Power Platform. Inputs. Subnet Properties - Properties of a subnet.
- Id string
- Uri of the virtual network.
- Subnet
Subnet
Properties - Properties of a subnet.
- id String
- Uri of the virtual network.
- subnet
Subnet
Properties - Properties of a subnet.
- id string
- Uri of the virtual network.
- subnet
Subnet
Properties - Properties of a subnet.
- id str
- Uri of the virtual network.
- subnet
Subnet
Properties - Properties of a subnet.
- id String
- Uri of the virtual network.
- subnet Property Map
- Properties of a subnet.
VirtualNetworkPropertiesList, VirtualNetworkPropertiesListArgs
- Next
Link string - Next page link if any.
- Value
List<Pulumi.
Azure Native. Power Platform. Inputs. Virtual Network Properties> - Array of virtual networks.
- Next
Link string - Next page link if any.
- Value
[]Virtual
Network Properties - Array of virtual networks.
- next
Link String - Next page link if any.
- value
List<Virtual
Network Properties> - Array of virtual networks.
- next
Link string - Next page link if any.
- value
Virtual
Network Properties[] - Array of virtual networks.
- next_
link str - Next page link if any.
- value
Sequence[Virtual
Network Properties] - Array of virtual networks.
- next
Link String - Next page link if any.
- value List<Property Map>
- Array of virtual networks.
VirtualNetworkPropertiesListResponse, VirtualNetworkPropertiesListResponseArgs
- Next
Link string - Next page link if any.
- Value
List<Pulumi.
Azure Native. Power Platform. Inputs. Virtual Network Properties Response> - Array of virtual networks.
- Next
Link string - Next page link if any.
- Value
[]Virtual
Network Properties Response - Array of virtual networks.
- next
Link String - Next page link if any.
- value
List<Virtual
Network Properties Response> - Array of virtual networks.
- next
Link string - Next page link if any.
- value
Virtual
Network Properties Response[] - Array of virtual networks.
- next_
link str - Next page link if any.
- value
Sequence[Virtual
Network Properties Response] - Array of virtual networks.
- next
Link String - Next page link if any.
- value List<Property Map>
- Array of virtual networks.
VirtualNetworkPropertiesResponse, VirtualNetworkPropertiesResponseArgs
- Id string
- Uri of the virtual network.
- Subnet
Pulumi.
Azure Native. Power Platform. Inputs. Subnet Properties Response - Properties of a subnet.
- Id string
- Uri of the virtual network.
- Subnet
Subnet
Properties Response - Properties of a subnet.
- id String
- Uri of the virtual network.
- subnet
Subnet
Properties Response - Properties of a subnet.
- id string
- Uri of the virtual network.
- subnet
Subnet
Properties Response - Properties of a subnet.
- id str
- Uri of the virtual network.
- subnet
Subnet
Properties Response - Properties of a subnet.
- id String
- Uri of the virtual network.
- subnet Property Map
- Properties of a subnet.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:powerplatform:EnterprisePolicy enterprisePolicy /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerPlatform/enterprisePolicies/{enterprisePolicyName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0