azure-native.dataprotection.BackupInstance
Explore with Pulumi AI
BackupInstance Resource API Version: 2021-01-01.
Example Usage
Create BackupInstance
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var backupInstance = new AzureNative.DataProtection.BackupInstance("backupInstance", new()
{
BackupInstanceName = "testInstance1",
Properties = new AzureNative.DataProtection.Inputs.BackupInstanceArgs
{
DataSourceInfo = new AzureNative.DataProtection.Inputs.DatasourceArgs
{
DatasourceType = "OssDB",
ObjectType = "Datasource",
ResourceID = "/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest/databases/testdb",
ResourceLocation = "",
ResourceName = "testdb",
ResourceType = "Microsoft.DBforPostgreSQL/servers/databases",
ResourceUri = "",
},
DataSourceSetInfo = new AzureNative.DataProtection.Inputs.DatasourceSetArgs
{
DatasourceType = "OssDB",
ObjectType = "DatasourceSet",
ResourceID = "/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest",
ResourceLocation = "",
ResourceName = "viveksipgtest",
ResourceType = "Microsoft.DBforPostgreSQL/servers",
ResourceUri = "",
},
FriendlyName = "harshitbi2",
ObjectType = "BackupInstance",
PolicyInfo = new AzureNative.DataProtection.Inputs.PolicyInfoArgs
{
PolicyId = "/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/000pikumar/providers/Microsoft.DataProtection/Backupvaults/PratikPrivatePreviewVault1/backupPolicies/PratikPolicy1",
PolicyParameters = new AzureNative.DataProtection.Inputs.PolicyParametersArgs
{
DataStoreParametersList = new[]
{
{
{ "dataStoreType", "OperationalStore" },
{ "objectType", "AzureOperationalStoreParameters" },
{ "resourceGroupId", "/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest" },
},
},
},
},
},
ResourceGroupName = "000pikumar",
VaultName = "PratikPrivatePreviewVault1",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.dataprotection.BackupInstance;
import com.pulumi.azurenative.dataprotection.BackupInstanceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var backupInstance = new BackupInstance("backupInstance", BackupInstanceArgs.builder()
.backupInstanceName("testInstance1")
.properties(Map.ofEntries(
Map.entry("dataSourceInfo", Map.ofEntries(
Map.entry("datasourceType", "OssDB"),
Map.entry("objectType", "Datasource"),
Map.entry("resourceID", "/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest/databases/testdb"),
Map.entry("resourceLocation", ""),
Map.entry("resourceName", "testdb"),
Map.entry("resourceType", "Microsoft.DBforPostgreSQL/servers/databases"),
Map.entry("resourceUri", "")
)),
Map.entry("dataSourceSetInfo", Map.ofEntries(
Map.entry("datasourceType", "OssDB"),
Map.entry("objectType", "DatasourceSet"),
Map.entry("resourceID", "/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest"),
Map.entry("resourceLocation", ""),
Map.entry("resourceName", "viveksipgtest"),
Map.entry("resourceType", "Microsoft.DBforPostgreSQL/servers"),
Map.entry("resourceUri", "")
)),
Map.entry("friendlyName", "harshitbi2"),
Map.entry("objectType", "BackupInstance"),
Map.entry("policyInfo", Map.ofEntries(
Map.entry("policyId", "/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/000pikumar/providers/Microsoft.DataProtection/Backupvaults/PratikPrivatePreviewVault1/backupPolicies/PratikPolicy1"),
Map.entry("policyParameters", Map.of("dataStoreParametersList", Map.ofEntries(
Map.entry("dataStoreType", "OperationalStore"),
Map.entry("objectType", "AzureOperationalStoreParameters"),
Map.entry("resourceGroupId", "/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest")
)))
))
))
.resourceGroupName("000pikumar")
.vaultName("PratikPrivatePreviewVault1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
backup_instance = azure_native.dataprotection.BackupInstance("backupInstance",
backup_instance_name="testInstance1",
properties=azure_native.dataprotection.BackupInstanceResponseArgs(
data_source_info=azure_native.dataprotection.DatasourceArgs(
datasource_type="OssDB",
object_type="Datasource",
resource_id="/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest/databases/testdb",
resource_location="",
resource_name="testdb",
resource_type="Microsoft.DBforPostgreSQL/servers/databases",
resource_uri="",
),
data_source_set_info=azure_native.dataprotection.DatasourceSetArgs(
datasource_type="OssDB",
object_type="DatasourceSet",
resource_id="/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest",
resource_location="",
resource_name="viveksipgtest",
resource_type="Microsoft.DBforPostgreSQL/servers",
resource_uri="",
),
friendly_name="harshitbi2",
object_type="BackupInstance",
policy_info={
"policyId": "/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/000pikumar/providers/Microsoft.DataProtection/Backupvaults/PratikPrivatePreviewVault1/backupPolicies/PratikPolicy1",
"policyParameters": {
"dataStoreParametersList": [azure_native.dataprotection.AzureOperationalStoreParametersResponseArgs(
data_store_type="OperationalStore",
object_type="AzureOperationalStoreParameters",
resource_group_id="/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest",
)],
},
},
),
resource_group_name="000pikumar",
vault_name="PratikPrivatePreviewVault1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const backupInstance = new azure_native.dataprotection.BackupInstance("backupInstance", {
backupInstanceName: "testInstance1",
properties: {
dataSourceInfo: {
datasourceType: "OssDB",
objectType: "Datasource",
resourceID: "/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest/databases/testdb",
resourceLocation: "",
resourceName: "testdb",
resourceType: "Microsoft.DBforPostgreSQL/servers/databases",
resourceUri: "",
},
dataSourceSetInfo: {
datasourceType: "OssDB",
objectType: "DatasourceSet",
resourceID: "/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest",
resourceLocation: "",
resourceName: "viveksipgtest",
resourceType: "Microsoft.DBforPostgreSQL/servers",
resourceUri: "",
},
friendlyName: "harshitbi2",
objectType: "BackupInstance",
policyInfo: {
policyId: "/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/000pikumar/providers/Microsoft.DataProtection/Backupvaults/PratikPrivatePreviewVault1/backupPolicies/PratikPolicy1",
policyParameters: {
dataStoreParametersList: [{
dataStoreType: "OperationalStore",
objectType: "AzureOperationalStoreParameters",
resourceGroupId: "/subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest",
}],
},
},
},
resourceGroupName: "000pikumar",
vaultName: "PratikPrivatePreviewVault1",
});
resources:
backupInstance:
type: azure-native:dataprotection:BackupInstance
properties:
backupInstanceName: testInstance1
properties:
dataSourceInfo:
datasourceType: OssDB
objectType: Datasource
resourceID: /subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest/databases/testdb
resourceLocation:
resourceName: testdb
resourceType: Microsoft.DBforPostgreSQL/servers/databases
resourceUri:
dataSourceSetInfo:
datasourceType: OssDB
objectType: DatasourceSet
resourceID: /subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest/providers/Microsoft.DBforPostgreSQL/servers/viveksipgtest
resourceLocation:
resourceName: viveksipgtest
resourceType: Microsoft.DBforPostgreSQL/servers
resourceUri:
friendlyName: harshitbi2
objectType: BackupInstance
policyInfo:
policyId: /subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/000pikumar/providers/Microsoft.DataProtection/Backupvaults/PratikPrivatePreviewVault1/backupPolicies/PratikPolicy1
policyParameters:
dataStoreParametersList:
- dataStoreType: OperationalStore
objectType: AzureOperationalStoreParameters
resourceGroupId: /subscriptions/f75d8d8b-6735-4697-82e1-1a7a3ff0d5d4/resourceGroups/viveksipgtest
resourceGroupName: 000pikumar
vaultName: PratikPrivatePreviewVault1
Create BackupInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BackupInstance(name: string, args: BackupInstanceArgs, opts?: CustomResourceOptions);
@overload
def BackupInstance(resource_name: str,
args: BackupInstanceInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BackupInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
vault_name: Optional[str] = None,
backup_instance_name: Optional[str] = None,
properties: Optional[BackupInstanceArgs] = None)
func NewBackupInstance(ctx *Context, name string, args BackupInstanceArgs, opts ...ResourceOption) (*BackupInstance, error)
public BackupInstance(string name, BackupInstanceArgs args, CustomResourceOptions? opts = null)
public BackupInstance(String name, BackupInstanceArgs args)
public BackupInstance(String name, BackupInstanceArgs args, CustomResourceOptions options)
type: azure-native:dataprotection:BackupInstance
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 BackupInstanceArgs
- 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 BackupInstanceInitArgs
- 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 BackupInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BackupInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BackupInstanceArgs
- 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 backupInstanceResource = new AzureNative.Dataprotection.BackupInstance("backupInstanceResource", new()
{
ResourceGroupName = "string",
VaultName = "string",
BackupInstanceName = "string",
Properties =
{
{ "dataSourceInfo",
{
{ "resourceID", "string" },
{ "datasourceType", "string" },
{ "objectType", "string" },
{ "resourceLocation", "string" },
{ "resourceName", "string" },
{ "resourceType", "string" },
{ "resourceUri", "string" },
} },
{ "objectType", "string" },
{ "policyInfo",
{
{ "policyId", "string" },
{ "policyParameters",
{
{ "dataStoreParametersList", new[]
{
{
{ "dataStoreType", "string" },
{ "objectType", "AzureOperationalStoreParameters" },
{ "resourceGroupId", "string" },
},
} },
} },
} },
{ "dataSourceSetInfo",
{
{ "resourceID", "string" },
{ "datasourceType", "string" },
{ "objectType", "string" },
{ "resourceLocation", "string" },
{ "resourceName", "string" },
{ "resourceType", "string" },
{ "resourceUri", "string" },
} },
{ "friendlyName", "string" },
},
});
example, err := dataprotection.NewBackupInstance(ctx, "backupInstanceResource", &dataprotection.BackupInstanceArgs{
ResourceGroupName: "string",
VaultName: "string",
BackupInstanceName: "string",
Properties: map[string]interface{}{
"dataSourceInfo": map[string]interface{}{
"resourceID": "string",
"datasourceType": "string",
"objectType": "string",
"resourceLocation": "string",
"resourceName": "string",
"resourceType": "string",
"resourceUri": "string",
},
"objectType": "string",
"policyInfo": map[string]interface{}{
"policyId": "string",
"policyParameters": map[string]interface{}{
"dataStoreParametersList": []map[string]interface{}{
map[string]interface{}{
"dataStoreType": "string",
"objectType": "AzureOperationalStoreParameters",
"resourceGroupId": "string",
},
},
},
},
"dataSourceSetInfo": map[string]interface{}{
"resourceID": "string",
"datasourceType": "string",
"objectType": "string",
"resourceLocation": "string",
"resourceName": "string",
"resourceType": "string",
"resourceUri": "string",
},
"friendlyName": "string",
},
})
var backupInstanceResource = new BackupInstance("backupInstanceResource", BackupInstanceArgs.builder()
.resourceGroupName("string")
.vaultName("string")
.backupInstanceName("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
backup_instance_resource = azure_native.dataprotection.BackupInstance("backupInstanceResource",
resource_group_name=string,
vault_name=string,
backup_instance_name=string,
properties={
dataSourceInfo: {
resourceID: string,
datasourceType: string,
objectType: string,
resourceLocation: string,
resourceName: string,
resourceType: string,
resourceUri: string,
},
objectType: string,
policyInfo: {
policyId: string,
policyParameters: {
dataStoreParametersList: [{
dataStoreType: string,
objectType: AzureOperationalStoreParameters,
resourceGroupId: string,
}],
},
},
dataSourceSetInfo: {
resourceID: string,
datasourceType: string,
objectType: string,
resourceLocation: string,
resourceName: string,
resourceType: string,
resourceUri: string,
},
friendlyName: string,
})
const backupInstanceResource = new azure_native.dataprotection.BackupInstance("backupInstanceResource", {
resourceGroupName: "string",
vaultName: "string",
backupInstanceName: "string",
properties: {
dataSourceInfo: {
resourceID: "string",
datasourceType: "string",
objectType: "string",
resourceLocation: "string",
resourceName: "string",
resourceType: "string",
resourceUri: "string",
},
objectType: "string",
policyInfo: {
policyId: "string",
policyParameters: {
dataStoreParametersList: [{
dataStoreType: "string",
objectType: "AzureOperationalStoreParameters",
resourceGroupId: "string",
}],
},
},
dataSourceSetInfo: {
resourceID: "string",
datasourceType: "string",
objectType: "string",
resourceLocation: "string",
resourceName: "string",
resourceType: "string",
resourceUri: "string",
},
friendlyName: "string",
},
});
type: azure-native:dataprotection:BackupInstance
properties:
backupInstanceName: string
properties:
dataSourceInfo:
datasourceType: string
objectType: string
resourceID: string
resourceLocation: string
resourceName: string
resourceType: string
resourceUri: string
dataSourceSetInfo:
datasourceType: string
objectType: string
resourceID: string
resourceLocation: string
resourceName: string
resourceType: string
resourceUri: string
friendlyName: string
objectType: string
policyInfo:
policyId: string
policyParameters:
dataStoreParametersList:
- dataStoreType: string
objectType: AzureOperationalStoreParameters
resourceGroupId: string
resourceGroupName: string
vaultName: string
BackupInstance Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The BackupInstance resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group where the backup vault is present.
- Vault
Name string - The name of the backup vault.
- Backup
Instance stringName - The name of the backup instance
- Properties
Pulumi.
Azure Native. Data Protection. Inputs. Backup Instance - BackupInstanceResource properties
- Resource
Group stringName - The name of the resource group where the backup vault is present.
- Vault
Name string - The name of the backup vault.
- Backup
Instance stringName - The name of the backup instance
- Properties
Backup
Instance Type Args - BackupInstanceResource properties
- resource
Group StringName - The name of the resource group where the backup vault is present.
- vault
Name String - The name of the backup vault.
- backup
Instance StringName - The name of the backup instance
- properties
Backup
Instance - BackupInstanceResource properties
- resource
Group stringName - The name of the resource group where the backup vault is present.
- vault
Name string - The name of the backup vault.
- backup
Instance stringName - The name of the backup instance
- properties
Backup
Instance - BackupInstanceResource properties
- resource_
group_ strname - The name of the resource group where the backup vault is present.
- vault_
name str - The name of the backup vault.
- backup_
instance_ strname - The name of the backup instance
- properties
Backup
Instance Args - BackupInstanceResource properties
- resource
Group StringName - The name of the resource group where the backup vault is present.
- vault
Name String - The name of the backup vault.
- backup
Instance StringName - The name of the backup instance
- properties Property Map
- BackupInstanceResource properties
Outputs
All input properties are implicitly available as output properties. Additionally, the BackupInstance resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name associated with the resource.
- System
Data Pulumi.Azure Native. Data Protection. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name associated with the resource.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name associated with the resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name associated with the resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name associated with the resource.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name associated with the resource.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
Supporting Types
AzureOperationalStoreParameters, AzureOperationalStoreParametersArgs
- Data
Store string | Pulumi.Type Azure Native. Data Protection. Data Store Types - type of datastore; Operational/Vault/Archive
- Resource
Group stringId - Gets or sets the Snapshot Resource Group Uri.
- Data
Store string | DataType Store Types - type of datastore; Operational/Vault/Archive
- Resource
Group stringId - Gets or sets the Snapshot Resource Group Uri.
- data
Store String | DataType Store Types - type of datastore; Operational/Vault/Archive
- resource
Group StringId - Gets or sets the Snapshot Resource Group Uri.
- data
Store string | DataType Store Types - type of datastore; Operational/Vault/Archive
- resource
Group stringId - Gets or sets the Snapshot Resource Group Uri.
- data_
store_ str | Datatype Store Types - type of datastore; Operational/Vault/Archive
- resource_
group_ strid - Gets or sets the Snapshot Resource Group Uri.
- data
Store String | "OperationalType Store" | "Vault Store" | "Archive Store" - type of datastore; Operational/Vault/Archive
- resource
Group StringId - Gets or sets the Snapshot Resource Group Uri.
AzureOperationalStoreParametersResponse, AzureOperationalStoreParametersResponseArgs
- Data
Store stringType - type of datastore; Operational/Vault/Archive
- Resource
Group stringId - Gets or sets the Snapshot Resource Group Uri.
- Data
Store stringType - type of datastore; Operational/Vault/Archive
- Resource
Group stringId - Gets or sets the Snapshot Resource Group Uri.
- data
Store StringType - type of datastore; Operational/Vault/Archive
- resource
Group StringId - Gets or sets the Snapshot Resource Group Uri.
- data
Store stringType - type of datastore; Operational/Vault/Archive
- resource
Group stringId - Gets or sets the Snapshot Resource Group Uri.
- data_
store_ strtype - type of datastore; Operational/Vault/Archive
- resource_
group_ strid - Gets or sets the Snapshot Resource Group Uri.
- data
Store StringType - type of datastore; Operational/Vault/Archive
- resource
Group StringId - Gets or sets the Snapshot Resource Group Uri.
BackupInstance, BackupInstanceArgs
- Data
Source Pulumi.Info Azure Native. Data Protection. Inputs. Datasource - Gets or sets the data source information.
- Object
Type string - Policy
Info Pulumi.Azure Native. Data Protection. Inputs. Policy Info - Gets or sets the policy information.
- Data
Source Pulumi.Set Info Azure Native. Data Protection. Inputs. Datasource Set - Gets or sets the data source set information.
- Friendly
Name string - Gets or sets the Backup Instance friendly name.
- Data
Source DatasourceInfo - Gets or sets the data source information.
- Object
Type string - Policy
Info PolicyInfo - Gets or sets the policy information.
- Data
Source DatasourceSet Info Set - Gets or sets the data source set information.
- Friendly
Name string - Gets or sets the Backup Instance friendly name.
- data
Source DatasourceInfo - Gets or sets the data source information.
- object
Type String - policy
Info PolicyInfo - Gets or sets the policy information.
- data
Source DatasourceSet Info Set - Gets or sets the data source set information.
- friendly
Name String - Gets or sets the Backup Instance friendly name.
- data
Source DatasourceInfo - Gets or sets the data source information.
- object
Type string - policy
Info PolicyInfo - Gets or sets the policy information.
- data
Source DatasourceSet Info Set - Gets or sets the data source set information.
- friendly
Name string - Gets or sets the Backup Instance friendly name.
- data_
source_ Datasourceinfo - Gets or sets the data source information.
- object_
type str - policy_
info PolicyInfo - Gets or sets the policy information.
- data_
source_ Datasourceset_ info Set - Gets or sets the data source set information.
- friendly_
name str - Gets or sets the Backup Instance friendly name.
- data
Source Property MapInfo - Gets or sets the data source information.
- object
Type String - policy
Info Property Map - Gets or sets the policy information.
- data
Source Property MapSet Info - Gets or sets the data source set information.
- friendly
Name String - Gets or sets the Backup Instance friendly name.
BackupInstanceResponse, BackupInstanceResponseArgs
- Current
Protection stringState - Specifies the current protection state of the resource
- Data
Source Pulumi.Info Azure Native. Data Protection. Inputs. Datasource Response - Gets or sets the data source information.
- Object
Type string - Policy
Info Pulumi.Azure Native. Data Protection. Inputs. Policy Info Response - Gets or sets the policy information.
- Protection
Error Pulumi.Details Azure Native. Data Protection. Inputs. User Facing Error Response - Specifies the protection error of the resource
- Protection
Status Pulumi.Azure Native. Data Protection. Inputs. Protection Status Details Response - Specifies the protection status of the resource
- Provisioning
State string - Specifies the provisioning state of the resource i.e. provisioning/updating/Succeeded/Failed
- Data
Source Pulumi.Set Info Azure Native. Data Protection. Inputs. Datasource Set Response - Gets or sets the data source set information.
- Friendly
Name string - Gets or sets the Backup Instance friendly name.
- Current
Protection stringState - Specifies the current protection state of the resource
- Data
Source DatasourceInfo Response - Gets or sets the data source information.
- Object
Type string - Policy
Info PolicyInfo Response - Gets or sets the policy information.
- Protection
Error UserDetails Facing Error Response - Specifies the protection error of the resource
- Protection
Status ProtectionStatus Details Response - Specifies the protection status of the resource
- Provisioning
State string - Specifies the provisioning state of the resource i.e. provisioning/updating/Succeeded/Failed
- Data
Source DatasourceSet Info Set Response - Gets or sets the data source set information.
- Friendly
Name string - Gets or sets the Backup Instance friendly name.
- current
Protection StringState - Specifies the current protection state of the resource
- data
Source DatasourceInfo Response - Gets or sets the data source information.
- object
Type String - policy
Info PolicyInfo Response - Gets or sets the policy information.
- protection
Error UserDetails Facing Error Response - Specifies the protection error of the resource
- protection
Status ProtectionStatus Details Response - Specifies the protection status of the resource
- provisioning
State String - Specifies the provisioning state of the resource i.e. provisioning/updating/Succeeded/Failed
- data
Source DatasourceSet Info Set Response - Gets or sets the data source set information.
- friendly
Name String - Gets or sets the Backup Instance friendly name.
- current
Protection stringState - Specifies the current protection state of the resource
- data
Source DatasourceInfo Response - Gets or sets the data source information.
- object
Type string - policy
Info PolicyInfo Response - Gets or sets the policy information.
- protection
Error UserDetails Facing Error Response - Specifies the protection error of the resource
- protection
Status ProtectionStatus Details Response - Specifies the protection status of the resource
- provisioning
State string - Specifies the provisioning state of the resource i.e. provisioning/updating/Succeeded/Failed
- data
Source DatasourceSet Info Set Response - Gets or sets the data source set information.
- friendly
Name string - Gets or sets the Backup Instance friendly name.
- current_
protection_ strstate - Specifies the current protection state of the resource
- data_
source_ Datasourceinfo Response - Gets or sets the data source information.
- object_
type str - policy_
info PolicyInfo Response - Gets or sets the policy information.
- protection_
error_ Userdetails Facing Error Response - Specifies the protection error of the resource
- protection_
status ProtectionStatus Details Response - Specifies the protection status of the resource
- provisioning_
state str - Specifies the provisioning state of the resource i.e. provisioning/updating/Succeeded/Failed
- data_
source_ Datasourceset_ info Set Response - Gets or sets the data source set information.
- friendly_
name str - Gets or sets the Backup Instance friendly name.
- current
Protection StringState - Specifies the current protection state of the resource
- data
Source Property MapInfo - Gets or sets the data source information.
- object
Type String - policy
Info Property Map - Gets or sets the policy information.
- protection
Error Property MapDetails - Specifies the protection error of the resource
- protection
Status Property Map - Specifies the protection status of the resource
- provisioning
State String - Specifies the provisioning state of the resource i.e. provisioning/updating/Succeeded/Failed
- data
Source Property MapSet Info - Gets or sets the data source set information.
- friendly
Name String - Gets or sets the Backup Instance friendly name.
DataStoreTypes, DataStoreTypesArgs
- Operational
Store - OperationalStore
- Vault
Store - VaultStore
- Archive
Store - ArchiveStore
- Data
Store Types Operational Store - OperationalStore
- Data
Store Types Vault Store - VaultStore
- Data
Store Types Archive Store - ArchiveStore
- Operational
Store - OperationalStore
- Vault
Store - VaultStore
- Archive
Store - ArchiveStore
- Operational
Store - OperationalStore
- Vault
Store - VaultStore
- Archive
Store - ArchiveStore
- OPERATIONAL_STORE
- OperationalStore
- VAULT_STORE
- VaultStore
- ARCHIVE_STORE
- ArchiveStore
- "Operational
Store" - OperationalStore
- "Vault
Store" - VaultStore
- "Archive
Store" - ArchiveStore
Datasource, DatasourceArgs
- Resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- Datasource
Type string - DatasourceType of the resource.
- Object
Type string - Type of Datasource object, used to initialize the right inherited type
- Resource
Location string - Location of datasource.
- Resource
Name string - Unique identifier of the resource in the context of parent.
- Resource
Type string - Resource Type of Datasource.
- Resource
Uri string - Uri of the resource.
- Resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- Datasource
Type string - DatasourceType of the resource.
- Object
Type string - Type of Datasource object, used to initialize the right inherited type
- Resource
Location string - Location of datasource.
- Resource
Name string - Unique identifier of the resource in the context of parent.
- Resource
Type string - Resource Type of Datasource.
- Resource
Uri string - Uri of the resource.
- resource
ID String - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type String - DatasourceType of the resource.
- object
Type String - Type of Datasource object, used to initialize the right inherited type
- resource
Location String - Location of datasource.
- resource
Name String - Unique identifier of the resource in the context of parent.
- resource
Type String - Resource Type of Datasource.
- resource
Uri String - Uri of the resource.
- resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type string - DatasourceType of the resource.
- object
Type string - Type of Datasource object, used to initialize the right inherited type
- resource
Location string - Location of datasource.
- resource
Name string - Unique identifier of the resource in the context of parent.
- resource
Type string - Resource Type of Datasource.
- resource
Uri string - Uri of the resource.
- resource_
id str - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource_
type str - DatasourceType of the resource.
- object_
type str - Type of Datasource object, used to initialize the right inherited type
- resource_
location str - Location of datasource.
- resource_
name str - Unique identifier of the resource in the context of parent.
- resource_
type str - Resource Type of Datasource.
- resource_
uri str - Uri of the resource.
- resource
ID String - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type String - DatasourceType of the resource.
- object
Type String - Type of Datasource object, used to initialize the right inherited type
- resource
Location String - Location of datasource.
- resource
Name String - Unique identifier of the resource in the context of parent.
- resource
Type String - Resource Type of Datasource.
- resource
Uri String - Uri of the resource.
DatasourceResponse, DatasourceResponseArgs
- Resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- Datasource
Type string - DatasourceType of the resource.
- Object
Type string - Type of Datasource object, used to initialize the right inherited type
- Resource
Location string - Location of datasource.
- Resource
Name string - Unique identifier of the resource in the context of parent.
- Resource
Type string - Resource Type of Datasource.
- Resource
Uri string - Uri of the resource.
- Resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- Datasource
Type string - DatasourceType of the resource.
- Object
Type string - Type of Datasource object, used to initialize the right inherited type
- Resource
Location string - Location of datasource.
- Resource
Name string - Unique identifier of the resource in the context of parent.
- Resource
Type string - Resource Type of Datasource.
- Resource
Uri string - Uri of the resource.
- resource
ID String - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type String - DatasourceType of the resource.
- object
Type String - Type of Datasource object, used to initialize the right inherited type
- resource
Location String - Location of datasource.
- resource
Name String - Unique identifier of the resource in the context of parent.
- resource
Type String - Resource Type of Datasource.
- resource
Uri String - Uri of the resource.
- resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type string - DatasourceType of the resource.
- object
Type string - Type of Datasource object, used to initialize the right inherited type
- resource
Location string - Location of datasource.
- resource
Name string - Unique identifier of the resource in the context of parent.
- resource
Type string - Resource Type of Datasource.
- resource
Uri string - Uri of the resource.
- resource_
id str - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource_
type str - DatasourceType of the resource.
- object_
type str - Type of Datasource object, used to initialize the right inherited type
- resource_
location str - Location of datasource.
- resource_
name str - Unique identifier of the resource in the context of parent.
- resource_
type str - Resource Type of Datasource.
- resource_
uri str - Uri of the resource.
- resource
ID String - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type String - DatasourceType of the resource.
- object
Type String - Type of Datasource object, used to initialize the right inherited type
- resource
Location String - Location of datasource.
- resource
Name String - Unique identifier of the resource in the context of parent.
- resource
Type String - Resource Type of Datasource.
- resource
Uri String - Uri of the resource.
DatasourceSet, DatasourceSetArgs
- Resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- Datasource
Type string - DatasourceType of the resource.
- Object
Type string - Type of Datasource object, used to initialize the right inherited type
- Resource
Location string - Location of datasource.
- Resource
Name string - Unique identifier of the resource in the context of parent.
- Resource
Type string - Resource Type of Datasource.
- Resource
Uri string - Uri of the resource.
- Resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- Datasource
Type string - DatasourceType of the resource.
- Object
Type string - Type of Datasource object, used to initialize the right inherited type
- Resource
Location string - Location of datasource.
- Resource
Name string - Unique identifier of the resource in the context of parent.
- Resource
Type string - Resource Type of Datasource.
- Resource
Uri string - Uri of the resource.
- resource
ID String - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type String - DatasourceType of the resource.
- object
Type String - Type of Datasource object, used to initialize the right inherited type
- resource
Location String - Location of datasource.
- resource
Name String - Unique identifier of the resource in the context of parent.
- resource
Type String - Resource Type of Datasource.
- resource
Uri String - Uri of the resource.
- resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type string - DatasourceType of the resource.
- object
Type string - Type of Datasource object, used to initialize the right inherited type
- resource
Location string - Location of datasource.
- resource
Name string - Unique identifier of the resource in the context of parent.
- resource
Type string - Resource Type of Datasource.
- resource
Uri string - Uri of the resource.
- resource_
id str - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource_
type str - DatasourceType of the resource.
- object_
type str - Type of Datasource object, used to initialize the right inherited type
- resource_
location str - Location of datasource.
- resource_
name str - Unique identifier of the resource in the context of parent.
- resource_
type str - Resource Type of Datasource.
- resource_
uri str - Uri of the resource.
- resource
ID String - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type String - DatasourceType of the resource.
- object
Type String - Type of Datasource object, used to initialize the right inherited type
- resource
Location String - Location of datasource.
- resource
Name String - Unique identifier of the resource in the context of parent.
- resource
Type String - Resource Type of Datasource.
- resource
Uri String - Uri of the resource.
DatasourceSetResponse, DatasourceSetResponseArgs
- Resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- Datasource
Type string - DatasourceType of the resource.
- Object
Type string - Type of Datasource object, used to initialize the right inherited type
- Resource
Location string - Location of datasource.
- Resource
Name string - Unique identifier of the resource in the context of parent.
- Resource
Type string - Resource Type of Datasource.
- Resource
Uri string - Uri of the resource.
- Resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- Datasource
Type string - DatasourceType of the resource.
- Object
Type string - Type of Datasource object, used to initialize the right inherited type
- Resource
Location string - Location of datasource.
- Resource
Name string - Unique identifier of the resource in the context of parent.
- Resource
Type string - Resource Type of Datasource.
- Resource
Uri string - Uri of the resource.
- resource
ID String - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type String - DatasourceType of the resource.
- object
Type String - Type of Datasource object, used to initialize the right inherited type
- resource
Location String - Location of datasource.
- resource
Name String - Unique identifier of the resource in the context of parent.
- resource
Type String - Resource Type of Datasource.
- resource
Uri String - Uri of the resource.
- resource
ID string - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type string - DatasourceType of the resource.
- object
Type string - Type of Datasource object, used to initialize the right inherited type
- resource
Location string - Location of datasource.
- resource
Name string - Unique identifier of the resource in the context of parent.
- resource
Type string - Resource Type of Datasource.
- resource
Uri string - Uri of the resource.
- resource_
id str - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource_
type str - DatasourceType of the resource.
- object_
type str - Type of Datasource object, used to initialize the right inherited type
- resource_
location str - Location of datasource.
- resource_
name str - Unique identifier of the resource in the context of parent.
- resource_
type str - Resource Type of Datasource.
- resource_
uri str - Uri of the resource.
- resource
ID String - Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
- datasource
Type String - DatasourceType of the resource.
- object
Type String - Type of Datasource object, used to initialize the right inherited type
- resource
Location String - Location of datasource.
- resource
Name String - Unique identifier of the resource in the context of parent.
- resource
Type String - Resource Type of Datasource.
- resource
Uri String - Uri of the resource.
InnerErrorResponse, InnerErrorResponseArgs
- Additional
Info Dictionary<string, string> - Any Key value pairs that can be provided to the client for additional verbose information.
- Code string
- Unique code for this error
- Embedded
Inner Pulumi.Error Azure Native. Data Protection. Inputs. Inner Error Response - Child Inner Error, to allow Nesting.
- Additional
Info map[string]string - Any Key value pairs that can be provided to the client for additional verbose information.
- Code string
- Unique code for this error
- Embedded
Inner InnerError Error Response - Child Inner Error, to allow Nesting.
- additional
Info Map<String,String> - Any Key value pairs that can be provided to the client for additional verbose information.
- code String
- Unique code for this error
- embedded
Inner InnerError Error Response - Child Inner Error, to allow Nesting.
- additional
Info {[key: string]: string} - Any Key value pairs that can be provided to the client for additional verbose information.
- code string
- Unique code for this error
- embedded
Inner InnerError Error Response - Child Inner Error, to allow Nesting.
- additional_
info Mapping[str, str] - Any Key value pairs that can be provided to the client for additional verbose information.
- code str
- Unique code for this error
- embedded_
inner_ Innererror Error Response - Child Inner Error, to allow Nesting.
- additional
Info Map<String> - Any Key value pairs that can be provided to the client for additional verbose information.
- code String
- Unique code for this error
- embedded
Inner Property MapError - Child Inner Error, to allow Nesting.
PolicyInfo, PolicyInfoArgs
- Policy
Id string - Policy
Parameters Pulumi.Azure Native. Data Protection. Inputs. Policy Parameters - Policy parameters for the backup instance
- Policy
Id string - Policy
Parameters PolicyParameters - Policy parameters for the backup instance
- policy
Id String - policy
Parameters PolicyParameters - Policy parameters for the backup instance
- policy
Id string - policy
Parameters PolicyParameters - Policy parameters for the backup instance
- policy_
id str - policy_
parameters PolicyParameters - Policy parameters for the backup instance
- policy
Id String - policy
Parameters Property Map - Policy parameters for the backup instance
PolicyInfoResponse, PolicyInfoResponseArgs
- Policy
Id string - Policy
Version string - Policy
Parameters Pulumi.Azure Native. Data Protection. Inputs. Policy Parameters Response - Policy parameters for the backup instance
- Policy
Id string - Policy
Version string - Policy
Parameters PolicyParameters Response - Policy parameters for the backup instance
- policy
Id String - policy
Version String - policy
Parameters PolicyParameters Response - Policy parameters for the backup instance
- policy
Id string - policy
Version string - policy
Parameters PolicyParameters Response - Policy parameters for the backup instance
- policy_
id str - policy_
version str - policy_
parameters PolicyParameters Response - Policy parameters for the backup instance
- policy
Id String - policy
Version String - policy
Parameters Property Map - Policy parameters for the backup instance
PolicyParameters, PolicyParametersArgs
- Data
Store List<Pulumi.Parameters List Azure Native. Data Protection. Inputs. Azure Operational Store Parameters> - Gets or sets the DataStore Parameters
- Data
Store []AzureParameters List Operational Store Parameters - Gets or sets the DataStore Parameters
- data
Store List<AzureParameters List Operational Store Parameters> - Gets or sets the DataStore Parameters
- data
Store AzureParameters List Operational Store Parameters[] - Gets or sets the DataStore Parameters
- data_
store_ Sequence[Azureparameters_ list Operational Store Parameters] - Gets or sets the DataStore Parameters
- data
Store List<Property Map>Parameters List - Gets or sets the DataStore Parameters
PolicyParametersResponse, PolicyParametersResponseArgs
- Data
Store List<Pulumi.Parameters List Azure Native. Data Protection. Inputs. Azure Operational Store Parameters Response> - Gets or sets the DataStore Parameters
- Data
Store []AzureParameters List Operational Store Parameters Response - Gets or sets the DataStore Parameters
- data
Store List<AzureParameters List Operational Store Parameters Response> - Gets or sets the DataStore Parameters
- data
Store AzureParameters List Operational Store Parameters Response[] - Gets or sets the DataStore Parameters
- data_
store_ Sequence[Azureparameters_ list Operational Store Parameters Response] - Gets or sets the DataStore Parameters
- data
Store List<Property Map>Parameters List - Gets or sets the DataStore Parameters
ProtectionStatusDetailsResponse, ProtectionStatusDetailsResponseArgs
- Error
Details Pulumi.Azure Native. Data Protection. Inputs. User Facing Error Response - Specifies the protection status error of the resource
- Status string
- Specifies the protection status of the resource
- Error
Details UserFacing Error Response - Specifies the protection status error of the resource
- Status string
- Specifies the protection status of the resource
- error
Details UserFacing Error Response - Specifies the protection status error of the resource
- status String
- Specifies the protection status of the resource
- error
Details UserFacing Error Response - Specifies the protection status error of the resource
- status string
- Specifies the protection status of the resource
- error_
details UserFacing Error Response - Specifies the protection status error of the resource
- status str
- Specifies the protection status of the resource
- error
Details Property Map - Specifies the protection status error of the resource
- status String
- Specifies the protection status of the resource
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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserFacingErrorResponse, UserFacingErrorResponseArgs
- Code string
- Unique code for this error
- Details
List<Pulumi.
Azure Native. Data Protection. Inputs. User Facing Error Response> - Additional related Errors
- Inner
Error Pulumi.Azure Native. Data Protection. Inputs. Inner Error Response - Inner Error
- Is
Retryable bool - Whether the operation will be retryable or not
- Is
User boolError - Whether the operation is due to a user error or service error
- Message string
- Properties Dictionary<string, string>
- Any key value pairs that can be injected inside error object
- Recommended
Action List<string> - RecommendedAction � localized.
- Target string
- Target of the error.
- Code string
- Unique code for this error
- Details
[]User
Facing Error Response - Additional related Errors
- Inner
Error InnerError Response - Inner Error
- Is
Retryable bool - Whether the operation will be retryable or not
- Is
User boolError - Whether the operation is due to a user error or service error
- Message string
- Properties map[string]string
- Any key value pairs that can be injected inside error object
- Recommended
Action []string - RecommendedAction � localized.
- Target string
- Target of the error.
- code String
- Unique code for this error
- details
List<User
Facing Error Response> - Additional related Errors
- inner
Error InnerError Response - Inner Error
- is
Retryable Boolean - Whether the operation will be retryable or not
- is
User BooleanError - Whether the operation is due to a user error or service error
- message String
- properties Map<String,String>
- Any key value pairs that can be injected inside error object
- recommended
Action List<String> - RecommendedAction � localized.
- target String
- Target of the error.
- code string
- Unique code for this error
- details
User
Facing Error Response[] - Additional related Errors
- inner
Error InnerError Response - Inner Error
- is
Retryable boolean - Whether the operation will be retryable or not
- is
User booleanError - Whether the operation is due to a user error or service error
- message string
- properties {[key: string]: string}
- Any key value pairs that can be injected inside error object
- recommended
Action string[] - RecommendedAction � localized.
- target string
- Target of the error.
- code str
- Unique code for this error
- details
Sequence[User
Facing Error Response] - Additional related Errors
- inner_
error InnerError Response - Inner Error
- is_
retryable bool - Whether the operation will be retryable or not
- is_
user_ boolerror - Whether the operation is due to a user error or service error
- message str
- properties Mapping[str, str]
- Any key value pairs that can be injected inside error object
- recommended_
action Sequence[str] - RecommendedAction � localized.
- target str
- Target of the error.
- code String
- Unique code for this error
- details List<Property Map>
- Additional related Errors
- inner
Error Property Map - Inner Error
- is
Retryable Boolean - Whether the operation will be retryable or not
- is
User BooleanError - Whether the operation is due to a user error or service error
- message String
- properties Map<String>
- Any key value pairs that can be injected inside error object
- recommended
Action List<String> - RecommendedAction � localized.
- target String
- Target of the error.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:dataprotection:BackupInstance harshitbi2 /subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/000pikumar/providers/Microsoft.DataProtection/backupVaults/PratikPrivatePreviewVault1/backupInstances/harshitbi2
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0