1. Packages
  2. Nutanix
  3. API Docs
  4. NdbDatabaseRestore
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

nutanix.NdbDatabaseRestore

Explore with Pulumi AI

nutanix logo
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

    Provides a resource to restore the database instance based on the input parameters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pierskarsenbarg/nutanix";
    
    const name = new nutanix.NdbDatabaseRestore("name", {
        databaseId: "{{ database_id }}",
        snapshotId: "{{ snapshot id }}",
    });
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    name = nutanix.NdbDatabaseRestore("name",
        database_id="{{ database_id }}",
        snapshot_id="{{ snapshot id }}")
    
    package main
    
    import (
    	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nutanix.NewNdbDatabaseRestore(ctx, "name", &nutanix.NdbDatabaseRestoreArgs{
    			DatabaseId: pulumi.String("{{ database_id }}"),
    			SnapshotId: pulumi.String("{{ snapshot id }}"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = PiersKarsenbarg.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var name = new Nutanix.NdbDatabaseRestore("name", new()
        {
            DatabaseId = "{{ database_id }}",
            SnapshotId = "{{ snapshot id }}",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.NdbDatabaseRestore;
    import com.pulumi.nutanix.NdbDatabaseRestoreArgs;
    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 name = new NdbDatabaseRestore("name", NdbDatabaseRestoreArgs.builder()
                .databaseId("{{ database_id }}")
                .snapshotId("{{ snapshot id }}")
                .build());
    
        }
    }
    
    resources:
      name:
        type: nutanix:NdbDatabaseRestore
        properties:
          databaseId: '{{ database_id }}'
          snapshotId: '{{ snapshot id }}'
    

    Create NdbDatabaseRestore Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NdbDatabaseRestore(name: string, args: NdbDatabaseRestoreArgs, opts?: CustomResourceOptions);
    @overload
    def NdbDatabaseRestore(resource_name: str,
                           args: NdbDatabaseRestoreArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def NdbDatabaseRestore(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           database_id: Optional[str] = None,
                           latest_snapshot: Optional[str] = None,
                           restore_version: Optional[int] = None,
                           snapshot_id: Optional[str] = None,
                           tags: Optional[Sequence[NdbDatabaseRestoreTagArgs]] = None,
                           time_zone_pitr: Optional[str] = None,
                           user_pitr_timestamp: Optional[str] = None)
    func NewNdbDatabaseRestore(ctx *Context, name string, args NdbDatabaseRestoreArgs, opts ...ResourceOption) (*NdbDatabaseRestore, error)
    public NdbDatabaseRestore(string name, NdbDatabaseRestoreArgs args, CustomResourceOptions? opts = null)
    public NdbDatabaseRestore(String name, NdbDatabaseRestoreArgs args)
    public NdbDatabaseRestore(String name, NdbDatabaseRestoreArgs args, CustomResourceOptions options)
    
    type: nutanix:NdbDatabaseRestore
    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 NdbDatabaseRestoreArgs
    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 NdbDatabaseRestoreArgs
    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 NdbDatabaseRestoreArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NdbDatabaseRestoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NdbDatabaseRestoreArgs
    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 ndbDatabaseRestoreResource = new Nutanix.NdbDatabaseRestore("ndbDatabaseRestoreResource", new()
    {
        DatabaseId = "string",
        LatestSnapshot = "string",
        RestoreVersion = 0,
        SnapshotId = "string",
        Tags = new[]
        {
            new Nutanix.Inputs.NdbDatabaseRestoreTagArgs
            {
                EntityId = "string",
                EntityType = "string",
                TagId = "string",
                TagName = "string",
                Value = "string",
            },
        },
        TimeZonePitr = "string",
        UserPitrTimestamp = "string",
    });
    
    example, err := nutanix.NewNdbDatabaseRestore(ctx, "ndbDatabaseRestoreResource", &nutanix.NdbDatabaseRestoreArgs{
    	DatabaseId:     pulumi.String("string"),
    	LatestSnapshot: pulumi.String("string"),
    	RestoreVersion: pulumi.Int(0),
    	SnapshotId:     pulumi.String("string"),
    	Tags: nutanix.NdbDatabaseRestoreTagArray{
    		&nutanix.NdbDatabaseRestoreTagArgs{
    			EntityId:   pulumi.String("string"),
    			EntityType: pulumi.String("string"),
    			TagId:      pulumi.String("string"),
    			TagName:    pulumi.String("string"),
    			Value:      pulumi.String("string"),
    		},
    	},
    	TimeZonePitr:      pulumi.String("string"),
    	UserPitrTimestamp: pulumi.String("string"),
    })
    
    var ndbDatabaseRestoreResource = new NdbDatabaseRestore("ndbDatabaseRestoreResource", NdbDatabaseRestoreArgs.builder()
        .databaseId("string")
        .latestSnapshot("string")
        .restoreVersion(0)
        .snapshotId("string")
        .tags(NdbDatabaseRestoreTagArgs.builder()
            .entityId("string")
            .entityType("string")
            .tagId("string")
            .tagName("string")
            .value("string")
            .build())
        .timeZonePitr("string")
        .userPitrTimestamp("string")
        .build());
    
    ndb_database_restore_resource = nutanix.NdbDatabaseRestore("ndbDatabaseRestoreResource",
        database_id="string",
        latest_snapshot="string",
        restore_version=0,
        snapshot_id="string",
        tags=[nutanix.NdbDatabaseRestoreTagArgs(
            entity_id="string",
            entity_type="string",
            tag_id="string",
            tag_name="string",
            value="string",
        )],
        time_zone_pitr="string",
        user_pitr_timestamp="string")
    
    const ndbDatabaseRestoreResource = new nutanix.NdbDatabaseRestore("ndbDatabaseRestoreResource", {
        databaseId: "string",
        latestSnapshot: "string",
        restoreVersion: 0,
        snapshotId: "string",
        tags: [{
            entityId: "string",
            entityType: "string",
            tagId: "string",
            tagName: "string",
            value: "string",
        }],
        timeZonePitr: "string",
        userPitrTimestamp: "string",
    });
    
    type: nutanix:NdbDatabaseRestore
    properties:
        databaseId: string
        latestSnapshot: string
        restoreVersion: 0
        snapshotId: string
        tags:
            - entityId: string
              entityType: string
              tagId: string
              tagName: string
              value: string
        timeZonePitr: string
        userPitrTimestamp: string
    

    NdbDatabaseRestore 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 NdbDatabaseRestore resource accepts the following input properties:

    DatabaseId string
    database id
    LatestSnapshot string
    latest snapshot id
    RestoreVersion int
    helps to restore the database with same config.
    SnapshotId string
    snapshot id from you want to use for restoring the instance
    Tags List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTag>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    TimeZonePitr string
    timezone . Should be used with user_pitr_timestamp
    UserPitrTimestamp string
    the time to which you want to restore your instance.
    DatabaseId string
    database id
    LatestSnapshot string
    latest snapshot id
    RestoreVersion int
    helps to restore the database with same config.
    SnapshotId string
    snapshot id from you want to use for restoring the instance
    Tags []NdbDatabaseRestoreTagArgs
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    TimeZonePitr string
    timezone . Should be used with user_pitr_timestamp
    UserPitrTimestamp string
    the time to which you want to restore your instance.
    databaseId String
    database id
    latestSnapshot String
    latest snapshot id
    restoreVersion Integer
    helps to restore the database with same config.
    snapshotId String
    snapshot id from you want to use for restoring the instance
    tags List<NdbDatabaseRestoreTag>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    timeZonePitr String
    timezone . Should be used with user_pitr_timestamp
    userPitrTimestamp String
    the time to which you want to restore your instance.
    databaseId string
    database id
    latestSnapshot string
    latest snapshot id
    restoreVersion number
    helps to restore the database with same config.
    snapshotId string
    snapshot id from you want to use for restoring the instance
    tags NdbDatabaseRestoreTag[]
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    timeZonePitr string
    timezone . Should be used with user_pitr_timestamp
    userPitrTimestamp string
    the time to which you want to restore your instance.
    database_id str
    database id
    latest_snapshot str
    latest snapshot id
    restore_version int
    helps to restore the database with same config.
    snapshot_id str
    snapshot id from you want to use for restoring the instance
    tags Sequence[NdbDatabaseRestoreTagArgs]
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    time_zone_pitr str
    timezone . Should be used with user_pitr_timestamp
    user_pitr_timestamp str
    the time to which you want to restore your instance.
    databaseId String
    database id
    latestSnapshot String
    latest snapshot id
    restoreVersion Number
    helps to restore the database with same config.
    snapshotId String
    snapshot id from you want to use for restoring the instance
    tags List<Property Map>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    timeZonePitr String
    timezone . Should be used with user_pitr_timestamp
    userPitrTimestamp String
    the time to which you want to restore your instance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NdbDatabaseRestore resource produces the following output properties:

    Clone bool
    whether instance is cloned or not
    DatabaseClusterType string
    database cluster type
    DatabaseInstanceId string
    DatabaseName string
    name of database
    DatabaseNodes List<PiersKarsenbarg.Nutanix.Outputs.NdbDatabaseRestoreDatabaseNode>
    database nodes associated with database instance
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    DbserverLogicalCluster Dictionary<string, string>
    dbserver logical cluster
    DbserverLogicalClusterId string
    dbserver logical cluster id
    Description string
    description of database instance
    Id string
    The provider-assigned unique ID for this managed resource.
    Infos List<PiersKarsenbarg.Nutanix.Outputs.NdbDatabaseRestoreInfo>
    info of instance
    LcmConfigs List<PiersKarsenbarg.Nutanix.Outputs.NdbDatabaseRestoreLcmConfig>
    LCM config of instance
    LinkedDatabases List<PiersKarsenbarg.Nutanix.Outputs.NdbDatabaseRestoreLinkedDatabase>
    linked databases within database instance
    Metric Dictionary<string, string>
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    Name string
    Name of database instance
    ParentDatabaseId string
    parent database id
    Properties List<PiersKarsenbarg.Nutanix.Outputs.NdbDatabaseRestoreProperty>
    properties of database created
    Status string
    status of instance
    TimeMachineId string
    time machine id of instance
    TimeMachines List<PiersKarsenbarg.Nutanix.Outputs.NdbDatabaseRestoreTimeMachine>
    Time Machine details of instance
    TimeZone string
    timezone on which instance is created xw
    Type string
    type of database
    Clone bool
    whether instance is cloned or not
    DatabaseClusterType string
    database cluster type
    DatabaseInstanceId string
    DatabaseName string
    name of database
    DatabaseNodes []NdbDatabaseRestoreDatabaseNode
    database nodes associated with database instance
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    DbserverLogicalCluster map[string]string
    dbserver logical cluster
    DbserverLogicalClusterId string
    dbserver logical cluster id
    Description string
    description of database instance
    Id string
    The provider-assigned unique ID for this managed resource.
    Infos []NdbDatabaseRestoreInfo
    info of instance
    LcmConfigs []NdbDatabaseRestoreLcmConfig
    LCM config of instance
    LinkedDatabases []NdbDatabaseRestoreLinkedDatabase
    linked databases within database instance
    Metric map[string]string
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    Name string
    Name of database instance
    ParentDatabaseId string
    parent database id
    Properties []NdbDatabaseRestoreProperty
    properties of database created
    Status string
    status of instance
    TimeMachineId string
    time machine id of instance
    TimeMachines []NdbDatabaseRestoreTimeMachine
    Time Machine details of instance
    TimeZone string
    timezone on which instance is created xw
    Type string
    type of database
    clone_ Boolean
    whether instance is cloned or not
    databaseClusterType String
    database cluster type
    databaseInstanceId String
    databaseName String
    name of database
    databaseNodes List<NdbDatabaseRestoreDatabaseNode>
    database nodes associated with database instance
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    dbserverLogicalCluster Map<String,String>
    dbserver logical cluster
    dbserverLogicalClusterId String
    dbserver logical cluster id
    description String
    description of database instance
    id String
    The provider-assigned unique ID for this managed resource.
    infos List<NdbDatabaseRestoreInfo>
    info of instance
    lcmConfigs List<NdbDatabaseRestoreLcmConfig>
    LCM config of instance
    linkedDatabases List<NdbDatabaseRestoreLinkedDatabase>
    linked databases within database instance
    metric Map<String,String>
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name String
    Name of database instance
    parentDatabaseId String
    parent database id
    properties List<NdbDatabaseRestoreProperty>
    properties of database created
    status String
    status of instance
    timeMachineId String
    time machine id of instance
    timeMachines List<NdbDatabaseRestoreTimeMachine>
    Time Machine details of instance
    timeZone String
    timezone on which instance is created xw
    type String
    type of database
    clone boolean
    whether instance is cloned or not
    databaseClusterType string
    database cluster type
    databaseInstanceId string
    databaseName string
    name of database
    databaseNodes NdbDatabaseRestoreDatabaseNode[]
    database nodes associated with database instance
    dateCreated string
    date created for db instance
    dateModified string
    date modified for instance
    dbserverLogicalCluster {[key: string]: string}
    dbserver logical cluster
    dbserverLogicalClusterId string
    dbserver logical cluster id
    description string
    description of database instance
    id string
    The provider-assigned unique ID for this managed resource.
    infos NdbDatabaseRestoreInfo[]
    info of instance
    lcmConfigs NdbDatabaseRestoreLcmConfig[]
    LCM config of instance
    linkedDatabases NdbDatabaseRestoreLinkedDatabase[]
    linked databases within database instance
    metric {[key: string]: string}
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name string
    Name of database instance
    parentDatabaseId string
    parent database id
    properties NdbDatabaseRestoreProperty[]
    properties of database created
    status string
    status of instance
    timeMachineId string
    time machine id of instance
    timeMachines NdbDatabaseRestoreTimeMachine[]
    Time Machine details of instance
    timeZone string
    timezone on which instance is created xw
    type string
    type of database
    clone bool
    whether instance is cloned or not
    database_cluster_type str
    database cluster type
    database_instance_id str
    database_name str
    name of database
    database_nodes Sequence[NdbDatabaseRestoreDatabaseNode]
    database nodes associated with database instance
    date_created str
    date created for db instance
    date_modified str
    date modified for instance
    dbserver_logical_cluster Mapping[str, str]
    dbserver logical cluster
    dbserver_logical_cluster_id str
    dbserver logical cluster id
    description str
    description of database instance
    id str
    The provider-assigned unique ID for this managed resource.
    infos Sequence[NdbDatabaseRestoreInfo]
    info of instance
    lcm_configs Sequence[NdbDatabaseRestoreLcmConfig]
    LCM config of instance
    linked_databases Sequence[NdbDatabaseRestoreLinkedDatabase]
    linked databases within database instance
    metric Mapping[str, str]
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name str
    Name of database instance
    parent_database_id str
    parent database id
    properties Sequence[NdbDatabaseRestoreProperty]
    properties of database created
    status str
    status of instance
    time_machine_id str
    time machine id of instance
    time_machines Sequence[NdbDatabaseRestoreTimeMachine]
    Time Machine details of instance
    time_zone str
    timezone on which instance is created xw
    type str
    type of database
    clone Boolean
    whether instance is cloned or not
    databaseClusterType String
    database cluster type
    databaseInstanceId String
    databaseName String
    name of database
    databaseNodes List<Property Map>
    database nodes associated with database instance
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    dbserverLogicalCluster Map<String>
    dbserver logical cluster
    dbserverLogicalClusterId String
    dbserver logical cluster id
    description String
    description of database instance
    id String
    The provider-assigned unique ID for this managed resource.
    infos List<Property Map>
    info of instance
    lcmConfigs List<Property Map>
    LCM config of instance
    linkedDatabases List<Property Map>
    linked databases within database instance
    metric Map<String>
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name String
    Name of database instance
    parentDatabaseId String
    parent database id
    properties List<Property Map>
    properties of database created
    status String
    status of instance
    timeMachineId String
    time machine id of instance
    timeMachines List<Property Map>
    Time Machine details of instance
    timeZone String
    timezone on which instance is created xw
    type String
    type of database

    Look up Existing NdbDatabaseRestore Resource

    Get an existing NdbDatabaseRestore resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NdbDatabaseRestoreState, opts?: CustomResourceOptions): NdbDatabaseRestore
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            clone: Optional[bool] = None,
            database_cluster_type: Optional[str] = None,
            database_id: Optional[str] = None,
            database_instance_id: Optional[str] = None,
            database_name: Optional[str] = None,
            database_nodes: Optional[Sequence[NdbDatabaseRestoreDatabaseNodeArgs]] = None,
            date_created: Optional[str] = None,
            date_modified: Optional[str] = None,
            dbserver_logical_cluster: Optional[Mapping[str, str]] = None,
            dbserver_logical_cluster_id: Optional[str] = None,
            description: Optional[str] = None,
            infos: Optional[Sequence[NdbDatabaseRestoreInfoArgs]] = None,
            latest_snapshot: Optional[str] = None,
            lcm_configs: Optional[Sequence[NdbDatabaseRestoreLcmConfigArgs]] = None,
            linked_databases: Optional[Sequence[NdbDatabaseRestoreLinkedDatabaseArgs]] = None,
            metric: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            parent_database_id: Optional[str] = None,
            properties: Optional[Sequence[NdbDatabaseRestorePropertyArgs]] = None,
            restore_version: Optional[int] = None,
            snapshot_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Sequence[NdbDatabaseRestoreTagArgs]] = None,
            time_machine_id: Optional[str] = None,
            time_machines: Optional[Sequence[NdbDatabaseRestoreTimeMachineArgs]] = None,
            time_zone: Optional[str] = None,
            time_zone_pitr: Optional[str] = None,
            type: Optional[str] = None,
            user_pitr_timestamp: Optional[str] = None) -> NdbDatabaseRestore
    func GetNdbDatabaseRestore(ctx *Context, name string, id IDInput, state *NdbDatabaseRestoreState, opts ...ResourceOption) (*NdbDatabaseRestore, error)
    public static NdbDatabaseRestore Get(string name, Input<string> id, NdbDatabaseRestoreState? state, CustomResourceOptions? opts = null)
    public static NdbDatabaseRestore get(String name, Output<String> id, NdbDatabaseRestoreState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Clone bool
    whether instance is cloned or not
    DatabaseClusterType string
    database cluster type
    DatabaseId string
    database id
    DatabaseInstanceId string
    DatabaseName string
    name of database
    DatabaseNodes List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreDatabaseNode>
    database nodes associated with database instance
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    DbserverLogicalCluster Dictionary<string, string>
    dbserver logical cluster
    DbserverLogicalClusterId string
    dbserver logical cluster id
    Description string
    description of database instance
    Infos List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreInfo>
    info of instance
    LatestSnapshot string
    latest snapshot id
    LcmConfigs List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreLcmConfig>
    LCM config of instance
    LinkedDatabases List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreLinkedDatabase>
    linked databases within database instance
    Metric Dictionary<string, string>
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    Name string
    Name of database instance
    ParentDatabaseId string
    parent database id
    Properties List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreProperty>
    properties of database created
    RestoreVersion int
    helps to restore the database with same config.
    SnapshotId string
    snapshot id from you want to use for restoring the instance
    Status string
    status of instance
    Tags List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTag>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    TimeMachineId string
    time machine id of instance
    TimeMachines List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachine>
    Time Machine details of instance
    TimeZone string
    timezone on which instance is created xw
    TimeZonePitr string
    timezone . Should be used with user_pitr_timestamp
    Type string
    type of database
    UserPitrTimestamp string
    the time to which you want to restore your instance.
    Clone bool
    whether instance is cloned or not
    DatabaseClusterType string
    database cluster type
    DatabaseId string
    database id
    DatabaseInstanceId string
    DatabaseName string
    name of database
    DatabaseNodes []NdbDatabaseRestoreDatabaseNodeArgs
    database nodes associated with database instance
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    DbserverLogicalCluster map[string]string
    dbserver logical cluster
    DbserverLogicalClusterId string
    dbserver logical cluster id
    Description string
    description of database instance
    Infos []NdbDatabaseRestoreInfoArgs
    info of instance
    LatestSnapshot string
    latest snapshot id
    LcmConfigs []NdbDatabaseRestoreLcmConfigArgs
    LCM config of instance
    LinkedDatabases []NdbDatabaseRestoreLinkedDatabaseArgs
    linked databases within database instance
    Metric map[string]string
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    Name string
    Name of database instance
    ParentDatabaseId string
    parent database id
    Properties []NdbDatabaseRestorePropertyArgs
    properties of database created
    RestoreVersion int
    helps to restore the database with same config.
    SnapshotId string
    snapshot id from you want to use for restoring the instance
    Status string
    status of instance
    Tags []NdbDatabaseRestoreTagArgs
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    TimeMachineId string
    time machine id of instance
    TimeMachines []NdbDatabaseRestoreTimeMachineArgs
    Time Machine details of instance
    TimeZone string
    timezone on which instance is created xw
    TimeZonePitr string
    timezone . Should be used with user_pitr_timestamp
    Type string
    type of database
    UserPitrTimestamp string
    the time to which you want to restore your instance.
    clone_ Boolean
    whether instance is cloned or not
    databaseClusterType String
    database cluster type
    databaseId String
    database id
    databaseInstanceId String
    databaseName String
    name of database
    databaseNodes List<NdbDatabaseRestoreDatabaseNode>
    database nodes associated with database instance
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    dbserverLogicalCluster Map<String,String>
    dbserver logical cluster
    dbserverLogicalClusterId String
    dbserver logical cluster id
    description String
    description of database instance
    infos List<NdbDatabaseRestoreInfo>
    info of instance
    latestSnapshot String
    latest snapshot id
    lcmConfigs List<NdbDatabaseRestoreLcmConfig>
    LCM config of instance
    linkedDatabases List<NdbDatabaseRestoreLinkedDatabase>
    linked databases within database instance
    metric Map<String,String>
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name String
    Name of database instance
    parentDatabaseId String
    parent database id
    properties List<NdbDatabaseRestoreProperty>
    properties of database created
    restoreVersion Integer
    helps to restore the database with same config.
    snapshotId String
    snapshot id from you want to use for restoring the instance
    status String
    status of instance
    tags List<NdbDatabaseRestoreTag>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    timeMachineId String
    time machine id of instance
    timeMachines List<NdbDatabaseRestoreTimeMachine>
    Time Machine details of instance
    timeZone String
    timezone on which instance is created xw
    timeZonePitr String
    timezone . Should be used with user_pitr_timestamp
    type String
    type of database
    userPitrTimestamp String
    the time to which you want to restore your instance.
    clone boolean
    whether instance is cloned or not
    databaseClusterType string
    database cluster type
    databaseId string
    database id
    databaseInstanceId string
    databaseName string
    name of database
    databaseNodes NdbDatabaseRestoreDatabaseNode[]
    database nodes associated with database instance
    dateCreated string
    date created for db instance
    dateModified string
    date modified for instance
    dbserverLogicalCluster {[key: string]: string}
    dbserver logical cluster
    dbserverLogicalClusterId string
    dbserver logical cluster id
    description string
    description of database instance
    infos NdbDatabaseRestoreInfo[]
    info of instance
    latestSnapshot string
    latest snapshot id
    lcmConfigs NdbDatabaseRestoreLcmConfig[]
    LCM config of instance
    linkedDatabases NdbDatabaseRestoreLinkedDatabase[]
    linked databases within database instance
    metric {[key: string]: string}
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name string
    Name of database instance
    parentDatabaseId string
    parent database id
    properties NdbDatabaseRestoreProperty[]
    properties of database created
    restoreVersion number
    helps to restore the database with same config.
    snapshotId string
    snapshot id from you want to use for restoring the instance
    status string
    status of instance
    tags NdbDatabaseRestoreTag[]
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    timeMachineId string
    time machine id of instance
    timeMachines NdbDatabaseRestoreTimeMachine[]
    Time Machine details of instance
    timeZone string
    timezone on which instance is created xw
    timeZonePitr string
    timezone . Should be used with user_pitr_timestamp
    type string
    type of database
    userPitrTimestamp string
    the time to which you want to restore your instance.
    clone bool
    whether instance is cloned or not
    database_cluster_type str
    database cluster type
    database_id str
    database id
    database_instance_id str
    database_name str
    name of database
    database_nodes Sequence[NdbDatabaseRestoreDatabaseNodeArgs]
    database nodes associated with database instance
    date_created str
    date created for db instance
    date_modified str
    date modified for instance
    dbserver_logical_cluster Mapping[str, str]
    dbserver logical cluster
    dbserver_logical_cluster_id str
    dbserver logical cluster id
    description str
    description of database instance
    infos Sequence[NdbDatabaseRestoreInfoArgs]
    info of instance
    latest_snapshot str
    latest snapshot id
    lcm_configs Sequence[NdbDatabaseRestoreLcmConfigArgs]
    LCM config of instance
    linked_databases Sequence[NdbDatabaseRestoreLinkedDatabaseArgs]
    linked databases within database instance
    metric Mapping[str, str]
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name str
    Name of database instance
    parent_database_id str
    parent database id
    properties Sequence[NdbDatabaseRestorePropertyArgs]
    properties of database created
    restore_version int
    helps to restore the database with same config.
    snapshot_id str
    snapshot id from you want to use for restoring the instance
    status str
    status of instance
    tags Sequence[NdbDatabaseRestoreTagArgs]
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    time_machine_id str
    time machine id of instance
    time_machines Sequence[NdbDatabaseRestoreTimeMachineArgs]
    Time Machine details of instance
    time_zone str
    timezone on which instance is created xw
    time_zone_pitr str
    timezone . Should be used with user_pitr_timestamp
    type str
    type of database
    user_pitr_timestamp str
    the time to which you want to restore your instance.
    clone Boolean
    whether instance is cloned or not
    databaseClusterType String
    database cluster type
    databaseId String
    database id
    databaseInstanceId String
    databaseName String
    name of database
    databaseNodes List<Property Map>
    database nodes associated with database instance
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    dbserverLogicalCluster Map<String>
    dbserver logical cluster
    dbserverLogicalClusterId String
    dbserver logical cluster id
    description String
    description of database instance
    infos List<Property Map>
    info of instance
    latestSnapshot String
    latest snapshot id
    lcmConfigs List<Property Map>
    LCM config of instance
    linkedDatabases List<Property Map>
    linked databases within database instance
    metric Map<String>
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name String
    Name of database instance
    parentDatabaseId String
    parent database id
    properties List<Property Map>
    properties of database created
    restoreVersion Number
    helps to restore the database with same config.
    snapshotId String
    snapshot id from you want to use for restoring the instance
    status String
    status of instance
    tags List<Property Map>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    timeMachineId String
    time machine id of instance
    timeMachines List<Property Map>
    Time Machine details of instance
    timeZone String
    timezone on which instance is created xw
    timeZonePitr String
    timezone . Should be used with user_pitr_timestamp
    type String
    type of database
    userPitrTimestamp String
    the time to which you want to restore your instance.

    Supporting Types

    NdbDatabaseRestoreDatabaseNode, NdbDatabaseRestoreDatabaseNodeArgs

    AccessLevel Dictionary<string, string>
    DatabaseId string
    database id
    DatabaseStatus string
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Dbserver Dictionary<string, string>
    DbserverId string
    Description string
    description of database instance
    Id string
    Infos List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreDatabaseNodeInfo>
    info of instance
    Name string
    Name of database instance
    Primary bool
    Properties List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreDatabaseNodeProperty>
    properties of database created
    ProtectionDomainId string
    ProtectionDomains List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreDatabaseNodeProtectionDomain>
    SoftwareInstallationId string
    Status string
    status of instance
    Tags List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreDatabaseNodeTag>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    AccessLevel map[string]string
    DatabaseId string
    database id
    DatabaseStatus string
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Dbserver map[string]string
    DbserverId string
    Description string
    description of database instance
    Id string
    Infos []NdbDatabaseRestoreDatabaseNodeInfo
    info of instance
    Name string
    Name of database instance
    Primary bool
    Properties []NdbDatabaseRestoreDatabaseNodeProperty
    properties of database created
    ProtectionDomainId string
    ProtectionDomains []NdbDatabaseRestoreDatabaseNodeProtectionDomain
    SoftwareInstallationId string
    Status string
    status of instance
    Tags []NdbDatabaseRestoreDatabaseNodeTag
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    accessLevel Map<String,String>
    databaseId String
    database id
    databaseStatus String
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    dbserver Map<String,String>
    dbserverId String
    description String
    description of database instance
    id String
    infos List<NdbDatabaseRestoreDatabaseNodeInfo>
    info of instance
    name String
    Name of database instance
    primary Boolean
    properties List<NdbDatabaseRestoreDatabaseNodeProperty>
    properties of database created
    protectionDomainId String
    protectionDomains List<NdbDatabaseRestoreDatabaseNodeProtectionDomain>
    softwareInstallationId String
    status String
    status of instance
    tags List<NdbDatabaseRestoreDatabaseNodeTag>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    accessLevel {[key: string]: string}
    databaseId string
    database id
    databaseStatus string
    dateCreated string
    date created for db instance
    dateModified string
    date modified for instance
    dbserver {[key: string]: string}
    dbserverId string
    description string
    description of database instance
    id string
    infos NdbDatabaseRestoreDatabaseNodeInfo[]
    info of instance
    name string
    Name of database instance
    primary boolean
    properties NdbDatabaseRestoreDatabaseNodeProperty[]
    properties of database created
    protectionDomainId string
    protectionDomains NdbDatabaseRestoreDatabaseNodeProtectionDomain[]
    softwareInstallationId string
    status string
    status of instance
    tags NdbDatabaseRestoreDatabaseNodeTag[]
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    access_level Mapping[str, str]
    database_id str
    database id
    database_status str
    date_created str
    date created for db instance
    date_modified str
    date modified for instance
    dbserver Mapping[str, str]
    dbserver_id str
    description str
    description of database instance
    id str
    infos Sequence[NdbDatabaseRestoreDatabaseNodeInfo]
    info of instance
    name str
    Name of database instance
    primary bool
    properties Sequence[NdbDatabaseRestoreDatabaseNodeProperty]
    properties of database created
    protection_domain_id str
    protection_domains Sequence[NdbDatabaseRestoreDatabaseNodeProtectionDomain]
    software_installation_id str
    status str
    status of instance
    tags Sequence[NdbDatabaseRestoreDatabaseNodeTag]
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    accessLevel Map<String>
    databaseId String
    database id
    databaseStatus String
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    dbserver Map<String>
    dbserverId String
    description String
    description of database instance
    id String
    infos List<Property Map>
    info of instance
    name String
    Name of database instance
    primary Boolean
    properties List<Property Map>
    properties of database created
    protectionDomainId String
    protectionDomains List<Property Map>
    softwareInstallationId String
    status String
    status of instance
    tags List<Property Map>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.

    NdbDatabaseRestoreDatabaseNodeInfo, NdbDatabaseRestoreDatabaseNodeInfoArgs

    Info Dictionary<string, string>
    info of instance
    SecureInfo Dictionary<string, string>
    Info map[string]string
    info of instance
    SecureInfo map[string]string
    info Map<String,String>
    info of instance
    secureInfo Map<String,String>
    info {[key: string]: string}
    info of instance
    secureInfo {[key: string]: string}
    info Mapping[str, str]
    info of instance
    secure_info Mapping[str, str]
    info Map<String>
    info of instance
    secureInfo Map<String>

    NdbDatabaseRestoreDatabaseNodeProperty, NdbDatabaseRestoreDatabaseNodePropertyArgs

    Description string
    description of database instance
    Name string
    Name of database instance
    RefId string
    Secure bool
    Value string
    Description string
    description of database instance
    Name string
    Name of database instance
    RefId string
    Secure bool
    Value string
    description String
    description of database instance
    name String
    Name of database instance
    refId String
    secure Boolean
    value String
    description string
    description of database instance
    name string
    Name of database instance
    refId string
    secure boolean
    value string
    description str
    description of database instance
    name str
    Name of database instance
    ref_id str
    secure bool
    value str
    description String
    description of database instance
    name String
    Name of database instance
    refId String
    secure Boolean
    value String

    NdbDatabaseRestoreDatabaseNodeProtectionDomain, NdbDatabaseRestoreDatabaseNodeProtectionDomainArgs

    AssocEntities List<string>
    CloudId string
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    EraCreated bool
    Id string
    Name string
    Name of database instance
    OwnerId string
    PrimaryHost string
    Properties List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreDatabaseNodeProtectionDomainProperty>
    properties of database created
    Status string
    status of instance
    Type string
    type of database
    AssocEntities []string
    CloudId string
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    EraCreated bool
    Id string
    Name string
    Name of database instance
    OwnerId string
    PrimaryHost string
    Properties []NdbDatabaseRestoreDatabaseNodeProtectionDomainProperty
    properties of database created
    Status string
    status of instance
    Type string
    type of database
    assocEntities List<String>
    cloudId String
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    eraCreated Boolean
    id String
    name String
    Name of database instance
    ownerId String
    primaryHost String
    properties List<NdbDatabaseRestoreDatabaseNodeProtectionDomainProperty>
    properties of database created
    status String
    status of instance
    type String
    type of database
    assocEntities string[]
    cloudId string
    dateCreated string
    date created for db instance
    dateModified string
    date modified for instance
    description string
    description of database instance
    eraCreated boolean
    id string
    name string
    Name of database instance
    ownerId string
    primaryHost string
    properties NdbDatabaseRestoreDatabaseNodeProtectionDomainProperty[]
    properties of database created
    status string
    status of instance
    type string
    type of database
    assoc_entities Sequence[str]
    cloud_id str
    date_created str
    date created for db instance
    date_modified str
    date modified for instance
    description str
    description of database instance
    era_created bool
    id str
    name str
    Name of database instance
    owner_id str
    primary_host str
    properties Sequence[NdbDatabaseRestoreDatabaseNodeProtectionDomainProperty]
    properties of database created
    status str
    status of instance
    type str
    type of database
    assocEntities List<String>
    cloudId String
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    eraCreated Boolean
    id String
    name String
    Name of database instance
    ownerId String
    primaryHost String
    properties List<Property Map>
    properties of database created
    status String
    status of instance
    type String
    type of database

    NdbDatabaseRestoreDatabaseNodeProtectionDomainProperty, NdbDatabaseRestoreDatabaseNodeProtectionDomainPropertyArgs

    Description string
    description of database instance
    Name string
    Name of database instance
    RefId string
    Secure bool
    Value string
    Description string
    description of database instance
    Name string
    Name of database instance
    RefId string
    Secure bool
    Value string
    description String
    description of database instance
    name String
    Name of database instance
    refId String
    secure Boolean
    value String
    description string
    description of database instance
    name string
    Name of database instance
    refId string
    secure boolean
    value string
    description str
    description of database instance
    name str
    Name of database instance
    ref_id str
    secure bool
    value str
    description String
    description of database instance
    name String
    Name of database instance
    refId String
    secure Boolean
    value String

    NdbDatabaseRestoreDatabaseNodeTag, NdbDatabaseRestoreDatabaseNodeTagArgs

    EntityId string
    EntityType string
    TagId string
    TagName string
    Value string
    EntityId string
    EntityType string
    TagId string
    TagName string
    Value string
    entityId String
    entityType String
    tagId String
    tagName String
    value String
    entityId string
    entityType string
    tagId string
    tagName string
    value string
    entityId String
    entityType String
    tagId String
    tagName String
    value String

    NdbDatabaseRestoreInfo, NdbDatabaseRestoreInfoArgs

    NdbDatabaseRestoreInfoBpgConfig, NdbDatabaseRestoreInfoBpgConfigArgs

    NdbDatabaseRestoreInfoBpgConfigBpgDbParam, NdbDatabaseRestoreInfoBpgConfigBpgDbParamArgs

    NdbDatabaseRestoreInfoBpgConfigStorage, NdbDatabaseRestoreInfoBpgConfigStorageArgs

    NdbDatabaseRestoreInfoBpgConfigStorageArchiveStorage, NdbDatabaseRestoreInfoBpgConfigStorageArchiveStorageArgs

    Size double
    Size float64
    size Double
    size number
    size float
    size Number

    NdbDatabaseRestoreInfoBpgConfigStorageDataDisk, NdbDatabaseRestoreInfoBpgConfigStorageDataDiskArgs

    Count double
    Count float64
    count Double
    count number
    count float
    count Number

    NdbDatabaseRestoreInfoBpgConfigStorageLogDisk, NdbDatabaseRestoreInfoBpgConfigStorageLogDiskArgs

    Count double
    Size double
    Count float64
    Size float64
    count Double
    size Double
    count number
    size number
    count float
    size float
    count Number
    size Number

    NdbDatabaseRestoreInfoBpgConfigVmProperty, NdbDatabaseRestoreInfoBpgConfigVmPropertyArgs

    NdbDatabaseRestoreLcmConfig, NdbDatabaseRestoreLcmConfigArgs

    NdbDatabaseRestoreLcmConfigExpiryDetail, NdbDatabaseRestoreLcmConfigExpiryDetailArgs

    NdbDatabaseRestoreLcmConfigPostDeleteCommand, NdbDatabaseRestoreLcmConfigPostDeleteCommandArgs

    Command string
    Command string
    command String
    command string
    command String

    NdbDatabaseRestoreLcmConfigPreDeleteCommand, NdbDatabaseRestoreLcmConfigPreDeleteCommandArgs

    Command string
    Command string
    command String
    command string
    command String

    NdbDatabaseRestoreLcmConfigRefreshDetail, NdbDatabaseRestoreLcmConfigRefreshDetailArgs

    NdbDatabaseRestoreLinkedDatabase, NdbDatabaseRestoreLinkedDatabaseArgs

    DatabaseName string
    name of database
    DatabaseStatus string
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    Id string
    Infos List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreLinkedDatabaseInfo>
    info of instance
    Metric Dictionary<string, string>
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    Name string
    Name of database instance
    ParentDatabaseId string
    parent database id
    ParentLinkedDatabaseId string
    SnapshotId string
    snapshot id from you want to use for restoring the instance
    Status string
    status of instance
    Timezone string
    DatabaseName string
    name of database
    DatabaseStatus string
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    Id string
    Infos []NdbDatabaseRestoreLinkedDatabaseInfo
    info of instance
    Metric map[string]string
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    Name string
    Name of database instance
    ParentDatabaseId string
    parent database id
    ParentLinkedDatabaseId string
    SnapshotId string
    snapshot id from you want to use for restoring the instance
    Status string
    status of instance
    Timezone string
    databaseName String
    name of database
    databaseStatus String
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    id String
    infos List<NdbDatabaseRestoreLinkedDatabaseInfo>
    info of instance
    metric Map<String,String>
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name String
    Name of database instance
    parentDatabaseId String
    parent database id
    parentLinkedDatabaseId String
    snapshotId String
    snapshot id from you want to use for restoring the instance
    status String
    status of instance
    timezone String
    databaseName string
    name of database
    databaseStatus string
    dateCreated string
    date created for db instance
    dateModified string
    date modified for instance
    description string
    description of database instance
    id string
    infos NdbDatabaseRestoreLinkedDatabaseInfo[]
    info of instance
    metric {[key: string]: string}
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name string
    Name of database instance
    parentDatabaseId string
    parent database id
    parentLinkedDatabaseId string
    snapshotId string
    snapshot id from you want to use for restoring the instance
    status string
    status of instance
    timezone string
    database_name str
    name of database
    database_status str
    date_created str
    date created for db instance
    date_modified str
    date modified for instance
    description str
    description of database instance
    id str
    infos Sequence[NdbDatabaseRestoreLinkedDatabaseInfo]
    info of instance
    metric Mapping[str, str]
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name str
    Name of database instance
    parent_database_id str
    parent database id
    parent_linked_database_id str
    snapshot_id str
    snapshot id from you want to use for restoring the instance
    status str
    status of instance
    timezone str
    databaseName String
    name of database
    databaseStatus String
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    id String
    infos List<Property Map>
    info of instance
    metric Map<String>
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name String
    Name of database instance
    parentDatabaseId String
    parent database id
    parentLinkedDatabaseId String
    snapshotId String
    snapshot id from you want to use for restoring the instance
    status String
    status of instance
    timezone String

    NdbDatabaseRestoreLinkedDatabaseInfo, NdbDatabaseRestoreLinkedDatabaseInfoArgs

    Info Dictionary<string, string>
    info of instance
    SecureInfo Dictionary<string, string>
    Info map[string]string
    info of instance
    SecureInfo map[string]string
    info Map<String,String>
    info of instance
    secureInfo Map<String,String>
    info {[key: string]: string}
    info of instance
    secureInfo {[key: string]: string}
    info Mapping[str, str]
    info of instance
    secure_info Mapping[str, str]
    info Map<String>
    info of instance
    secureInfo Map<String>

    NdbDatabaseRestoreProperty, NdbDatabaseRestorePropertyArgs

    Name string
    Name of database instance
    Value string
    Name string
    Name of database instance
    Value string
    name String
    Name of database instance
    value String
    name string
    Name of database instance
    value string
    name str
    Name of database instance
    value str
    name String
    Name of database instance
    value String

    NdbDatabaseRestoreTag, NdbDatabaseRestoreTagArgs

    EntityId string
    EntityType string
    TagId string
    TagName string
    Value string
    EntityId string
    EntityType string
    TagId string
    TagName string
    Value string
    entityId String
    entityType String
    tagId String
    tagName String
    value String
    entityId string
    entityType string
    tagId string
    tagName string
    value string
    entityId String
    entityType String
    tagId String
    tagName String
    value String

    NdbDatabaseRestoreTimeMachine, NdbDatabaseRestoreTimeMachineArgs

    AccessLevel string
    Clone bool
    whether instance is cloned or not
    Clones string
    Clustered bool
    Database string
    DatabaseId string
    database id
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    EaStatus string
    Id string
    Metric string
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    Name string
    Name of database instance
    Properties List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineProperty>
    properties of database created
    ScheduleId string
    Schedules List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineSchedule>
    Scope string
    SlaId string
    SlaUpdateInProgress bool
    SlaUpdateMetadata string
    Slas List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineSla>
    SourceNxClusters List<string>
    Status string
    status of instance
    Tags List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineTag>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    Type string
    type of database
    AccessLevel string
    Clone bool
    whether instance is cloned or not
    Clones string
    Clustered bool
    Database string
    DatabaseId string
    database id
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    EaStatus string
    Id string
    Metric string
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    Name string
    Name of database instance
    Properties []NdbDatabaseRestoreTimeMachineProperty
    properties of database created
    ScheduleId string
    Schedules []NdbDatabaseRestoreTimeMachineSchedule
    Scope string
    SlaId string
    SlaUpdateInProgress bool
    SlaUpdateMetadata string
    Slas []NdbDatabaseRestoreTimeMachineSla
    SourceNxClusters []string
    Status string
    status of instance
    Tags []NdbDatabaseRestoreTimeMachineTag
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    Type string
    type of database
    accessLevel String
    clone_ Boolean
    whether instance is cloned or not
    clones String
    clustered Boolean
    database String
    databaseId String
    database id
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    eaStatus String
    id String
    metric String
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name String
    Name of database instance
    properties List<NdbDatabaseRestoreTimeMachineProperty>
    properties of database created
    scheduleId String
    schedules List<NdbDatabaseRestoreTimeMachineSchedule>
    scope String
    slaId String
    slaUpdateInProgress Boolean
    slaUpdateMetadata String
    slas List<NdbDatabaseRestoreTimeMachineSla>
    sourceNxClusters List<String>
    status String
    status of instance
    tags List<NdbDatabaseRestoreTimeMachineTag>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    type String
    type of database
    accessLevel string
    clone boolean
    whether instance is cloned or not
    clones string
    clustered boolean
    database string
    databaseId string
    database id
    dateCreated string
    date created for db instance
    dateModified string
    date modified for instance
    description string
    description of database instance
    eaStatus string
    id string
    metric string
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name string
    Name of database instance
    properties NdbDatabaseRestoreTimeMachineProperty[]
    properties of database created
    scheduleId string
    schedules NdbDatabaseRestoreTimeMachineSchedule[]
    scope string
    slaId string
    slaUpdateInProgress boolean
    slaUpdateMetadata string
    slas NdbDatabaseRestoreTimeMachineSla[]
    sourceNxClusters string[]
    status string
    status of instance
    tags NdbDatabaseRestoreTimeMachineTag[]
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    type string
    type of database
    access_level str
    clone bool
    whether instance is cloned or not
    clones str
    clustered bool
    database str
    database_id str
    database id
    date_created str
    date created for db instance
    date_modified str
    date modified for instance
    description str
    description of database instance
    ea_status str
    id str
    metric str
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name str
    Name of database instance
    properties Sequence[NdbDatabaseRestoreTimeMachineProperty]
    properties of database created
    schedule_id str
    schedules Sequence[NdbDatabaseRestoreTimeMachineSchedule]
    scope str
    sla_id str
    sla_update_in_progress bool
    sla_update_metadata str
    slas Sequence[NdbDatabaseRestoreTimeMachineSla]
    source_nx_clusters Sequence[str]
    status str
    status of instance
    tags Sequence[NdbDatabaseRestoreTimeMachineTag]
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    type str
    type of database
    accessLevel String
    clone Boolean
    whether instance is cloned or not
    clones String
    clustered Boolean
    database String
    databaseId String
    database id
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    eaStatus String
    id String
    metric String
    Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
    name String
    Name of database instance
    properties List<Property Map>
    properties of database created
    scheduleId String
    schedules List<Property Map>
    scope String
    slaId String
    slaUpdateInProgress Boolean
    slaUpdateMetadata String
    slas List<Property Map>
    sourceNxClusters List<String>
    status String
    status of instance
    tags List<Property Map>
    allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
    type String
    type of database

    NdbDatabaseRestoreTimeMachineProperty, NdbDatabaseRestoreTimeMachinePropertyArgs

    Description string
    description of database instance
    Name string
    Name of database instance
    RefId string
    Secure bool
    Value string
    Description string
    description of database instance
    Name string
    Name of database instance
    RefId string
    Secure bool
    Value string
    description String
    description of database instance
    name String
    Name of database instance
    refId String
    secure Boolean
    value String
    description string
    description of database instance
    name string
    Name of database instance
    refId string
    secure boolean
    value string
    description str
    description of database instance
    name str
    Name of database instance
    ref_id str
    secure bool
    value str
    description String
    description of database instance
    name String
    Name of database instance
    refId String
    secure Boolean
    value String

    NdbDatabaseRestoreTimeMachineSchedule, NdbDatabaseRestoreTimeMachineScheduleArgs

    ContinuousSchedules List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineScheduleContinuousSchedule>
    DailySchedules List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineScheduleDailySchedule>
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    GlobalPolicy bool
    Id string
    MonthlySchedules List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineScheduleMonthlySchedule>
    Name string
    Name of database instance
    OwnerId string
    QuartelySchedules List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineScheduleQuartelySchedule>
    ReferenceCount int
    SnapshotTimeOfDays List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineScheduleSnapshotTimeOfDay>
    StartTime string
    SystemPolicy bool
    TimeZone string
    timezone on which instance is created xw
    UniqueName string
    WeeklySchedules List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineScheduleWeeklySchedule>
    YearlySchedules List<PiersKarsenbarg.Nutanix.Inputs.NdbDatabaseRestoreTimeMachineScheduleYearlySchedule>
    ContinuousSchedules []NdbDatabaseRestoreTimeMachineScheduleContinuousSchedule
    DailySchedules []NdbDatabaseRestoreTimeMachineScheduleDailySchedule
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    GlobalPolicy bool
    Id string
    MonthlySchedules []NdbDatabaseRestoreTimeMachineScheduleMonthlySchedule
    Name string
    Name of database instance
    OwnerId string
    QuartelySchedules []NdbDatabaseRestoreTimeMachineScheduleQuartelySchedule
    ReferenceCount int
    SnapshotTimeOfDays []NdbDatabaseRestoreTimeMachineScheduleSnapshotTimeOfDay
    StartTime string
    SystemPolicy bool
    TimeZone string
    timezone on which instance is created xw
    UniqueName string
    WeeklySchedules []NdbDatabaseRestoreTimeMachineScheduleWeeklySchedule
    YearlySchedules []NdbDatabaseRestoreTimeMachineScheduleYearlySchedule
    continuousSchedules List<NdbDatabaseRestoreTimeMachineScheduleContinuousSchedule>
    dailySchedules List<NdbDatabaseRestoreTimeMachineScheduleDailySchedule>
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    globalPolicy Boolean
    id String
    monthlySchedules List<NdbDatabaseRestoreTimeMachineScheduleMonthlySchedule>
    name String
    Name of database instance
    ownerId String
    quartelySchedules List<NdbDatabaseRestoreTimeMachineScheduleQuartelySchedule>
    referenceCount Integer
    snapshotTimeOfDays List<NdbDatabaseRestoreTimeMachineScheduleSnapshotTimeOfDay>
    startTime String
    systemPolicy Boolean
    timeZone String
    timezone on which instance is created xw
    uniqueName String
    weeklySchedules List<NdbDatabaseRestoreTimeMachineScheduleWeeklySchedule>
    yearlySchedules List<NdbDatabaseRestoreTimeMachineScheduleYearlySchedule>
    continuousSchedules NdbDatabaseRestoreTimeMachineScheduleContinuousSchedule[]
    dailySchedules NdbDatabaseRestoreTimeMachineScheduleDailySchedule[]
    dateCreated string
    date created for db instance
    dateModified string
    date modified for instance
    description string
    description of database instance
    globalPolicy boolean
    id string
    monthlySchedules NdbDatabaseRestoreTimeMachineScheduleMonthlySchedule[]
    name string
    Name of database instance
    ownerId string
    quartelySchedules NdbDatabaseRestoreTimeMachineScheduleQuartelySchedule[]
    referenceCount number
    snapshotTimeOfDays NdbDatabaseRestoreTimeMachineScheduleSnapshotTimeOfDay[]
    startTime string
    systemPolicy boolean
    timeZone string
    timezone on which instance is created xw
    uniqueName string
    weeklySchedules NdbDatabaseRestoreTimeMachineScheduleWeeklySchedule[]
    yearlySchedules NdbDatabaseRestoreTimeMachineScheduleYearlySchedule[]
    continuous_schedules Sequence[NdbDatabaseRestoreTimeMachineScheduleContinuousSchedule]
    daily_schedules Sequence[NdbDatabaseRestoreTimeMachineScheduleDailySchedule]
    date_created str
    date created for db instance
    date_modified str
    date modified for instance
    description str
    description of database instance
    global_policy bool
    id str
    monthly_schedules Sequence[NdbDatabaseRestoreTimeMachineScheduleMonthlySchedule]
    name str
    Name of database instance
    owner_id str
    quartely_schedules Sequence[NdbDatabaseRestoreTimeMachineScheduleQuartelySchedule]
    reference_count int
    snapshot_time_of_days Sequence[NdbDatabaseRestoreTimeMachineScheduleSnapshotTimeOfDay]
    start_time str
    system_policy bool
    time_zone str
    timezone on which instance is created xw
    unique_name str
    weekly_schedules Sequence[NdbDatabaseRestoreTimeMachineScheduleWeeklySchedule]
    yearly_schedules Sequence[NdbDatabaseRestoreTimeMachineScheduleYearlySchedule]
    continuousSchedules List<Property Map>
    dailySchedules List<Property Map>
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    globalPolicy Boolean
    id String
    monthlySchedules List<Property Map>
    name String
    Name of database instance
    ownerId String
    quartelySchedules List<Property Map>
    referenceCount Number
    snapshotTimeOfDays List<Property Map>
    startTime String
    systemPolicy Boolean
    timeZone String
    timezone on which instance is created xw
    uniqueName String
    weeklySchedules List<Property Map>
    yearlySchedules List<Property Map>

    NdbDatabaseRestoreTimeMachineScheduleContinuousSchedule, NdbDatabaseRestoreTimeMachineScheduleContinuousScheduleArgs

    NdbDatabaseRestoreTimeMachineScheduleDailySchedule, NdbDatabaseRestoreTimeMachineScheduleDailyScheduleArgs

    Enabled bool
    Enabled bool
    enabled Boolean
    enabled boolean
    enabled bool
    enabled Boolean

    NdbDatabaseRestoreTimeMachineScheduleMonthlySchedule, NdbDatabaseRestoreTimeMachineScheduleMonthlyScheduleArgs

    dayOfMonth Integer
    enabled Boolean
    dayOfMonth number
    enabled boolean
    dayOfMonth Number
    enabled Boolean

    NdbDatabaseRestoreTimeMachineScheduleQuartelySchedule, NdbDatabaseRestoreTimeMachineScheduleQuartelyScheduleArgs

    dayOfMonth Integer
    enabled Boolean
    startMonth String
    startMonthValue String
    dayOfMonth number
    enabled boolean
    startMonth string
    startMonthValue string
    dayOfMonth Number
    enabled Boolean
    startMonth String
    startMonthValue String

    NdbDatabaseRestoreTimeMachineScheduleSnapshotTimeOfDay, NdbDatabaseRestoreTimeMachineScheduleSnapshotTimeOfDayArgs

    Extra bool
    Hours int
    Minutes int
    Seconds int
    Extra bool
    Hours int
    Minutes int
    Seconds int
    extra Boolean
    hours Integer
    minutes Integer
    seconds Integer
    extra boolean
    hours number
    minutes number
    seconds number
    extra bool
    hours int
    minutes int
    seconds int
    extra Boolean
    hours Number
    minutes Number
    seconds Number

    NdbDatabaseRestoreTimeMachineScheduleWeeklySchedule, NdbDatabaseRestoreTimeMachineScheduleWeeklyScheduleArgs

    dayOfWeek String
    dayOfWeekValue String
    enabled Boolean
    dayOfWeek string
    dayOfWeekValue string
    enabled boolean
    dayOfWeek String
    dayOfWeekValue String
    enabled Boolean

    NdbDatabaseRestoreTimeMachineScheduleYearlySchedule, NdbDatabaseRestoreTimeMachineScheduleYearlyScheduleArgs

    DayOfMonth int
    Enabled bool
    Month string
    MonthValue string
    DayOfMonth int
    Enabled bool
    Month string
    MonthValue string
    dayOfMonth Integer
    enabled Boolean
    month String
    monthValue String
    dayOfMonth number
    enabled boolean
    month string
    monthValue string
    dayOfMonth Number
    enabled Boolean
    month String
    monthValue String

    NdbDatabaseRestoreTimeMachineSla, NdbDatabaseRestoreTimeMachineSlaArgs

    ContinuousRetention int
    CurrentActiveFrequency string
    DailyRetention int
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    Id string
    MonthlyRetention int
    Name string
    Name of database instance
    OwnerId string
    PitrEnabled bool
    QuarterlyRetention int
    ReferenceCount int
    SystemSla bool
    UniqueName string
    WeeklyRetention int
    YearlyRetention int
    ContinuousRetention int
    CurrentActiveFrequency string
    DailyRetention int
    DateCreated string
    date created for db instance
    DateModified string
    date modified for instance
    Description string
    description of database instance
    Id string
    MonthlyRetention int
    Name string
    Name of database instance
    OwnerId string
    PitrEnabled bool
    QuarterlyRetention int
    ReferenceCount int
    SystemSla bool
    UniqueName string
    WeeklyRetention int
    YearlyRetention int
    continuousRetention Integer
    currentActiveFrequency String
    dailyRetention Integer
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    id String
    monthlyRetention Integer
    name String
    Name of database instance
    ownerId String
    pitrEnabled Boolean
    quarterlyRetention Integer
    referenceCount Integer
    systemSla Boolean
    uniqueName String
    weeklyRetention Integer
    yearlyRetention Integer
    continuousRetention number
    currentActiveFrequency string
    dailyRetention number
    dateCreated string
    date created for db instance
    dateModified string
    date modified for instance
    description string
    description of database instance
    id string
    monthlyRetention number
    name string
    Name of database instance
    ownerId string
    pitrEnabled boolean
    quarterlyRetention number
    referenceCount number
    systemSla boolean
    uniqueName string
    weeklyRetention number
    yearlyRetention number
    continuous_retention int
    current_active_frequency str
    daily_retention int
    date_created str
    date created for db instance
    date_modified str
    date modified for instance
    description str
    description of database instance
    id str
    monthly_retention int
    name str
    Name of database instance
    owner_id str
    pitr_enabled bool
    quarterly_retention int
    reference_count int
    system_sla bool
    unique_name str
    weekly_retention int
    yearly_retention int
    continuousRetention Number
    currentActiveFrequency String
    dailyRetention Number
    dateCreated String
    date created for db instance
    dateModified String
    date modified for instance
    description String
    description of database instance
    id String
    monthlyRetention Number
    name String
    Name of database instance
    ownerId String
    pitrEnabled Boolean
    quarterlyRetention Number
    referenceCount Number
    systemSla Boolean
    uniqueName String
    weeklyRetention Number
    yearlyRetention Number

    NdbDatabaseRestoreTimeMachineTag, NdbDatabaseRestoreTimeMachineTagArgs

    EntityId string
    EntityType string
    TagId string
    TagName string
    Value string
    EntityId string
    EntityType string
    TagId string
    TagName string
    Value string
    entityId String
    entityType String
    tagId String
    tagName String
    value String
    entityId string
    entityType string
    tagId string
    tagName string
    value string
    entityId String
    entityType String
    tagId String
    tagName String
    value String

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg