azure-native.storagecache.AmlFilesystem
Explore with Pulumi AI
An AML file system instance. Follows Azure Resource Manager standards: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/resource-api-reference.md Azure REST API version: 2023-05-01.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:storagecache:AmlFilesystem fs1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageCache/amlFilesystems/{amlFilesystemName} 
Create AmlFilesystem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AmlFilesystem(name: string, args: AmlFilesystemArgs, opts?: CustomResourceOptions);@overload
def AmlFilesystem(resource_name: str,
                  args: AmlFilesystemArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def AmlFilesystem(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  filesystem_subnet: Optional[str] = None,
                  maintenance_window: Optional[AmlFilesystemMaintenanceWindowArgs] = None,
                  resource_group_name: Optional[str] = None,
                  storage_capacity_ti_b: Optional[float] = None,
                  aml_filesystem_name: Optional[str] = None,
                  encryption_settings: Optional[AmlFilesystemEncryptionSettingsArgs] = None,
                  hsm: Optional[AmlFilesystemHsmArgs] = None,
                  identity: Optional[AmlFilesystemIdentityArgs] = None,
                  location: Optional[str] = None,
                  sku: Optional[SkuNameArgs] = None,
                  tags: Optional[Mapping[str, str]] = None,
                  zones: Optional[Sequence[str]] = None)func NewAmlFilesystem(ctx *Context, name string, args AmlFilesystemArgs, opts ...ResourceOption) (*AmlFilesystem, error)public AmlFilesystem(string name, AmlFilesystemArgs args, CustomResourceOptions? opts = null)
public AmlFilesystem(String name, AmlFilesystemArgs args)
public AmlFilesystem(String name, AmlFilesystemArgs args, CustomResourceOptions options)
type: azure-native:storagecache:AmlFilesystem
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 AmlFilesystemArgs
- 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 AmlFilesystemArgs
- 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 AmlFilesystemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AmlFilesystemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AmlFilesystemArgs
- 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 amlFilesystemResource = new AzureNative.StorageCache.AmlFilesystem("amlFilesystemResource", new()
{
    FilesystemSubnet = "string",
    MaintenanceWindow = new AzureNative.StorageCache.Inputs.AmlFilesystemMaintenanceWindowArgs
    {
        DayOfWeek = AzureNative.StorageCache.MaintenanceDayOfWeekType.Monday,
        TimeOfDayUTC = "string",
    },
    ResourceGroupName = "string",
    StorageCapacityTiB = 0,
    AmlFilesystemName = "string",
    EncryptionSettings = new AzureNative.StorageCache.Inputs.AmlFilesystemEncryptionSettingsArgs
    {
        KeyEncryptionKey = new AzureNative.StorageCache.Inputs.KeyVaultKeyReferenceArgs
        {
            KeyUrl = "string",
            SourceVault = new AzureNative.StorageCache.Inputs.KeyVaultKeyReferenceSourceVaultArgs
            {
                Id = "string",
            },
        },
    },
    Hsm = new AzureNative.StorageCache.Inputs.AmlFilesystemHsmArgs
    {
        Settings = new AzureNative.StorageCache.Inputs.AmlFilesystemHsmSettingsArgs
        {
            Container = "string",
            LoggingContainer = "string",
            ImportPrefix = "string",
        },
    },
    Identity = new AzureNative.StorageCache.Inputs.AmlFilesystemIdentityArgs
    {
        Type = AzureNative.StorageCache.AmlFilesystemIdentityType.UserAssigned,
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    Sku = new AzureNative.StorageCache.Inputs.SkuNameArgs
    {
        Name = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
    Zones = new[]
    {
        "string",
    },
});
example, err := storagecache.NewAmlFilesystem(ctx, "amlFilesystemResource", &storagecache.AmlFilesystemArgs{
	FilesystemSubnet: pulumi.String("string"),
	MaintenanceWindow: &storagecache.AmlFilesystemMaintenanceWindowArgs{
		DayOfWeek:    storagecache.MaintenanceDayOfWeekTypeMonday,
		TimeOfDayUTC: pulumi.String("string"),
	},
	ResourceGroupName:  pulumi.String("string"),
	StorageCapacityTiB: pulumi.Float64(0),
	AmlFilesystemName:  pulumi.String("string"),
	EncryptionSettings: &storagecache.AmlFilesystemEncryptionSettingsArgs{
		KeyEncryptionKey: &storagecache.KeyVaultKeyReferenceArgs{
			KeyUrl: pulumi.String("string"),
			SourceVault: &storagecache.KeyVaultKeyReferenceSourceVaultArgs{
				Id: pulumi.String("string"),
			},
		},
	},
	Hsm: &storagecache.AmlFilesystemHsmArgs{
		Settings: &storagecache.AmlFilesystemHsmSettingsArgs{
			Container:        pulumi.String("string"),
			LoggingContainer: pulumi.String("string"),
			ImportPrefix:     pulumi.String("string"),
		},
	},
	Identity: &storagecache.AmlFilesystemIdentityArgs{
		Type: storagecache.AmlFilesystemIdentityTypeUserAssigned,
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	Sku: &storagecache.SkuNameArgs{
		Name: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var amlFilesystemResource = new AmlFilesystem("amlFilesystemResource", AmlFilesystemArgs.builder()
    .filesystemSubnet("string")
    .maintenanceWindow(AmlFilesystemMaintenanceWindowArgs.builder()
        .dayOfWeek("Monday")
        .timeOfDayUTC("string")
        .build())
    .resourceGroupName("string")
    .storageCapacityTiB(0)
    .amlFilesystemName("string")
    .encryptionSettings(AmlFilesystemEncryptionSettingsArgs.builder()
        .keyEncryptionKey(KeyVaultKeyReferenceArgs.builder()
            .keyUrl("string")
            .sourceVault(KeyVaultKeyReferenceSourceVaultArgs.builder()
                .id("string")
                .build())
            .build())
        .build())
    .hsm(AmlFilesystemHsmArgs.builder()
        .settings(AmlFilesystemHsmSettingsArgs.builder()
            .container("string")
            .loggingContainer("string")
            .importPrefix("string")
            .build())
        .build())
    .identity(AmlFilesystemIdentityArgs.builder()
        .type("UserAssigned")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .sku(SkuNameArgs.builder()
        .name("string")
        .build())
    .tags(Map.of("string", "string"))
    .zones("string")
    .build());
aml_filesystem_resource = azure_native.storagecache.AmlFilesystem("amlFilesystemResource",
    filesystem_subnet="string",
    maintenance_window={
        "day_of_week": azure_native.storagecache.MaintenanceDayOfWeekType.MONDAY,
        "time_of_day_utc": "string",
    },
    resource_group_name="string",
    storage_capacity_ti_b=0,
    aml_filesystem_name="string",
    encryption_settings={
        "key_encryption_key": {
            "key_url": "string",
            "source_vault": {
                "id": "string",
            },
        },
    },
    hsm={
        "settings": {
            "container": "string",
            "logging_container": "string",
            "import_prefix": "string",
        },
    },
    identity={
        "type": azure_native.storagecache.AmlFilesystemIdentityType.USER_ASSIGNED,
        "user_assigned_identities": ["string"],
    },
    location="string",
    sku={
        "name": "string",
    },
    tags={
        "string": "string",
    },
    zones=["string"])
const amlFilesystemResource = new azure_native.storagecache.AmlFilesystem("amlFilesystemResource", {
    filesystemSubnet: "string",
    maintenanceWindow: {
        dayOfWeek: azure_native.storagecache.MaintenanceDayOfWeekType.Monday,
        timeOfDayUTC: "string",
    },
    resourceGroupName: "string",
    storageCapacityTiB: 0,
    amlFilesystemName: "string",
    encryptionSettings: {
        keyEncryptionKey: {
            keyUrl: "string",
            sourceVault: {
                id: "string",
            },
        },
    },
    hsm: {
        settings: {
            container: "string",
            loggingContainer: "string",
            importPrefix: "string",
        },
    },
    identity: {
        type: azure_native.storagecache.AmlFilesystemIdentityType.UserAssigned,
        userAssignedIdentities: ["string"],
    },
    location: "string",
    sku: {
        name: "string",
    },
    tags: {
        string: "string",
    },
    zones: ["string"],
});
type: azure-native:storagecache:AmlFilesystem
properties:
    amlFilesystemName: string
    encryptionSettings:
        keyEncryptionKey:
            keyUrl: string
            sourceVault:
                id: string
    filesystemSubnet: string
    hsm:
        settings:
            container: string
            importPrefix: string
            loggingContainer: string
    identity:
        type: UserAssigned
        userAssignedIdentities:
            - string
    location: string
    maintenanceWindow:
        dayOfWeek: Monday
        timeOfDayUTC: string
    resourceGroupName: string
    sku:
        name: string
    storageCapacityTiB: 0
    tags:
        string: string
    zones:
        - string
AmlFilesystem 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 AmlFilesystem resource accepts the following input properties:
- FilesystemSubnet string
- Subnet used for managing the AML file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the VNET's address space.
- MaintenanceWindow Pulumi.Azure Native. Storage Cache. Inputs. Aml Filesystem Maintenance Window 
- Start time of a 30-minute weekly maintenance window.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- StorageCapacity doubleTi B 
- The size of the AML file system, in TiB. This might be rounded up.
- AmlFilesystem stringName 
- Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- EncryptionSettings Pulumi.Azure Native. Storage Cache. Inputs. Aml Filesystem Encryption Settings 
- Specifies encryption settings of the AML file system.
- Hsm
Pulumi.Azure Native. Storage Cache. Inputs. Aml Filesystem Hsm 
- Hydration and archive settings and status
- Identity
Pulumi.Azure Native. Storage Cache. Inputs. Aml Filesystem Identity 
- The managed identity used by the AML file system, if configured.
- Location string
- The geo-location where the resource lives
- Sku
Pulumi.Azure Native. Storage Cache. Inputs. Sku Name 
- SKU for the resource.
- Dictionary<string, string>
- Resource tags.
- Zones List<string>
- Availability zones for resources. This field should only contain a single element in the array.
- FilesystemSubnet string
- Subnet used for managing the AML file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the VNET's address space.
- MaintenanceWindow AmlFilesystem Maintenance Window Args 
- Start time of a 30-minute weekly maintenance window.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- StorageCapacity float64Ti B 
- The size of the AML file system, in TiB. This might be rounded up.
- AmlFilesystem stringName 
- Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- EncryptionSettings AmlFilesystem Encryption Settings Args 
- Specifies encryption settings of the AML file system.
- Hsm
AmlFilesystem Hsm Args 
- Hydration and archive settings and status
- Identity
AmlFilesystem Identity Args 
- The managed identity used by the AML file system, if configured.
- Location string
- The geo-location where the resource lives
- Sku
SkuName Args 
- SKU for the resource.
- map[string]string
- Resource tags.
- Zones []string
- Availability zones for resources. This field should only contain a single element in the array.
- filesystemSubnet String
- Subnet used for managing the AML file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the VNET's address space.
- maintenanceWindow AmlFilesystem Maintenance Window 
- Start time of a 30-minute weekly maintenance window.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- storageCapacity DoubleTi B 
- The size of the AML file system, in TiB. This might be rounded up.
- amlFilesystem StringName 
- Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- encryptionSettings AmlFilesystem Encryption Settings 
- Specifies encryption settings of the AML file system.
- hsm
AmlFilesystem Hsm 
- Hydration and archive settings and status
- identity
AmlFilesystem Identity 
- The managed identity used by the AML file system, if configured.
- location String
- The geo-location where the resource lives
- sku
SkuName 
- SKU for the resource.
- Map<String,String>
- Resource tags.
- zones List<String>
- Availability zones for resources. This field should only contain a single element in the array.
- filesystemSubnet string
- Subnet used for managing the AML file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the VNET's address space.
- maintenanceWindow AmlFilesystem Maintenance Window 
- Start time of a 30-minute weekly maintenance window.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- storageCapacity numberTi B 
- The size of the AML file system, in TiB. This might be rounded up.
- amlFilesystem stringName 
- Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- encryptionSettings AmlFilesystem Encryption Settings 
- Specifies encryption settings of the AML file system.
- hsm
AmlFilesystem Hsm 
- Hydration and archive settings and status
- identity
AmlFilesystem Identity 
- The managed identity used by the AML file system, if configured.
- location string
- The geo-location where the resource lives
- sku
SkuName 
- SKU for the resource.
- {[key: string]: string}
- Resource tags.
- zones string[]
- Availability zones for resources. This field should only contain a single element in the array.
- filesystem_subnet str
- Subnet used for managing the AML file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the VNET's address space.
- maintenance_window AmlFilesystem Maintenance Window Args 
- Start time of a 30-minute weekly maintenance window.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- storage_capacity_ floatti_ b 
- The size of the AML file system, in TiB. This might be rounded up.
- aml_filesystem_ strname 
- Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- encryption_settings AmlFilesystem Encryption Settings Args 
- Specifies encryption settings of the AML file system.
- hsm
AmlFilesystem Hsm Args 
- Hydration and archive settings and status
- identity
AmlFilesystem Identity Args 
- The managed identity used by the AML file system, if configured.
- location str
- The geo-location where the resource lives
- sku
SkuName Args 
- SKU for the resource.
- Mapping[str, str]
- Resource tags.
- zones Sequence[str]
- Availability zones for resources. This field should only contain a single element in the array.
- filesystemSubnet String
- Subnet used for managing the AML file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the VNET's address space.
- maintenanceWindow Property Map
- Start time of a 30-minute weekly maintenance window.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- storageCapacity NumberTi B 
- The size of the AML file system, in TiB. This might be rounded up.
- amlFilesystem StringName 
- Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- encryptionSettings Property Map
- Specifies encryption settings of the AML file system.
- hsm Property Map
- Hydration and archive settings and status
- identity Property Map
- The managed identity used by the AML file system, if configured.
- location String
- The geo-location where the resource lives
- sku Property Map
- SKU for the resource.
- Map<String>
- Resource tags.
- zones List<String>
- Availability zones for resources. This field should only contain a single element in the array.
Outputs
All input properties are implicitly available as output properties. Additionally, the AmlFilesystem resource produces the following output properties:
- ClientInfo Pulumi.Azure Native. Storage Cache. Outputs. Aml Filesystem Client Info Response 
- Client information for the AML file system.
- Health
Pulumi.Azure Native. Storage Cache. Outputs. Aml Filesystem Health Response 
- Health of the AML file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- ARM provisioning state.
- SystemData Pulumi.Azure Native. Storage Cache. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- ThroughputProvisioned intMBps 
- Throughput provisioned in MB per sec, calculated as storageCapacityTiB * per-unit storage throughput
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- ClientInfo AmlFilesystem Client Info Response 
- Client information for the AML file system.
- Health
AmlFilesystem Health Response 
- Health of the AML file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- ARM provisioning state.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- ThroughputProvisioned intMBps 
- Throughput provisioned in MB per sec, calculated as storageCapacityTiB * per-unit storage throughput
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- clientInfo AmlFilesystem Client Info Response 
- Client information for the AML file system.
- health
AmlFilesystem Health Response 
- Health of the AML file system.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- ARM provisioning state.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- throughputProvisioned IntegerMBps 
- Throughput provisioned in MB per sec, calculated as storageCapacityTiB * per-unit storage throughput
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- clientInfo AmlFilesystem Client Info Response 
- Client information for the AML file system.
- health
AmlFilesystem Health Response 
- Health of the AML file system.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioningState string
- ARM provisioning state.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- throughputProvisioned numberMBps 
- Throughput provisioned in MB per sec, calculated as storageCapacityTiB * per-unit storage throughput
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- client_info AmlFilesystem Client Info Response 
- Client information for the AML file system.
- health
AmlFilesystem Health Response 
- Health of the AML file system.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_state str
- ARM provisioning state.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- throughput_provisioned_ intm_ bps 
- Throughput provisioned in MB per sec, calculated as storageCapacityTiB * per-unit storage throughput
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- clientInfo Property Map
- Client information for the AML file system.
- health Property Map
- Health of the AML file system.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- ARM provisioning state.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- throughputProvisioned NumberMBps 
- Throughput provisioned in MB per sec, calculated as storageCapacityTiB * per-unit storage throughput
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AmlFilesystemArchiveResponse, AmlFilesystemArchiveResponseArgs        
- FilesystemPath string
- Lustre file system path to archive relative to the file system root. Specify '/' to archive all modified data.
- Status
Pulumi.Azure Native. Storage Cache. Inputs. Aml Filesystem Archive Response Status 
- The status of the archive
- FilesystemPath string
- Lustre file system path to archive relative to the file system root. Specify '/' to archive all modified data.
- Status
AmlFilesystem Archive Response Status 
- The status of the archive
- filesystemPath String
- Lustre file system path to archive relative to the file system root. Specify '/' to archive all modified data.
- status
AmlFilesystem Archive Response Status 
- The status of the archive
- filesystemPath string
- Lustre file system path to archive relative to the file system root. Specify '/' to archive all modified data.
- status
AmlFilesystem Archive Response Status 
- The status of the archive
- filesystem_path str
- Lustre file system path to archive relative to the file system root. Specify '/' to archive all modified data.
- status
AmlFilesystem Archive Response Status 
- The status of the archive
- filesystemPath String
- Lustre file system path to archive relative to the file system root. Specify '/' to archive all modified data.
- status Property Map
- The status of the archive
AmlFilesystemArchiveResponseStatus, AmlFilesystemArchiveResponseStatusArgs          
- ErrorCode string
- Server-defined error code for the archive operation
- ErrorMessage string
- Server-defined error message for the archive operation
- LastCompletion stringTime 
- The time of the last completed archive operation
- LastStarted stringTime 
- The time the latest archive operation started
- PercentComplete int
- The completion percentage of the archive operation
- State string
- The state of the archive operation
- ErrorCode string
- Server-defined error code for the archive operation
- ErrorMessage string
- Server-defined error message for the archive operation
- LastCompletion stringTime 
- The time of the last completed archive operation
- LastStarted stringTime 
- The time the latest archive operation started
- PercentComplete int
- The completion percentage of the archive operation
- State string
- The state of the archive operation
- errorCode String
- Server-defined error code for the archive operation
- errorMessage String
- Server-defined error message for the archive operation
- lastCompletion StringTime 
- The time of the last completed archive operation
- lastStarted StringTime 
- The time the latest archive operation started
- percentComplete Integer
- The completion percentage of the archive operation
- state String
- The state of the archive operation
- errorCode string
- Server-defined error code for the archive operation
- errorMessage string
- Server-defined error message for the archive operation
- lastCompletion stringTime 
- The time of the last completed archive operation
- lastStarted stringTime 
- The time the latest archive operation started
- percentComplete number
- The completion percentage of the archive operation
- state string
- The state of the archive operation
- error_code str
- Server-defined error code for the archive operation
- error_message str
- Server-defined error message for the archive operation
- last_completion_ strtime 
- The time of the last completed archive operation
- last_started_ strtime 
- The time the latest archive operation started
- percent_complete int
- The completion percentage of the archive operation
- state str
- The state of the archive operation
- errorCode String
- Server-defined error code for the archive operation
- errorMessage String
- Server-defined error message for the archive operation
- lastCompletion StringTime 
- The time of the last completed archive operation
- lastStarted StringTime 
- The time the latest archive operation started
- percentComplete Number
- The completion percentage of the archive operation
- state String
- The state of the archive operation
AmlFilesystemClientInfoResponse, AmlFilesystemClientInfoResponseArgs          
- ContainerStorage Pulumi.Interface Azure Native. Storage Cache. Inputs. Aml Filesystem Container Storage Interface Response 
- Container Storage Interface information for the AML file system.
- LustreVersion string
- The version of Lustre running in the AML file system
- MgsAddress string
- The IPv4 address used by clients to mount the AML file system's Lustre Management Service (MGS).
- MountCommand string
- Recommended command to mount the AML file system
- ContainerStorage AmlInterface Filesystem Container Storage Interface Response 
- Container Storage Interface information for the AML file system.
- LustreVersion string
- The version of Lustre running in the AML file system
- MgsAddress string
- The IPv4 address used by clients to mount the AML file system's Lustre Management Service (MGS).
- MountCommand string
- Recommended command to mount the AML file system
- containerStorage AmlInterface Filesystem Container Storage Interface Response 
- Container Storage Interface information for the AML file system.
- lustreVersion String
- The version of Lustre running in the AML file system
- mgsAddress String
- The IPv4 address used by clients to mount the AML file system's Lustre Management Service (MGS).
- mountCommand String
- Recommended command to mount the AML file system
- containerStorage AmlInterface Filesystem Container Storage Interface Response 
- Container Storage Interface information for the AML file system.
- lustreVersion string
- The version of Lustre running in the AML file system
- mgsAddress string
- The IPv4 address used by clients to mount the AML file system's Lustre Management Service (MGS).
- mountCommand string
- Recommended command to mount the AML file system
- container_storage_ Amlinterface Filesystem Container Storage Interface Response 
- Container Storage Interface information for the AML file system.
- lustre_version str
- The version of Lustre running in the AML file system
- mgs_address str
- The IPv4 address used by clients to mount the AML file system's Lustre Management Service (MGS).
- mount_command str
- Recommended command to mount the AML file system
- containerStorage Property MapInterface 
- Container Storage Interface information for the AML file system.
- lustreVersion String
- The version of Lustre running in the AML file system
- mgsAddress String
- The IPv4 address used by clients to mount the AML file system's Lustre Management Service (MGS).
- mountCommand String
- Recommended command to mount the AML file system
AmlFilesystemContainerStorageInterfaceResponse, AmlFilesystemContainerStorageInterfaceResponseArgs            
- PersistentVolume string
- Recommended AKS Persistent Volume for the CSI driver, in Base64 encoded YAML
- PersistentVolume stringClaim 
- Recommended AKS Persistent Volume Claim for the CSI driver, in Base64 encoded YAML
- StorageClass string
- Recommended AKS Storage Class for the CSI driver, in Base64 encoded YAML
- PersistentVolume string
- Recommended AKS Persistent Volume for the CSI driver, in Base64 encoded YAML
- PersistentVolume stringClaim 
- Recommended AKS Persistent Volume Claim for the CSI driver, in Base64 encoded YAML
- StorageClass string
- Recommended AKS Storage Class for the CSI driver, in Base64 encoded YAML
- persistentVolume String
- Recommended AKS Persistent Volume for the CSI driver, in Base64 encoded YAML
- persistentVolume StringClaim 
- Recommended AKS Persistent Volume Claim for the CSI driver, in Base64 encoded YAML
- storageClass String
- Recommended AKS Storage Class for the CSI driver, in Base64 encoded YAML
- persistentVolume string
- Recommended AKS Persistent Volume for the CSI driver, in Base64 encoded YAML
- persistentVolume stringClaim 
- Recommended AKS Persistent Volume Claim for the CSI driver, in Base64 encoded YAML
- storageClass string
- Recommended AKS Storage Class for the CSI driver, in Base64 encoded YAML
- persistent_volume str
- Recommended AKS Persistent Volume for the CSI driver, in Base64 encoded YAML
- persistent_volume_ strclaim 
- Recommended AKS Persistent Volume Claim for the CSI driver, in Base64 encoded YAML
- storage_class str
- Recommended AKS Storage Class for the CSI driver, in Base64 encoded YAML
- persistentVolume String
- Recommended AKS Persistent Volume for the CSI driver, in Base64 encoded YAML
- persistentVolume StringClaim 
- Recommended AKS Persistent Volume Claim for the CSI driver, in Base64 encoded YAML
- storageClass String
- Recommended AKS Storage Class for the CSI driver, in Base64 encoded YAML
AmlFilesystemEncryptionSettings, AmlFilesystemEncryptionSettingsArgs        
- KeyEncryption Pulumi.Key Azure Native. Storage Cache. Inputs. Key Vault Key Reference 
- Specifies the location of the encryption key in Key Vault.
- KeyEncryption KeyKey Vault Key Reference 
- Specifies the location of the encryption key in Key Vault.
- keyEncryption KeyKey Vault Key Reference 
- Specifies the location of the encryption key in Key Vault.
- keyEncryption KeyKey Vault Key Reference 
- Specifies the location of the encryption key in Key Vault.
- key_encryption_ Keykey Vault Key Reference 
- Specifies the location of the encryption key in Key Vault.
- keyEncryption Property MapKey 
- Specifies the location of the encryption key in Key Vault.
AmlFilesystemEncryptionSettingsResponse, AmlFilesystemEncryptionSettingsResponseArgs          
- KeyEncryption Pulumi.Key Azure Native. Storage Cache. Inputs. Key Vault Key Reference Response 
- Specifies the location of the encryption key in Key Vault.
- KeyEncryption KeyKey Vault Key Reference Response 
- Specifies the location of the encryption key in Key Vault.
- keyEncryption KeyKey Vault Key Reference Response 
- Specifies the location of the encryption key in Key Vault.
- keyEncryption KeyKey Vault Key Reference Response 
- Specifies the location of the encryption key in Key Vault.
- key_encryption_ Keykey Vault Key Reference Response 
- Specifies the location of the encryption key in Key Vault.
- keyEncryption Property MapKey 
- Specifies the location of the encryption key in Key Vault.
AmlFilesystemHealthResponse, AmlFilesystemHealthResponseArgs        
- State string
- List of AML file system health states.
- StatusCode string
- Server-defined error code for the AML file system health
- StatusDescription string
- Describes the health state.
- State string
- List of AML file system health states.
- StatusCode string
- Server-defined error code for the AML file system health
- StatusDescription string
- Describes the health state.
- state String
- List of AML file system health states.
- statusCode String
- Server-defined error code for the AML file system health
- statusDescription String
- Describes the health state.
- state string
- List of AML file system health states.
- statusCode string
- Server-defined error code for the AML file system health
- statusDescription string
- Describes the health state.
- state str
- List of AML file system health states.
- status_code str
- Server-defined error code for the AML file system health
- status_description str
- Describes the health state.
- state String
- List of AML file system health states.
- statusCode String
- Server-defined error code for the AML file system health
- statusDescription String
- Describes the health state.
AmlFilesystemHsm, AmlFilesystemHsmArgs      
- Settings
Pulumi.Azure Native. Storage Cache. Inputs. Aml Filesystem Hsm Settings 
- Specifies HSM settings of the AML file system.
- Settings
AmlFilesystem Hsm Settings 
- Specifies HSM settings of the AML file system.
- settings
AmlFilesystem Hsm Settings 
- Specifies HSM settings of the AML file system.
- settings
AmlFilesystem Hsm Settings 
- Specifies HSM settings of the AML file system.
- settings
AmlFilesystem Hsm Settings 
- Specifies HSM settings of the AML file system.
- settings Property Map
- Specifies HSM settings of the AML file system.
AmlFilesystemHsmSettings, AmlFilesystemHsmSettingsArgs        
- Container string
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- LoggingContainer string
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- ImportPrefix string
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- Container string
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- LoggingContainer string
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- ImportPrefix string
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- container String
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- loggingContainer String
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- importPrefix String
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- container string
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- loggingContainer string
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- importPrefix string
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- container str
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- logging_container str
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- import_prefix str
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- container String
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- loggingContainer String
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- importPrefix String
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
AmlFilesystemHsmSettingsResponse, AmlFilesystemHsmSettingsResponseArgs          
- Container string
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- LoggingContainer string
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- ImportPrefix string
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- Container string
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- LoggingContainer string
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- ImportPrefix string
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- container String
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- loggingContainer String
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- importPrefix String
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- container string
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- loggingContainer string
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- importPrefix string
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- container str
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- logging_container str
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- import_prefix str
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
- container String
- Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
- loggingContainer String
- Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
- importPrefix String
- Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
AmlFilesystemIdentity, AmlFilesystemIdentityArgs      
- Type
Pulumi.Azure Native. Storage Cache. Aml Filesystem Identity Type 
- The type of identity used for the resource.
- UserAssigned List<string>Identities 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- Type
AmlFilesystem Identity Type 
- The type of identity used for the resource.
- UserAssigned []stringIdentities 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- type
AmlFilesystem Identity Type 
- The type of identity used for the resource.
- userAssigned List<String>Identities 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- type
AmlFilesystem Identity Type 
- The type of identity used for the resource.
- userAssigned string[]Identities 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- type
AmlFilesystem Identity Type 
- The type of identity used for the resource.
- user_assigned_ Sequence[str]identities 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- type
"UserAssigned" | "None" 
- The type of identity used for the resource.
- userAssigned List<String>Identities 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
AmlFilesystemIdentityResponse, AmlFilesystemIdentityResponseArgs        
- PrincipalId string
- The principal ID for the user-assigned identity of the resource.
- TenantId string
- The tenant ID associated with the resource.
- Type string
- The type of identity used for the resource.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Storage Cache. Inputs. User Assigned Identities Response User Assigned Identities> 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- PrincipalId string
- The principal ID for the user-assigned identity of the resource.
- TenantId string
- The tenant ID associated with the resource.
- Type string
- The type of identity used for the resource.
- UserAssigned map[string]UserIdentities Assigned Identities Response User Assigned Identities 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- principalId String
- The principal ID for the user-assigned identity of the resource.
- tenantId String
- The tenant ID associated with the resource.
- type String
- The type of identity used for the resource.
- userAssigned Map<String,UserIdentities Assigned Identities Response User Assigned Identities> 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- principalId string
- The principal ID for the user-assigned identity of the resource.
- tenantId string
- The tenant ID associated with the resource.
- type string
- The type of identity used for the resource.
- userAssigned {[key: string]: UserIdentities Assigned Identities Response User Assigned Identities} 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- principal_id str
- The principal ID for the user-assigned identity of the resource.
- tenant_id str
- The tenant ID associated with the resource.
- type str
- The type of identity used for the resource.
- user_assigned_ Mapping[str, Useridentities Assigned Identities Response User Assigned Identities] 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
- principalId String
- The principal ID for the user-assigned identity of the resource.
- tenantId String
- The tenant ID associated with the resource.
- type String
- The type of identity used for the resource.
- userAssigned Map<Property Map>Identities 
- A dictionary where each key is a user assigned identity resource ID, and each key's value is an empty dictionary.
AmlFilesystemIdentityType, AmlFilesystemIdentityTypeArgs        
- UserAssigned 
- UserAssigned
- None
- None
- AmlFilesystem Identity Type User Assigned 
- UserAssigned
- AmlFilesystem Identity Type None 
- None
- UserAssigned 
- UserAssigned
- None
- None
- UserAssigned 
- UserAssigned
- None
- None
- USER_ASSIGNED
- UserAssigned
- NONE
- None
- "UserAssigned" 
- UserAssigned
- "None"
- None
AmlFilesystemMaintenanceWindow, AmlFilesystemMaintenanceWindowArgs        
- DayOf Pulumi.Week Azure Native. Storage Cache. Maintenance Day Of Week Type 
- Day of the week on which the maintenance window will occur.
- TimeOf stringDay UTC 
- The time of day (in UTC) to start the maintenance window.
- DayOf MaintenanceWeek Day Of Week Type 
- Day of the week on which the maintenance window will occur.
- TimeOf stringDay UTC 
- The time of day (in UTC) to start the maintenance window.
- dayOf MaintenanceWeek Day Of Week Type 
- Day of the week on which the maintenance window will occur.
- timeOf StringDay UTC 
- The time of day (in UTC) to start the maintenance window.
- dayOf MaintenanceWeek Day Of Week Type 
- Day of the week on which the maintenance window will occur.
- timeOf stringDay UTC 
- The time of day (in UTC) to start the maintenance window.
- day_of_ Maintenanceweek Day Of Week Type 
- Day of the week on which the maintenance window will occur.
- time_of_ strday_ utc 
- The time of day (in UTC) to start the maintenance window.
- dayOf "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday"Week 
- Day of the week on which the maintenance window will occur.
- timeOf StringDay UTC 
- The time of day (in UTC) to start the maintenance window.
AmlFilesystemResponseHsm, AmlFilesystemResponseHsmArgs        
- ArchiveStatus List<Pulumi.Azure Native. Storage Cache. Inputs. Aml Filesystem Archive Response> 
- Archive status
- Settings
Pulumi.Azure Native. Storage Cache. Inputs. Aml Filesystem Hsm Settings Response 
- Specifies HSM settings of the AML file system.
- ArchiveStatus []AmlFilesystem Archive Response 
- Archive status
- Settings
AmlFilesystem Hsm Settings Response 
- Specifies HSM settings of the AML file system.
- archiveStatus List<AmlFilesystem Archive Response> 
- Archive status
- settings
AmlFilesystem Hsm Settings Response 
- Specifies HSM settings of the AML file system.
- archiveStatus AmlFilesystem Archive Response[] 
- Archive status
- settings
AmlFilesystem Hsm Settings Response 
- Specifies HSM settings of the AML file system.
- archive_status Sequence[AmlFilesystem Archive Response] 
- Archive status
- settings
AmlFilesystem Hsm Settings Response 
- Specifies HSM settings of the AML file system.
- archiveStatus List<Property Map>
- Archive status
- settings Property Map
- Specifies HSM settings of the AML file system.
AmlFilesystemResponseMaintenanceWindow, AmlFilesystemResponseMaintenanceWindowArgs          
- DayOf stringWeek 
- Day of the week on which the maintenance window will occur.
- TimeOf stringDay UTC 
- The time of day (in UTC) to start the maintenance window.
- DayOf stringWeek 
- Day of the week on which the maintenance window will occur.
- TimeOf stringDay UTC 
- The time of day (in UTC) to start the maintenance window.
- dayOf StringWeek 
- Day of the week on which the maintenance window will occur.
- timeOf StringDay UTC 
- The time of day (in UTC) to start the maintenance window.
- dayOf stringWeek 
- Day of the week on which the maintenance window will occur.
- timeOf stringDay UTC 
- The time of day (in UTC) to start the maintenance window.
- day_of_ strweek 
- Day of the week on which the maintenance window will occur.
- time_of_ strday_ utc 
- The time of day (in UTC) to start the maintenance window.
- dayOf StringWeek 
- Day of the week on which the maintenance window will occur.
- timeOf StringDay UTC 
- The time of day (in UTC) to start the maintenance window.
KeyVaultKeyReference, KeyVaultKeyReferenceArgs        
- KeyUrl string
- The URL referencing a key encryption key in key vault.
- SourceVault Pulumi.Azure Native. Storage Cache. Inputs. Key Vault Key Reference Source Vault 
- Describes a resource Id to source key vault.
- KeyUrl string
- The URL referencing a key encryption key in key vault.
- SourceVault KeyVault Key Reference Source Vault 
- Describes a resource Id to source key vault.
- keyUrl String
- The URL referencing a key encryption key in key vault.
- sourceVault KeyVault Key Reference Source Vault 
- Describes a resource Id to source key vault.
- keyUrl string
- The URL referencing a key encryption key in key vault.
- sourceVault KeyVault Key Reference Source Vault 
- Describes a resource Id to source key vault.
- key_url str
- The URL referencing a key encryption key in key vault.
- source_vault KeyVault Key Reference Source Vault 
- Describes a resource Id to source key vault.
- keyUrl String
- The URL referencing a key encryption key in key vault.
- sourceVault Property Map
- Describes a resource Id to source key vault.
KeyVaultKeyReferenceResponse, KeyVaultKeyReferenceResponseArgs          
- KeyUrl string
- The URL referencing a key encryption key in key vault.
- SourceVault Pulumi.Azure Native. Storage Cache. Inputs. Key Vault Key Reference Response Source Vault 
- Describes a resource Id to source key vault.
- KeyUrl string
- The URL referencing a key encryption key in key vault.
- SourceVault KeyVault Key Reference Response Source Vault 
- Describes a resource Id to source key vault.
- keyUrl String
- The URL referencing a key encryption key in key vault.
- sourceVault KeyVault Key Reference Response Source Vault 
- Describes a resource Id to source key vault.
- keyUrl string
- The URL referencing a key encryption key in key vault.
- sourceVault KeyVault Key Reference Response Source Vault 
- Describes a resource Id to source key vault.
- key_url str
- The URL referencing a key encryption key in key vault.
- source_vault KeyVault Key Reference Response Source Vault 
- Describes a resource Id to source key vault.
- keyUrl String
- The URL referencing a key encryption key in key vault.
- sourceVault Property Map
- Describes a resource Id to source key vault.
KeyVaultKeyReferenceResponseSourceVault, KeyVaultKeyReferenceResponseSourceVaultArgs              
- Id string
- Resource Id.
- Id string
- Resource Id.
- id String
- Resource Id.
- id string
- Resource Id.
- id str
- Resource Id.
- id String
- Resource Id.
KeyVaultKeyReferenceSourceVault, KeyVaultKeyReferenceSourceVaultArgs            
- Id string
- Resource Id.
- Id string
- Resource Id.
- id String
- Resource Id.
- id string
- Resource Id.
- id str
- Resource Id.
- id String
- Resource Id.
MaintenanceDayOfWeekType, MaintenanceDayOfWeekTypeArgs          
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- MaintenanceDay Of Week Type Monday 
- Monday
- MaintenanceDay Of Week Type Tuesday 
- Tuesday
- MaintenanceDay Of Week Type Wednesday 
- Wednesday
- MaintenanceDay Of Week Type Thursday 
- Thursday
- MaintenanceDay Of Week Type Friday 
- Friday
- MaintenanceDay Of Week Type Saturday 
- Saturday
- MaintenanceDay Of Week Type Sunday 
- Sunday
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- MONDAY
- Monday
- TUESDAY
- Tuesday
- WEDNESDAY
- Wednesday
- THURSDAY
- Thursday
- FRIDAY
- Friday
- SATURDAY
- Saturday
- SUNDAY
- Sunday
- "Monday"
- Monday
- "Tuesday"
- Tuesday
- "Wednesday"
- Wednesday
- "Thursday"
- Thursday
- "Friday"
- Friday
- "Saturday"
- Saturday
- "Sunday"
- Sunday
SkuName, SkuNameArgs    
- Name string
- SKU name for this resource.
- Name string
- SKU name for this resource.
- name String
- SKU name for this resource.
- name string
- SKU name for this resource.
- name str
- SKU name for this resource.
- name String
- SKU name for this resource.
SkuNameResponse, SkuNameResponseArgs      
- Name string
- SKU name for this resource.
- Name string
- SKU name for this resource.
- name String
- SKU name for this resource.
- name string
- SKU name for this resource.
- name str
- SKU name for this resource.
- name String
- SKU name for this resource.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UserAssignedIdentitiesResponseUserAssignedIdentities, UserAssignedIdentitiesResponseUserAssignedIdentitiesArgs              
- ClientId string
- The client ID of the user-assigned identity.
- PrincipalId string
- The principal ID of the user-assigned identity.
- ClientId string
- The client ID of the user-assigned identity.
- PrincipalId string
- The principal ID of the user-assigned identity.
- clientId String
- The client ID of the user-assigned identity.
- principalId String
- The principal ID of the user-assigned identity.
- clientId string
- The client ID of the user-assigned identity.
- principalId string
- The principal ID of the user-assigned identity.
- client_id str
- The client ID of the user-assigned identity.
- principal_id str
- The principal ID of the user-assigned identity.
- clientId String
- The client ID of the user-assigned identity.
- principalId String
- The principal ID of the user-assigned identity.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0