azure-native.media.MediaService
Explore with Pulumi AI
A Media Services account.
Uses Azure REST API version 2023-01-01. In version 2.x of the Azure Native provider, it used API version 2023-01-01.
Other available API versions: 2015-10-01, 2018-03-30-preview, 2018-06-01-preview, 2018-07-01, 2020-05-01, 2021-05-01, 2021-06-01, 2021-11-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native media [ApiVersion]
. See the version guide for details.
Create MediaService Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MediaService(name: string, args: MediaServiceArgs, opts?: CustomResourceOptions);
@overload
def MediaService(resource_name: str,
args: MediaServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MediaService(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
account_name: Optional[str] = None,
encryption: Optional[AccountEncryptionArgs] = None,
identity: Optional[MediaServiceIdentityArgs] = None,
key_delivery: Optional[KeyDeliveryArgs] = None,
location: Optional[str] = None,
minimum_tls_version: Optional[Union[str, MinimumTlsVersion]] = None,
public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
storage_accounts: Optional[Sequence[StorageAccountArgs]] = None,
storage_authentication: Optional[Union[str, StorageAuthentication]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewMediaService(ctx *Context, name string, args MediaServiceArgs, opts ...ResourceOption) (*MediaService, error)
public MediaService(string name, MediaServiceArgs args, CustomResourceOptions? opts = null)
public MediaService(String name, MediaServiceArgs args)
public MediaService(String name, MediaServiceArgs args, CustomResourceOptions options)
type: azure-native:media:MediaService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MediaServiceArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. MediaServiceArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MediaServiceArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MediaServiceArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. MediaServiceArgs - 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 mediaServiceResource = new AzureNative.Media.MediaService("mediaServiceResource", new()
{
ResourceGroupName = "string",
AccountName = "string",
Encryption = new AzureNative.Media.Inputs.AccountEncryptionArgs
{
Type = "string",
Identity = new AzureNative.Media.Inputs.ResourceIdentityArgs
{
UseSystemAssignedIdentity = false,
UserAssignedIdentity = "string",
},
KeyVaultProperties = new AzureNative.Media.Inputs.KeyVaultPropertiesArgs
{
KeyIdentifier = "string",
},
},
Identity = new AzureNative.Media.Inputs.MediaServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
KeyDelivery = new AzureNative.Media.Inputs.KeyDeliveryArgs
{
AccessControl = new AzureNative.Media.Inputs.AccessControlArgs
{
DefaultAction = "string",
IpAllowList = new[]
{
"string",
},
},
},
Location = "string",
MinimumTlsVersion = "string",
PublicNetworkAccess = "string",
StorageAccounts = new[]
{
new AzureNative.Media.Inputs.StorageAccountArgs
{
Type = "string",
Id = "string",
Identity = new AzureNative.Media.Inputs.ResourceIdentityArgs
{
UseSystemAssignedIdentity = false,
UserAssignedIdentity = "string",
},
},
},
StorageAuthentication = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := media.NewMediaService(ctx, "mediaServiceResource", &media.MediaServiceArgs{
ResourceGroupName: pulumi.String("string"),
AccountName: pulumi.String("string"),
Encryption: &media.AccountEncryptionArgs{
Type: pulumi.String("string"),
Identity: &media.ResourceIdentityArgs{
UseSystemAssignedIdentity: pulumi.Bool(false),
UserAssignedIdentity: pulumi.String("string"),
},
KeyVaultProperties: &media.KeyVaultPropertiesArgs{
KeyIdentifier: pulumi.String("string"),
},
},
Identity: &media.MediaServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
KeyDelivery: &media.KeyDeliveryArgs{
AccessControl: &media.AccessControlArgs{
DefaultAction: pulumi.String("string"),
IpAllowList: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Location: pulumi.String("string"),
MinimumTlsVersion: pulumi.String("string"),
PublicNetworkAccess: pulumi.String("string"),
StorageAccounts: media.StorageAccountArray{
&media.StorageAccountArgs{
Type: pulumi.String("string"),
Id: pulumi.String("string"),
Identity: &media.ResourceIdentityArgs{
UseSystemAssignedIdentity: pulumi.Bool(false),
UserAssignedIdentity: pulumi.String("string"),
},
},
},
StorageAuthentication: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var mediaServiceResource = new MediaService("mediaServiceResource", MediaServiceArgs.builder()
.resourceGroupName("string")
.accountName("string")
.encryption(AccountEncryptionArgs.builder()
.type("string")
.identity(ResourceIdentityArgs.builder()
.useSystemAssignedIdentity(false)
.userAssignedIdentity("string")
.build())
.keyVaultProperties(KeyVaultPropertiesArgs.builder()
.keyIdentifier("string")
.build())
.build())
.identity(MediaServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.keyDelivery(KeyDeliveryArgs.builder()
.accessControl(AccessControlArgs.builder()
.defaultAction("string")
.ipAllowList("string")
.build())
.build())
.location("string")
.minimumTlsVersion("string")
.publicNetworkAccess("string")
.storageAccounts(StorageAccountArgs.builder()
.type("string")
.id("string")
.identity(ResourceIdentityArgs.builder()
.useSystemAssignedIdentity(false)
.userAssignedIdentity("string")
.build())
.build())
.storageAuthentication("string")
.tags(Map.of("string", "string"))
.build());
media_service_resource = azure_native.media.MediaService("mediaServiceResource",
resource_group_name="string",
account_name="string",
encryption={
"type": "string",
"identity": {
"use_system_assigned_identity": False,
"user_assigned_identity": "string",
},
"key_vault_properties": {
"key_identifier": "string",
},
},
identity={
"type": "string",
"user_assigned_identities": ["string"],
},
key_delivery={
"access_control": {
"default_action": "string",
"ip_allow_list": ["string"],
},
},
location="string",
minimum_tls_version="string",
public_network_access="string",
storage_accounts=[{
"type": "string",
"id": "string",
"identity": {
"use_system_assigned_identity": False,
"user_assigned_identity": "string",
},
}],
storage_authentication="string",
tags={
"string": "string",
})
const mediaServiceResource = new azure_native.media.MediaService("mediaServiceResource", {
resourceGroupName: "string",
accountName: "string",
encryption: {
type: "string",
identity: {
useSystemAssignedIdentity: false,
userAssignedIdentity: "string",
},
keyVaultProperties: {
keyIdentifier: "string",
},
},
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
keyDelivery: {
accessControl: {
defaultAction: "string",
ipAllowList: ["string"],
},
},
location: "string",
minimumTlsVersion: "string",
publicNetworkAccess: "string",
storageAccounts: [{
type: "string",
id: "string",
identity: {
useSystemAssignedIdentity: false,
userAssignedIdentity: "string",
},
}],
storageAuthentication: "string",
tags: {
string: "string",
},
});
type: azure-native:media:MediaService
properties:
accountName: string
encryption:
identity:
useSystemAssignedIdentity: false
userAssignedIdentity: string
keyVaultProperties:
keyIdentifier: string
type: string
identity:
type: string
userAssignedIdentities:
- string
keyDelivery:
accessControl:
defaultAction: string
ipAllowList:
- string
location: string
minimumTlsVersion: string
publicNetworkAccess: string
resourceGroupName: string
storageAccounts:
- id: string
identity:
useSystemAssignedIdentity: false
userAssignedIdentity: string
type: string
storageAuthentication: string
tags:
string: string
MediaService Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MediaService resource accepts the following input properties:
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group within the Azure subscription.
- Account
Name Changes to this property will trigger replacement.
- The Media Services account name.
- Encryption
Pulumi.
Azure Native. Media. Inputs. Account Encryption - The account encryption properties.
- Identity
Pulumi.
Azure Native. Media. Inputs. Media Service Identity - The Managed Identity for the Media Services account.
- Key
Delivery Pulumi.Azure Native. Media. Inputs. Key Delivery - The Key Delivery properties for Media Services account.
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Minimum
Tls string | Pulumi.Version Azure Native. Media. Minimum Tls Version - The minimum TLS version allowed for this account's requests. This is an optional property. If unspecified, a secure default value will be used.
- Public
Network string | Pulumi.Access Azure Native. Media. Public Network Access - Whether or not public network access is allowed for resources under the Media Services account.
- Storage
Accounts List<Pulumi.Azure Native. Media. Inputs. Storage Account> - The storage accounts for this resource.
- Storage
Authentication string | Pulumi.Azure Native. Media. Storage Authentication - Dictionary<string, string>
- Resource tags.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group within the Azure subscription.
- Account
Name Changes to this property will trigger replacement.
- The Media Services account name.
- Encryption
Account
Encryption Args - The account encryption properties.
- Identity
Media
Service Identity Args - The Managed Identity for the Media Services account.
- Key
Delivery KeyDelivery Args - The Key Delivery properties for Media Services account.
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Minimum
Tls string | MinimumVersion Tls Version - The minimum TLS version allowed for this account's requests. This is an optional property. If unspecified, a secure default value will be used.
- Public
Network string | PublicAccess Network Access - Whether or not public network access is allowed for resources under the Media Services account.
- Storage
Accounts []StorageAccount Args - The storage accounts for this resource.
- Storage
Authentication string | StorageAuthentication - map[string]string
- Resource tags.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group within the Azure subscription.
- account
Name Changes to this property will trigger replacement.
- The Media Services account name.
- encryption
Account
Encryption - The account encryption properties.
- identity
Media
Service Identity - The Managed Identity for the Media Services account.
- key
Delivery KeyDelivery - The Key Delivery properties for Media Services account.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- minimum
Tls String | MinimumVersion Tls Version - The minimum TLS version allowed for this account's requests. This is an optional property. If unspecified, a secure default value will be used.
- public
Network String | PublicAccess Network Access - Whether or not public network access is allowed for resources under the Media Services account.
- storage
Accounts List<StorageAccount> - The storage accounts for this resource.
- storage
Authentication String | StorageAuthentication - Map<String,String>
- Resource tags.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group within the Azure subscription.
- account
Name Changes to this property will trigger replacement.
- The Media Services account name.
- encryption
Account
Encryption - The account encryption properties.
- identity
Media
Service Identity - The Managed Identity for the Media Services account.
- key
Delivery KeyDelivery - The Key Delivery properties for Media Services account.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- minimum
Tls string | MinimumVersion Tls Version - The minimum TLS version allowed for this account's requests. This is an optional property. If unspecified, a secure default value will be used.
- public
Network string | PublicAccess Network Access - Whether or not public network access is allowed for resources under the Media Services account.
- storage
Accounts StorageAccount[] - The storage accounts for this resource.
- storage
Authentication string | StorageAuthentication - {[key: string]: string}
- Resource tags.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The name of the resource group within the Azure subscription.
- account_
name Changes to this property will trigger replacement.
- The Media Services account name.
- encryption
Account
Encryption Args - The account encryption properties.
- identity
Media
Service Identity Args - The Managed Identity for the Media Services account.
- key_
delivery KeyDelivery Args - The Key Delivery properties for Media Services account.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- minimum_
tls_ str | Minimumversion Tls Version - The minimum TLS version allowed for this account's requests. This is an optional property. If unspecified, a secure default value will be used.
- public_
network_ str | Publicaccess Network Access - Whether or not public network access is allowed for resources under the Media Services account.
- storage_
accounts Sequence[StorageAccount Args] - The storage accounts for this resource.
- storage_
authentication str | StorageAuthentication - Mapping[str, str]
- Resource tags.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group within the Azure subscription.
- account
Name Changes to this property will trigger replacement.
- The Media Services account name.
- encryption Property Map
- The account encryption properties.
- identity Property Map
- The Managed Identity for the Media Services account.
- key
Delivery Property Map - The Key Delivery properties for Media Services account.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- minimum
Tls String | "Tls10" | "Tls11" | "Tls12" | "Tls13"Version - The minimum TLS version allowed for this account's requests. This is an optional property. If unspecified, a secure default value will be used.
- public
Network String | "Enabled" | "Disabled"Access - Whether or not public network access is allowed for resources under the Media Services account.
- storage
Accounts List<Property Map> - The storage accounts for this resource.
- storage
Authentication String | "System" | "ManagedIdentity" - Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the MediaService resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Media
Service stringId - The Media Services account ID.
- Name string
- The name of the resource
- Private
Endpoint List<Pulumi.Connections Azure Native. Media. Outputs. Private Endpoint Connection Response> - The Private Endpoint Connections created for the Media Service account.
- Provisioning
State string - Provisioning state of the Media Services account.
- System
Data Pulumi.Azure Native. Media. Outputs. System Data Response - The system metadata relating to this resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Media
Service stringId - The Media Services account ID.
- Name string
- The name of the resource
- Private
Endpoint []PrivateConnections Endpoint Connection Response - The Private Endpoint Connections created for the Media Service account.
- Provisioning
State string - Provisioning state of the Media Services account.
- System
Data SystemData Response - The system metadata relating to this resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- media
Service StringId - The Media Services account ID.
- name String
- The name of the resource
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - The Private Endpoint Connections created for the Media Service account.
- provisioning
State String - Provisioning state of the Media Services account.
- system
Data SystemData Response - The system metadata relating to this resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- media
Service stringId - The Media Services account ID.
- name string
- The name of the resource
- private
Endpoint PrivateConnections Endpoint Connection Response[] - The Private Endpoint Connections created for the Media Service account.
- provisioning
State string - Provisioning state of the Media Services account.
- system
Data SystemData Response - The system metadata relating to this resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- media_
service_ strid - The Media Services account ID.
- name str
- The name of the resource
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - The Private Endpoint Connections created for the Media Service account.
- provisioning_
state str - Provisioning state of the Media Services account.
- system_
data SystemData Response - The system metadata relating to this resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- media
Service StringId - The Media Services account ID.
- name String
- The name of the resource
- private
Endpoint List<Property Map>Connections - The Private Endpoint Connections created for the Media Service account.
- provisioning
State String - Provisioning state of the Media Services account.
- system
Data Property Map - The system metadata relating to this resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AccessControl, AccessControlArgs
- Default
Action string | Pulumi.Azure Native. Media. Default Action - The behavior for IP access control in Key Delivery.
- Ip
Allow List<string>List - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- Default
Action string | DefaultAction - The behavior for IP access control in Key Delivery.
- Ip
Allow []stringList - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- default
Action String | DefaultAction - The behavior for IP access control in Key Delivery.
- ip
Allow List<String>List - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- default
Action string | DefaultAction - The behavior for IP access control in Key Delivery.
- ip
Allow string[]List - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- default_
action str | DefaultAction - The behavior for IP access control in Key Delivery.
- ip_
allow_ Sequence[str]list - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- default
Action String | "Allow" | "Deny" - The behavior for IP access control in Key Delivery.
- ip
Allow List<String>List - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
AccessControlResponse, AccessControlResponseArgs
- Default
Action string - The behavior for IP access control in Key Delivery.
- Ip
Allow List<string>List - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- Default
Action string - The behavior for IP access control in Key Delivery.
- Ip
Allow []stringList - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- default
Action String - The behavior for IP access control in Key Delivery.
- ip
Allow List<String>List - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- default
Action string - The behavior for IP access control in Key Delivery.
- ip
Allow string[]List - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- default_
action str - The behavior for IP access control in Key Delivery.
- ip_
allow_ Sequence[str]list - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
- default
Action String - The behavior for IP access control in Key Delivery.
- ip
Allow List<String>List - The IP allow list for access control in Key Delivery. If the default action is set to 'Allow', the IP allow list must be empty.
AccountEncryption, AccountEncryptionArgs
- Type
This property is required. string | Pulumi.Azure Native. Media. Account Encryption Key Type - The type of key used to encrypt the Account Key.
- Identity
Pulumi.
Azure Native. Media. Inputs. Resource Identity - The Key Vault identity.
- Key
Vault Pulumi.Properties Azure Native. Media. Inputs. Key Vault Properties - The properties of the key used to encrypt the account.
- Type
This property is required. string | AccountEncryption Key Type - The type of key used to encrypt the Account Key.
- Identity
Resource
Identity - The Key Vault identity.
- Key
Vault KeyProperties Vault Properties - The properties of the key used to encrypt the account.
- type
This property is required. String | AccountEncryption Key Type - The type of key used to encrypt the Account Key.
- identity
Resource
Identity - The Key Vault identity.
- key
Vault KeyProperties Vault Properties - The properties of the key used to encrypt the account.
- type
This property is required. string | AccountEncryption Key Type - The type of key used to encrypt the Account Key.
- identity
Resource
Identity - The Key Vault identity.
- key
Vault KeyProperties Vault Properties - The properties of the key used to encrypt the account.
- type
This property is required. str | AccountEncryption Key Type - The type of key used to encrypt the Account Key.
- identity
Resource
Identity - The Key Vault identity.
- key_
vault_ Keyproperties Vault Properties - The properties of the key used to encrypt the account.
- type
This property is required. String | "SystemKey" | "Customer Key" - The type of key used to encrypt the Account Key.
- identity Property Map
- The Key Vault identity.
- key
Vault Property MapProperties - The properties of the key used to encrypt the account.
AccountEncryptionKeyType, AccountEncryptionKeyTypeArgs
- System
Key - SystemKeyThe Account Key is encrypted with a System Key.
- Customer
Key - CustomerKeyThe Account Key is encrypted with a Customer Key.
- Account
Encryption Key Type System Key - SystemKeyThe Account Key is encrypted with a System Key.
- Account
Encryption Key Type Customer Key - CustomerKeyThe Account Key is encrypted with a Customer Key.
- System
Key - SystemKeyThe Account Key is encrypted with a System Key.
- Customer
Key - CustomerKeyThe Account Key is encrypted with a Customer Key.
- System
Key - SystemKeyThe Account Key is encrypted with a System Key.
- Customer
Key - CustomerKeyThe Account Key is encrypted with a Customer Key.
- SYSTEM_KEY
- SystemKeyThe Account Key is encrypted with a System Key.
- CUSTOMER_KEY
- CustomerKeyThe Account Key is encrypted with a Customer Key.
- "System
Key" - SystemKeyThe Account Key is encrypted with a System Key.
- "Customer
Key" - CustomerKeyThe Account Key is encrypted with a Customer Key.
AccountEncryptionResponse, AccountEncryptionResponseArgs
- Status
This property is required. string - The current status of the Key Vault mapping.
- Type
This property is required. string - The type of key used to encrypt the Account Key.
- Identity
Pulumi.
Azure Native. Media. Inputs. Resource Identity Response - The Key Vault identity.
- Key
Vault Pulumi.Properties Azure Native. Media. Inputs. Key Vault Properties Response - The properties of the key used to encrypt the account.
- Status
This property is required. string - The current status of the Key Vault mapping.
- Type
This property is required. string - The type of key used to encrypt the Account Key.
- Identity
Resource
Identity Response - The Key Vault identity.
- Key
Vault KeyProperties Vault Properties Response - The properties of the key used to encrypt the account.
- status
This property is required. String - The current status of the Key Vault mapping.
- type
This property is required. String - The type of key used to encrypt the Account Key.
- identity
Resource
Identity Response - The Key Vault identity.
- key
Vault KeyProperties Vault Properties Response - The properties of the key used to encrypt the account.
- status
This property is required. string - The current status of the Key Vault mapping.
- type
This property is required. string - The type of key used to encrypt the Account Key.
- identity
Resource
Identity Response - The Key Vault identity.
- key
Vault KeyProperties Vault Properties Response - The properties of the key used to encrypt the account.
- status
This property is required. str - The current status of the Key Vault mapping.
- type
This property is required. str - The type of key used to encrypt the Account Key.
- identity
Resource
Identity Response - The Key Vault identity.
- key_
vault_ Keyproperties Vault Properties Response - The properties of the key used to encrypt the account.
- status
This property is required. String - The current status of the Key Vault mapping.
- type
This property is required. String - The type of key used to encrypt the Account Key.
- identity Property Map
- The Key Vault identity.
- key
Vault Property MapProperties - The properties of the key used to encrypt the account.
DefaultAction, DefaultActionArgs
- Allow
- AllowAll public IP addresses are allowed.
- Deny
- DenyPublic IP addresses are blocked.
- Default
Action Allow - AllowAll public IP addresses are allowed.
- Default
Action Deny - DenyPublic IP addresses are blocked.
- Allow
- AllowAll public IP addresses are allowed.
- Deny
- DenyPublic IP addresses are blocked.
- Allow
- AllowAll public IP addresses are allowed.
- Deny
- DenyPublic IP addresses are blocked.
- ALLOW
- AllowAll public IP addresses are allowed.
- DENY
- DenyPublic IP addresses are blocked.
- "Allow"
- AllowAll public IP addresses are allowed.
- "Deny"
- DenyPublic IP addresses are blocked.
KeyDelivery, KeyDeliveryArgs
- Access
Control Pulumi.Azure Native. Media. Inputs. Access Control - The access control properties for Key Delivery.
- Access
Control AccessControl - The access control properties for Key Delivery.
- access
Control AccessControl - The access control properties for Key Delivery.
- access
Control AccessControl - The access control properties for Key Delivery.
- access_
control AccessControl - The access control properties for Key Delivery.
- access
Control Property Map - The access control properties for Key Delivery.
KeyDeliveryResponse, KeyDeliveryResponseArgs
- Access
Control Pulumi.Azure Native. Media. Inputs. Access Control Response - The access control properties for Key Delivery.
- Access
Control AccessControl Response - The access control properties for Key Delivery.
- access
Control AccessControl Response - The access control properties for Key Delivery.
- access
Control AccessControl Response - The access control properties for Key Delivery.
- access_
control AccessControl Response - The access control properties for Key Delivery.
- access
Control Property Map - The access control properties for Key Delivery.
KeyVaultProperties, KeyVaultPropertiesArgs
- Key
Identifier string - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- Key
Identifier string - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- key
Identifier String - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- key
Identifier string - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- key_
identifier str - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- key
Identifier String - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs
- Current
Key Identifier This property is required. string - The current key used to encrypt the Media Services account, including the key version.
- Key
Identifier string - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- Current
Key Identifier This property is required. string - The current key used to encrypt the Media Services account, including the key version.
- Key
Identifier string - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- current
Key Identifier This property is required. String - The current key used to encrypt the Media Services account, including the key version.
- key
Identifier String - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- current
Key Identifier This property is required. string - The current key used to encrypt the Media Services account, including the key version.
- key
Identifier string - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- current_
key_ identifier This property is required. str - The current key used to encrypt the Media Services account, including the key version.
- key_
identifier str - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
- current
Key Identifier This property is required. String - The current key used to encrypt the Media Services account, including the key version.
- key
Identifier String - The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
MediaServiceIdentity, MediaServiceIdentityArgs
- Type
This property is required. string - The identity type.
- User
Assigned List<string>Identities - The user assigned managed identities.
- Type
This property is required. string - The identity type.
- User
Assigned []stringIdentities - The user assigned managed identities.
- type
This property is required. String - The identity type.
- user
Assigned List<String>Identities - The user assigned managed identities.
- type
This property is required. string - The identity type.
- user
Assigned string[]Identities - The user assigned managed identities.
- type
This property is required. str - The identity type.
- user_
assigned_ Sequence[str]identities - The user assigned managed identities.
- type
This property is required. String - The identity type.
- user
Assigned List<String>Identities - The user assigned managed identities.
MediaServiceIdentityResponse, MediaServiceIdentityResponseArgs
- Principal
Id This property is required. string - The Principal ID of the identity.
- Tenant
Id This property is required. string - The Tenant ID of the identity.
- Type
This property is required. string - The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Media. Inputs. User Assigned Managed Identity Response> - The user assigned managed identities.
- Principal
Id This property is required. string - The Principal ID of the identity.
- Tenant
Id This property is required. string - The Tenant ID of the identity.
- Type
This property is required. string - The identity type.
- User
Assigned map[string]UserIdentities Assigned Managed Identity Response - The user assigned managed identities.
- principal
Id This property is required. String - The Principal ID of the identity.
- tenant
Id This property is required. String - The Tenant ID of the identity.
- type
This property is required. String - The identity type.
- user
Assigned Map<String,UserIdentities Assigned Managed Identity Response> - The user assigned managed identities.
- principal
Id This property is required. string - The Principal ID of the identity.
- tenant
Id This property is required. string - The Tenant ID of the identity.
- type
This property is required. string - The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Managed Identity Response} - The user assigned managed identities.
- principal_
id This property is required. str - The Principal ID of the identity.
- tenant_
id This property is required. str - The Tenant ID of the identity.
- type
This property is required. str - The identity type.
- user_
assigned_ Mapping[str, Useridentities Assigned Managed Identity Response] - The user assigned managed identities.
- principal
Id This property is required. String - The Principal ID of the identity.
- tenant
Id This property is required. String - The Tenant ID of the identity.
- type
This property is required. String - The identity type.
- user
Assigned Map<Property Map>Identities - The user assigned managed identities.
MinimumTlsVersion, MinimumTlsVersionArgs
- Tls10
- Tls10Minimum TLS version is TLS 1.0.
- Tls11
- Tls11Minimum TLS version is TLS 1.1.
- Tls12
- Tls12Minimum TLS version is TLS 1.2.
- Tls13
- Tls13Minimum TLS version is TLS 1.3.
- Minimum
Tls Version Tls10 - Tls10Minimum TLS version is TLS 1.0.
- Minimum
Tls Version Tls11 - Tls11Minimum TLS version is TLS 1.1.
- Minimum
Tls Version Tls12 - Tls12Minimum TLS version is TLS 1.2.
- Minimum
Tls Version Tls13 - Tls13Minimum TLS version is TLS 1.3.
- Tls10
- Tls10Minimum TLS version is TLS 1.0.
- Tls11
- Tls11Minimum TLS version is TLS 1.1.
- Tls12
- Tls12Minimum TLS version is TLS 1.2.
- Tls13
- Tls13Minimum TLS version is TLS 1.3.
- Tls10
- Tls10Minimum TLS version is TLS 1.0.
- Tls11
- Tls11Minimum TLS version is TLS 1.1.
- Tls12
- Tls12Minimum TLS version is TLS 1.2.
- Tls13
- Tls13Minimum TLS version is TLS 1.3.
- TLS10
- Tls10Minimum TLS version is TLS 1.0.
- TLS11
- Tls11Minimum TLS version is TLS 1.1.
- TLS12
- Tls12Minimum TLS version is TLS 1.2.
- TLS13
- Tls13Minimum TLS version is TLS 1.3.
- "Tls10"
- Tls10Minimum TLS version is TLS 1.0.
- "Tls11"
- Tls11Minimum TLS version is TLS 1.1.
- "Tls12"
- Tls12Minimum TLS version is TLS 1.2.
- "Tls13"
- Tls13Minimum TLS version is TLS 1.3.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id
This property is required. string - Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name
This property is required. string - The name of the resource
- Private
Link Service Connection State This property is required. Pulumi.Azure Native. Media. Inputs. Private Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State This property is required. string - The provisioning state of the private endpoint connection resource.
- Type
This property is required. string - The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint Pulumi.Azure Native. Media. Inputs. Private Endpoint Response - The resource of private end point.
- Id
This property is required. string - Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name
This property is required. string - The name of the resource
- Private
Link Service Connection State This property is required. PrivateLink Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State This property is required. string - The provisioning state of the private endpoint connection resource.
- Type
This property is required. string - The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id
This property is required. String - Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name
This property is required. String - The name of the resource
- private
Link Service Connection State This property is required. PrivateLink Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State This property is required. String - The provisioning state of the private endpoint connection resource.
- type
This property is required. String - The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id
This property is required. string - Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name
This property is required. string - The name of the resource
- private
Link Service Connection State This property is required. PrivateLink Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State This property is required. string - The provisioning state of the private endpoint connection resource.
- type
This property is required. string - The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id
This property is required. str - Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name
This property is required. str - The name of the resource
- private_
link_ service_ connection_ state This property is required. PrivateLink Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning_
state This property is required. str - The provisioning state of the private endpoint connection resource.
- type
This property is required. str - The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private_
endpoint PrivateEndpoint Response - The resource of private end point.
- id
This property is required. String - Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name
This property is required. String - The name of the resource
- private
Link Service Connection State This property is required. Property Map - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State This property is required. String - The provisioning state of the private endpoint connection resource.
- type
This property is required. String - The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint Property Map - The resource of private end point.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id
This property is required. string - The ARM identifier for Private Endpoint
- Id
This property is required. string - The ARM identifier for Private Endpoint
- id
This property is required. String - The ARM identifier for Private Endpoint
- id
This property is required. string - The ARM identifier for Private Endpoint
- id
This property is required. str - The ARM identifier for Private Endpoint
- id
This property is required. String - The ARM identifier for Private Endpoint
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_
required str - A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
PublicNetworkAccess, PublicNetworkAccessArgs
- Enabled
- EnabledPublic network access is enabled.
- Disabled
- DisabledPublic network access is disabled.
- Public
Network Access Enabled - EnabledPublic network access is enabled.
- Public
Network Access Disabled - DisabledPublic network access is disabled.
- Enabled
- EnabledPublic network access is enabled.
- Disabled
- DisabledPublic network access is disabled.
- Enabled
- EnabledPublic network access is enabled.
- Disabled
- DisabledPublic network access is disabled.
- ENABLED
- EnabledPublic network access is enabled.
- DISABLED
- DisabledPublic network access is disabled.
- "Enabled"
- EnabledPublic network access is enabled.
- "Disabled"
- DisabledPublic network access is disabled.
ResourceIdentity, ResourceIdentityArgs
- Use
System Assigned Identity This property is required. bool - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- User
Assigned stringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- Use
System Assigned Identity This property is required. bool - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- User
Assigned stringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- use
System Assigned Identity This property is required. Boolean - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- user
Assigned StringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- use
System Assigned Identity This property is required. boolean - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- user
Assigned stringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- use_
system_ assigned_ identity This property is required. bool - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- user_
assigned_ stridentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- use
System Assigned Identity This property is required. Boolean - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- user
Assigned StringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
ResourceIdentityResponse, ResourceIdentityResponseArgs
- Use
System Assigned Identity This property is required. bool - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- User
Assigned stringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- Use
System Assigned Identity This property is required. bool - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- User
Assigned stringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- use
System Assigned Identity This property is required. Boolean - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- user
Assigned StringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- use
System Assigned Identity This property is required. boolean - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- user
Assigned stringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- use_
system_ assigned_ identity This property is required. bool - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- user_
assigned_ stridentity - The user assigned managed identity's ARM ID to use when accessing a resource.
- use
System Assigned Identity This property is required. Boolean - Indicates whether to use System Assigned Managed Identity. Mutual exclusive with User Assigned Managed Identity.
- user
Assigned StringIdentity - The user assigned managed identity's ARM ID to use when accessing a resource.
StorageAccount, StorageAccountArgs
- Type
This property is required. string | Pulumi.Azure Native. Media. Storage Account Type - The type of the storage account.
- Id string
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- Identity
Pulumi.
Azure Native. Media. Inputs. Resource Identity - The storage account identity.
- Type
This property is required. string | StorageAccount Type - The type of the storage account.
- Id string
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- Identity
Resource
Identity - The storage account identity.
- type
This property is required. String | StorageAccount Type - The type of the storage account.
- id String
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- identity
Resource
Identity - The storage account identity.
- type
This property is required. string | StorageAccount Type - The type of the storage account.
- id string
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- identity
Resource
Identity - The storage account identity.
- type
This property is required. str | StorageAccount Type - The type of the storage account.
- id str
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- identity
Resource
Identity - The storage account identity.
- type
This property is required. String | "Primary" | "Secondary" - The type of the storage account.
- id String
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- identity Property Map
- The storage account identity.
StorageAccountResponse, StorageAccountResponseArgs
- Status
This property is required. string - The current status of the storage account mapping.
- Type
This property is required. string - The type of the storage account.
- Id string
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- Identity
Pulumi.
Azure Native. Media. Inputs. Resource Identity Response - The storage account identity.
- Status
This property is required. string - The current status of the storage account mapping.
- Type
This property is required. string - The type of the storage account.
- Id string
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- Identity
Resource
Identity Response - The storage account identity.
- status
This property is required. String - The current status of the storage account mapping.
- type
This property is required. String - The type of the storage account.
- id String
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- identity
Resource
Identity Response - The storage account identity.
- status
This property is required. string - The current status of the storage account mapping.
- type
This property is required. string - The type of the storage account.
- id string
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- identity
Resource
Identity Response - The storage account identity.
- status
This property is required. str - The current status of the storage account mapping.
- type
This property is required. str - The type of the storage account.
- id str
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- identity
Resource
Identity Response - The storage account identity.
- status
This property is required. String - The current status of the storage account mapping.
- type
This property is required. String - The type of the storage account.
- id String
- The ID of the storage account resource. Media Services relies on tables and queues as well as blobs, so the primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage accounts can be added as secondary storage accounts.
- identity Property Map
- The storage account identity.
StorageAccountType, StorageAccountTypeArgs
- Primary
- PrimaryThe primary storage account for the Media Services account.
- Secondary
- SecondaryA secondary storage account for the Media Services account.
- Storage
Account Type Primary - PrimaryThe primary storage account for the Media Services account.
- Storage
Account Type Secondary - SecondaryA secondary storage account for the Media Services account.
- Primary
- PrimaryThe primary storage account for the Media Services account.
- Secondary
- SecondaryA secondary storage account for the Media Services account.
- Primary
- PrimaryThe primary storage account for the Media Services account.
- Secondary
- SecondaryA secondary storage account for the Media Services account.
- PRIMARY
- PrimaryThe primary storage account for the Media Services account.
- SECONDARY
- SecondaryA secondary storage account for the Media Services account.
- "Primary"
- PrimaryThe primary storage account for the Media Services account.
- "Secondary"
- SecondaryA secondary storage account for the Media Services account.
StorageAuthentication, StorageAuthenticationArgs
- System
- SystemSystem authentication.
- Managed
Identity - ManagedIdentityManaged Identity authentication.
- Storage
Authentication System - SystemSystem authentication.
- Storage
Authentication Managed Identity - ManagedIdentityManaged Identity authentication.
- System
- SystemSystem authentication.
- Managed
Identity - ManagedIdentityManaged Identity authentication.
- System
- SystemSystem authentication.
- Managed
Identity - ManagedIdentityManaged Identity authentication.
- SYSTEM
- SystemSystem authentication.
- MANAGED_IDENTITY
- ManagedIdentityManaged Identity authentication.
- "System"
- SystemSystem authentication.
- "Managed
Identity" - ManagedIdentityManaged Identity authentication.
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.
UserAssignedManagedIdentityResponse, UserAssignedManagedIdentityResponseArgs
- Client
Id This property is required. string - The client ID.
- Principal
Id This property is required. string - The principal ID.
- Client
Id This property is required. string - The client ID.
- Principal
Id This property is required. string - The principal ID.
- client
Id This property is required. String - The client ID.
- principal
Id This property is required. String - The principal ID.
- client
Id This property is required. string - The client ID.
- principal
Id This property is required. string - The principal ID.
- client_
id This property is required. str - The client ID.
- principal_
id This property is required. str - The principal ID.
- client
Id This property is required. String - The client ID.
- principal
Id This property is required. String - The principal ID.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:media:MediaService contososports /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaservices/{accountName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0