nutanix.NdbDatabaseRestore
Explore with Pulumi AI
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=[{
"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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The NdbDatabaseRestore resource accepts the following input properties:
- Database
Id string - database id
- Latest
Snapshot string - latest snapshot id
- Restore
Version int - helps to restore the database with same config.
- Snapshot
Id string - snapshot id from you want to use for restoring the instance
- List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Time
Zone stringPitr - timezone . Should be used with
user_pitr_timestamp
- User
Pitr stringTimestamp - the time to which you want to restore your instance.
- Database
Id string - database id
- Latest
Snapshot string - latest snapshot id
- Restore
Version int - helps to restore the database with same config.
- Snapshot
Id string - snapshot id from you want to use for restoring the instance
- []Ndb
Database Restore Tag Args - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Time
Zone stringPitr - timezone . Should be used with
user_pitr_timestamp
- User
Pitr stringTimestamp - the time to which you want to restore your instance.
- database
Id String - database id
- latest
Snapshot String - latest snapshot id
- restore
Version Integer - helps to restore the database with same config.
- snapshot
Id String - snapshot id from you want to use for restoring the instance
- List<Ndb
Database Restore Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Zone StringPitr - timezone . Should be used with
user_pitr_timestamp
- user
Pitr StringTimestamp - the time to which you want to restore your instance.
- database
Id string - database id
- latest
Snapshot string - latest snapshot id
- restore
Version number - helps to restore the database with same config.
- snapshot
Id string - snapshot id from you want to use for restoring the instance
- Ndb
Database Restore Tag[] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Zone stringPitr - timezone . Should be used with
user_pitr_timestamp
- user
Pitr stringTimestamp - 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
- Sequence[Ndb
Database Restore Tag Args] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time_
zone_ strpitr - timezone . Should be used with
user_pitr_timestamp
- user_
pitr_ strtimestamp - the time to which you want to restore your instance.
- database
Id String - database id
- latest
Snapshot String - latest snapshot id
- restore
Version Number - helps to restore the database with same config.
- snapshot
Id String - snapshot id from you want to use for restoring the instance
- List<Property Map>
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Zone StringPitr - timezone . Should be used with
user_pitr_timestamp
- user
Pitr StringTimestamp - 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
- Database
Cluster stringType - database cluster type
- Database
Instance stringId - Database
Name string - name of database
- Database
Nodes List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Restore Database Node> - database nodes associated with database instance
- Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Dbserver
Logical Dictionary<string, string>Cluster - dbserver logical cluster
- Dbserver
Logical stringCluster Id - dbserver logical cluster id
- Description string
- description of database instance
- Id string
- The provider-assigned unique ID for this managed resource.
- Infos
List<Piers
Karsenbarg. Nutanix. Outputs. Ndb Database Restore Info> - info of instance
- Lcm
Configs List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Restore Lcm Config> - LCM config of instance
- Linked
Databases List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Restore Linked Database> - 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
- Parent
Database stringId - parent database id
- Properties
List<Piers
Karsenbarg. Nutanix. Outputs. Ndb Database Restore Property> - properties of database created
- Status string
- status of instance
- Time
Machine stringId - time machine id of instance
- Time
Machines List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Restore Time Machine> - Time Machine details of instance
- Time
Zone string - timezone on which instance is created xw
- Type string
- type of database
- Clone bool
- whether instance is cloned or not
- Database
Cluster stringType - database cluster type
- Database
Instance stringId - Database
Name string - name of database
- Database
Nodes []NdbDatabase Restore Database Node - database nodes associated with database instance
- Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Dbserver
Logical map[string]stringCluster - dbserver logical cluster
- Dbserver
Logical stringCluster Id - dbserver logical cluster id
- Description string
- description of database instance
- Id string
- The provider-assigned unique ID for this managed resource.
- Infos
[]Ndb
Database Restore Info - info of instance
- Lcm
Configs []NdbDatabase Restore Lcm Config - LCM config of instance
- Linked
Databases []NdbDatabase Restore Linked Database - 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
- Parent
Database stringId - parent database id
- Properties
[]Ndb
Database Restore Property - properties of database created
- Status string
- status of instance
- Time
Machine stringId - time machine id of instance
- Time
Machines []NdbDatabase Restore Time Machine - Time Machine details of instance
- Time
Zone string - timezone on which instance is created xw
- Type string
- type of database
- clone_ Boolean
- whether instance is cloned or not
- database
Cluster StringType - database cluster type
- database
Instance StringId - database
Name String - name of database
- database
Nodes List<NdbDatabase Restore Database Node> - database nodes associated with database instance
- date
Created String - date created for db instance
- date
Modified String - date modified for instance
- dbserver
Logical Map<String,String>Cluster - dbserver logical cluster
- dbserver
Logical StringCluster Id - dbserver logical cluster id
- description String
- description of database instance
- id String
- The provider-assigned unique ID for this managed resource.
- infos
List<Ndb
Database Restore Info> - info of instance
- lcm
Configs List<NdbDatabase Restore Lcm Config> - LCM config of instance
- linked
Databases List<NdbDatabase Restore Linked Database> - 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
- parent
Database StringId - parent database id
- properties
List<Ndb
Database Restore Property> - properties of database created
- status String
- status of instance
- time
Machine StringId - time machine id of instance
- time
Machines List<NdbDatabase Restore Time Machine> - Time Machine details of instance
- time
Zone String - timezone on which instance is created xw
- type String
- type of database
- clone boolean
- whether instance is cloned or not
- database
Cluster stringType - database cluster type
- database
Instance stringId - database
Name string - name of database
- database
Nodes NdbDatabase Restore Database Node[] - database nodes associated with database instance
- date
Created string - date created for db instance
- date
Modified string - date modified for instance
- dbserver
Logical {[key: string]: string}Cluster - dbserver logical cluster
- dbserver
Logical stringCluster Id - dbserver logical cluster id
- description string
- description of database instance
- id string
- The provider-assigned unique ID for this managed resource.
- infos
Ndb
Database Restore Info[] - info of instance
- lcm
Configs NdbDatabase Restore Lcm Config[] - LCM config of instance
- linked
Databases NdbDatabase Restore Linked Database[] - 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
- parent
Database stringId - parent database id
- properties
Ndb
Database Restore Property[] - properties of database created
- status string
- status of instance
- time
Machine stringId - time machine id of instance
- time
Machines NdbDatabase Restore Time Machine[] - Time Machine details of instance
- time
Zone string - timezone on which instance is created xw
- type string
- type of database
- clone bool
- whether instance is cloned or not
- database_
cluster_ strtype - database cluster type
- database_
instance_ strid - database_
name str - name of database
- database_
nodes Sequence[NdbDatabase Restore Database Node] - database nodes associated with database instance
- date_
created str - date created for db instance
- date_
modified str - date modified for instance
- dbserver_
logical_ Mapping[str, str]cluster - dbserver logical cluster
- dbserver_
logical_ strcluster_ id - dbserver logical cluster id
- description str
- description of database instance
- id str
- The provider-assigned unique ID for this managed resource.
- infos
Sequence[Ndb
Database Restore Info] - info of instance
- lcm_
configs Sequence[NdbDatabase Restore Lcm Config] - LCM config of instance
- linked_
databases Sequence[NdbDatabase Restore Linked Database] - 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_ strid - parent database id
- properties
Sequence[Ndb
Database Restore Property] - properties of database created
- status str
- status of instance
- time_
machine_ strid - time machine id of instance
- time_
machines Sequence[NdbDatabase Restore Time Machine] - 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
- database
Cluster StringType - database cluster type
- database
Instance StringId - database
Name String - name of database
- database
Nodes List<Property Map> - database nodes associated with database instance
- date
Created String - date created for db instance
- date
Modified String - date modified for instance
- dbserver
Logical Map<String>Cluster - dbserver logical cluster
- dbserver
Logical StringCluster Id - 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
- lcm
Configs List<Property Map> - LCM config of instance
- linked
Databases 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
- parent
Database StringId - parent database id
- properties List<Property Map>
- properties of database created
- status String
- status of instance
- time
Machine StringId - time machine id of instance
- time
Machines List<Property Map> - Time Machine details of instance
- time
Zone 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.
- Clone bool
- whether instance is cloned or not
- Database
Cluster stringType - database cluster type
- Database
Id string - database id
- Database
Instance stringId - Database
Name string - name of database
- Database
Nodes List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Database Node> - database nodes associated with database instance
- Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Dbserver
Logical Dictionary<string, string>Cluster - dbserver logical cluster
- Dbserver
Logical stringCluster Id - dbserver logical cluster id
- Description string
- description of database instance
- Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Info> - info of instance
- Latest
Snapshot string - latest snapshot id
- Lcm
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Lcm Config> - LCM config of instance
- Linked
Databases List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Linked Database> - 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
- Parent
Database stringId - parent database id
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Property> - properties of database created
- Restore
Version int - helps to restore the database with same config.
- Snapshot
Id string - snapshot id from you want to use for restoring the instance
- Status string
- status of instance
- List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Time
Machine stringId - time machine id of instance
- Time
Machines List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine> - Time Machine details of instance
- Time
Zone string - timezone on which instance is created xw
- Time
Zone stringPitr - timezone . Should be used with
user_pitr_timestamp
- Type string
- type of database
- User
Pitr stringTimestamp - the time to which you want to restore your instance.
- Clone bool
- whether instance is cloned or not
- Database
Cluster stringType - database cluster type
- Database
Id string - database id
- Database
Instance stringId - Database
Name string - name of database
- Database
Nodes []NdbDatabase Restore Database Node Args - database nodes associated with database instance
- Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Dbserver
Logical map[string]stringCluster - dbserver logical cluster
- Dbserver
Logical stringCluster Id - dbserver logical cluster id
- Description string
- description of database instance
- Infos
[]Ndb
Database Restore Info Args - info of instance
- Latest
Snapshot string - latest snapshot id
- Lcm
Configs []NdbDatabase Restore Lcm Config Args - LCM config of instance
- Linked
Databases []NdbDatabase Restore Linked Database Args - 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
- Parent
Database stringId - parent database id
- Properties
[]Ndb
Database Restore Property Args - properties of database created
- Restore
Version int - helps to restore the database with same config.
- Snapshot
Id string - snapshot id from you want to use for restoring the instance
- Status string
- status of instance
- []Ndb
Database Restore Tag Args - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Time
Machine stringId - time machine id of instance
- Time
Machines []NdbDatabase Restore Time Machine Args - Time Machine details of instance
- Time
Zone string - timezone on which instance is created xw
- Time
Zone stringPitr - timezone . Should be used with
user_pitr_timestamp
- Type string
- type of database
- User
Pitr stringTimestamp - the time to which you want to restore your instance.
- clone_ Boolean
- whether instance is cloned or not
- database
Cluster StringType - database cluster type
- database
Id String - database id
- database
Instance StringId - database
Name String - name of database
- database
Nodes List<NdbDatabase Restore Database Node> - database nodes associated with database instance
- date
Created String - date created for db instance
- date
Modified String - date modified for instance
- dbserver
Logical Map<String,String>Cluster - dbserver logical cluster
- dbserver
Logical StringCluster Id - dbserver logical cluster id
- description String
- description of database instance
- infos
List<Ndb
Database Restore Info> - info of instance
- latest
Snapshot String - latest snapshot id
- lcm
Configs List<NdbDatabase Restore Lcm Config> - LCM config of instance
- linked
Databases List<NdbDatabase Restore Linked Database> - 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
- parent
Database StringId - parent database id
- properties
List<Ndb
Database Restore Property> - properties of database created
- restore
Version Integer - helps to restore the database with same config.
- snapshot
Id String - snapshot id from you want to use for restoring the instance
- status String
- status of instance
- List<Ndb
Database Restore Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Machine StringId - time machine id of instance
- time
Machines List<NdbDatabase Restore Time Machine> - Time Machine details of instance
- time
Zone String - timezone on which instance is created xw
- time
Zone StringPitr - timezone . Should be used with
user_pitr_timestamp
- type String
- type of database
- user
Pitr StringTimestamp - the time to which you want to restore your instance.
- clone boolean
- whether instance is cloned or not
- database
Cluster stringType - database cluster type
- database
Id string - database id
- database
Instance stringId - database
Name string - name of database
- database
Nodes NdbDatabase Restore Database Node[] - database nodes associated with database instance
- date
Created string - date created for db instance
- date
Modified string - date modified for instance
- dbserver
Logical {[key: string]: string}Cluster - dbserver logical cluster
- dbserver
Logical stringCluster Id - dbserver logical cluster id
- description string
- description of database instance
- infos
Ndb
Database Restore Info[] - info of instance
- latest
Snapshot string - latest snapshot id
- lcm
Configs NdbDatabase Restore Lcm Config[] - LCM config of instance
- linked
Databases NdbDatabase Restore Linked Database[] - 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
- parent
Database stringId - parent database id
- properties
Ndb
Database Restore Property[] - properties of database created
- restore
Version number - helps to restore the database with same config.
- snapshot
Id string - snapshot id from you want to use for restoring the instance
- status string
- status of instance
- Ndb
Database Restore Tag[] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Machine stringId - time machine id of instance
- time
Machines NdbDatabase Restore Time Machine[] - Time Machine details of instance
- time
Zone string - timezone on which instance is created xw
- time
Zone stringPitr - timezone . Should be used with
user_pitr_timestamp
- type string
- type of database
- user
Pitr stringTimestamp - the time to which you want to restore your instance.
- clone bool
- whether instance is cloned or not
- database_
cluster_ strtype - database cluster type
- database_
id str - database id
- database_
instance_ strid - database_
name str - name of database
- database_
nodes Sequence[NdbDatabase Restore Database Node Args] - database nodes associated with database instance
- date_
created str - date created for db instance
- date_
modified str - date modified for instance
- dbserver_
logical_ Mapping[str, str]cluster - dbserver logical cluster
- dbserver_
logical_ strcluster_ id - dbserver logical cluster id
- description str
- description of database instance
- infos
Sequence[Ndb
Database Restore Info Args] - info of instance
- latest_
snapshot str - latest snapshot id
- lcm_
configs Sequence[NdbDatabase Restore Lcm Config Args] - LCM config of instance
- linked_
databases Sequence[NdbDatabase Restore Linked Database Args] - 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_ strid - parent database id
- properties
Sequence[Ndb
Database Restore Property Args] - 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
- Sequence[Ndb
Database Restore Tag Args] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time_
machine_ strid - time machine id of instance
- time_
machines Sequence[NdbDatabase Restore Time Machine Args] - Time Machine details of instance
- time_
zone str - timezone on which instance is created xw
- time_
zone_ strpitr - timezone . Should be used with
user_pitr_timestamp
- type str
- type of database
- user_
pitr_ strtimestamp - the time to which you want to restore your instance.
- clone Boolean
- whether instance is cloned or not
- database
Cluster StringType - database cluster type
- database
Id String - database id
- database
Instance StringId - database
Name String - name of database
- database
Nodes List<Property Map> - database nodes associated with database instance
- date
Created String - date created for db instance
- date
Modified String - date modified for instance
- dbserver
Logical Map<String>Cluster - dbserver logical cluster
- dbserver
Logical StringCluster Id - dbserver logical cluster id
- description String
- description of database instance
- infos List<Property Map>
- info of instance
- latest
Snapshot String - latest snapshot id
- lcm
Configs List<Property Map> - LCM config of instance
- linked
Databases 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
- parent
Database StringId - parent database id
- properties List<Property Map>
- properties of database created
- restore
Version Number - helps to restore the database with same config.
- snapshot
Id String - snapshot id from you want to use for restoring the instance
- status String
- status of instance
- List<Property Map>
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Machine StringId - time machine id of instance
- time
Machines List<Property Map> - Time Machine details of instance
- time
Zone String - timezone on which instance is created xw
- time
Zone StringPitr - timezone . Should be used with
user_pitr_timestamp
- type String
- type of database
- user
Pitr StringTimestamp - the time to which you want to restore your instance.
Supporting Types
NdbDatabaseRestoreDatabaseNode, NdbDatabaseRestoreDatabaseNodeArgs
- Access
Level Dictionary<string, string> - Database
Id string - database id
- Database
Status string - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Dbserver Dictionary<string, string>
- Dbserver
Id string - Description string
- description of database instance
- Id string
- Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Database Node Info> - info of instance
- Name string
- Name of database instance
- Primary bool
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Database Node Property> - properties of database created
- Protection
Domain stringId - Protection
Domains List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Database Node Protection Domain> - Software
Installation stringId - Status string
- status of instance
- List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Database Node Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Access
Level map[string]string - Database
Id string - database id
- Database
Status string - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Dbserver map[string]string
- Dbserver
Id string - Description string
- description of database instance
- Id string
- Infos
[]Ndb
Database Restore Database Node Info - info of instance
- Name string
- Name of database instance
- Primary bool
- Properties
[]Ndb
Database Restore Database Node Property - properties of database created
- Protection
Domain stringId - Protection
Domains []NdbDatabase Restore Database Node Protection Domain - Software
Installation stringId - Status string
- status of instance
- []Ndb
Database Restore Database Node Tag - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- access
Level Map<String,String> - database
Id String - database id
- database
Status String - date
Created String - date created for db instance
- date
Modified String - date modified for instance
- dbserver Map<String,String>
- dbserver
Id String - description String
- description of database instance
- id String
- infos
List<Ndb
Database Restore Database Node Info> - info of instance
- name String
- Name of database instance
- primary Boolean
- properties
List<Ndb
Database Restore Database Node Property> - properties of database created
- protection
Domain StringId - protection
Domains List<NdbDatabase Restore Database Node Protection Domain> - software
Installation StringId - status String
- status of instance
- List<Ndb
Database Restore Database Node Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- access
Level {[key: string]: string} - database
Id string - database id
- database
Status string - date
Created string - date created for db instance
- date
Modified string - date modified for instance
- dbserver {[key: string]: string}
- dbserver
Id string - description string
- description of database instance
- id string
- infos
Ndb
Database Restore Database Node Info[] - info of instance
- name string
- Name of database instance
- primary boolean
- properties
Ndb
Database Restore Database Node Property[] - properties of database created
- protection
Domain stringId - protection
Domains NdbDatabase Restore Database Node Protection Domain[] - software
Installation stringId - status string
- status of instance
- Ndb
Database Restore Database Node Tag[] - 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[Ndb
Database Restore Database Node Info] - info of instance
- name str
- Name of database instance
- primary bool
- properties
Sequence[Ndb
Database Restore Database Node Property] - properties of database created
- protection_
domain_ strid - protection_
domains Sequence[NdbDatabase Restore Database Node Protection Domain] - software_
installation_ strid - status str
- status of instance
- Sequence[Ndb
Database Restore Database Node Tag] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- access
Level Map<String> - database
Id String - database id
- database
Status String - date
Created String - date created for db instance
- date
Modified String - date modified for instance
- dbserver Map<String>
- dbserver
Id 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
- protection
Domain StringId - protection
Domains List<Property Map> - software
Installation StringId - status String
- status of instance
- 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
- Secure
Info Dictionary<string, string>
- Info map[string]string
- info of instance
- Secure
Info map[string]string
- info Map<String,String>
- info of instance
- secure
Info Map<String,String>
- info {[key: string]: string}
- info of instance
- secure
Info {[key: string]: string}
- info Mapping[str, str]
- info of instance
- secure_
info Mapping[str, str]
- info Map<String>
- info of instance
- secure
Info Map<String>
NdbDatabaseRestoreDatabaseNodeProperty, NdbDatabaseRestoreDatabaseNodePropertyArgs
- Description string
- description of database instance
- Name string
- Name of database instance
- Ref
Id string - Secure bool
- Value string
- Description string
- description of database instance
- Name string
- Name of database instance
- Ref
Id string - Secure bool
- Value string
- description String
- description of database instance
- name String
- Name of database instance
- ref
Id String - secure Boolean
- value String
- description string
- description of database instance
- name string
- Name of database instance
- ref
Id 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
- ref
Id String - secure Boolean
- value String
NdbDatabaseRestoreDatabaseNodeProtectionDomain, NdbDatabaseRestoreDatabaseNodeProtectionDomainArgs
- Assoc
Entities List<string> - Cloud
Id string - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Era
Created bool - Id string
- Name string
- Name of database instance
- Owner
Id string - Primary
Host string - Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Database Node Protection Domain Property> - properties of database created
- Status string
- status of instance
- Type string
- type of database
- Assoc
Entities []string - Cloud
Id string - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Era
Created bool - Id string
- Name string
- Name of database instance
- Owner
Id string - Primary
Host string - Properties
[]Ndb
Database Restore Database Node Protection Domain Property - properties of database created
- Status string
- status of instance
- Type string
- type of database
- assoc
Entities List<String> - cloud
Id String - date
Created String - date created for db instance
- date
Modified String - date modified for instance
- description String
- description of database instance
- era
Created Boolean - id String
- name String
- Name of database instance
- owner
Id String - primary
Host String - properties
List<Ndb
Database Restore Database Node Protection Domain Property> - properties of database created
- status String
- status of instance
- type String
- type of database
- assoc
Entities string[] - cloud
Id string - date
Created string - date created for db instance
- date
Modified string - date modified for instance
- description string
- description of database instance
- era
Created boolean - id string
- name string
- Name of database instance
- owner
Id string - primary
Host string - properties
Ndb
Database Restore Database Node Protection Domain Property[] - 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[Ndb
Database Restore Database Node Protection Domain Property] - properties of database created
- status str
- status of instance
- type str
- type of database
- assoc
Entities List<String> - cloud
Id String - date
Created String - date created for db instance
- date
Modified String - date modified for instance
- description String
- description of database instance
- era
Created Boolean - id String
- name String
- Name of database instance
- owner
Id String - primary
Host 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
- Ref
Id string - Secure bool
- Value string
- Description string
- description of database instance
- Name string
- Name of database instance
- Ref
Id string - Secure bool
- Value string
- description String
- description of database instance
- name String
- Name of database instance
- ref
Id String - secure Boolean
- value String
- description string
- description of database instance
- name string
- Name of database instance
- ref
Id 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
- ref
Id String - secure Boolean
- value String
NdbDatabaseRestoreDatabaseNodeTag, NdbDatabaseRestoreDatabaseNodeTagArgs
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
- entity
Id string - entity
Type string - tag
Id string - tag
Name string - value string
- entity_
id str - entity_
type str - tag_
id str - tag_
name str - value str
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
NdbDatabaseRestoreInfo, NdbDatabaseRestoreInfoArgs
- Bpg
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Info Bpg Config> - Secure
Info Dictionary<string, string>
- Bpg
Configs []NdbDatabase Restore Info Bpg Config - Secure
Info map[string]string
- bpg
Configs List<NdbDatabase Restore Info Bpg Config> - secure
Info Map<String,String>
- bpg
Configs NdbDatabase Restore Info Bpg Config[] - secure
Info {[key: string]: string}
- bpg_
configs Sequence[NdbDatabase Restore Info Bpg Config] - secure_
info Mapping[str, str]
- bpg
Configs List<Property Map> - secure
Info Map<String>
NdbDatabaseRestoreInfoBpgConfig, NdbDatabaseRestoreInfoBpgConfigArgs
NdbDatabaseRestoreInfoBpgConfigBpgDbParam, NdbDatabaseRestoreInfoBpgConfigBpgDbParamArgs
- Effective
Cache stringSize - Maintenance
Work stringMem - Max
Parallel stringWorkers Per Gather - Max
Worker stringProcesses - string
- Work
Mem string
- Effective
Cache stringSize - Maintenance
Work stringMem - Max
Parallel stringWorkers Per Gather - Max
Worker stringProcesses - string
- Work
Mem string
- effective
Cache StringSize - maintenance
Work StringMem - max
Parallel StringWorkers Per Gather - max
Worker StringProcesses - String
- work
Mem String
- effective
Cache stringSize - maintenance
Work stringMem - max
Parallel stringWorkers Per Gather - max
Worker stringProcesses - string
- work
Mem string
- effective
Cache StringSize - maintenance
Work StringMem - max
Parallel StringWorkers Per Gather - max
Worker StringProcesses - String
- work
Mem String
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
NdbDatabaseRestoreInfoBpgConfigVmProperty, NdbDatabaseRestoreInfoBpgConfigVmPropertyArgs
- Dirty
Background doubleRatio - Dirty
Expire doubleCentisecs - Dirty
Ratio double - Dirty
Writeback doubleCentisecs - Nr
Hugepages double - Overcommit
Memory double - Swappiness double
- Dirty
Background float64Ratio - Dirty
Expire float64Centisecs - Dirty
Ratio float64 - Dirty
Writeback float64Centisecs - Nr
Hugepages float64 - Overcommit
Memory float64 - Swappiness float64
- dirty
Background DoubleRatio - dirty
Expire DoubleCentisecs - dirty
Ratio Double - dirty
Writeback DoubleCentisecs - nr
Hugepages Double - overcommit
Memory Double - swappiness Double
- dirty
Background numberRatio - dirty
Expire numberCentisecs - dirty
Ratio number - dirty
Writeback numberCentisecs - nr
Hugepages number - overcommit
Memory number - swappiness number
- dirty_
background_ floatratio - dirty_
expire_ floatcentisecs - dirty_
ratio float - dirty_
writeback_ floatcentisecs - nr_
hugepages float - overcommit_
memory float - swappiness float
- dirty
Background NumberRatio - dirty
Expire NumberCentisecs - dirty
Ratio Number - dirty
Writeback NumberCentisecs - nr
Hugepages Number - overcommit
Memory Number - swappiness Number
NdbDatabaseRestoreLcmConfig, NdbDatabaseRestoreLcmConfigArgs
- Expiry
Details List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Lcm Config Expiry Detail> - Post
Delete List<PiersCommands Karsenbarg. Nutanix. Inputs. Ndb Database Restore Lcm Config Post Delete Command> - Pre
Delete List<PiersCommands Karsenbarg. Nutanix. Inputs. Ndb Database Restore Lcm Config Pre Delete Command> - Refresh
Details List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Lcm Config Refresh Detail>
NdbDatabaseRestoreLcmConfigExpiryDetail, NdbDatabaseRestoreLcmConfigExpiryDetailArgs
- Delete
Database bool - Delete
Time boolMachine - Delete
Vm bool - Effective
Timestamp string - Expire
In intDays - Expiry
Date stringTimezone - Expiry
Timestamp string - Remind
Before intIn Days - User
Created bool
- Delete
Database bool - Delete
Time boolMachine - Delete
Vm bool - Effective
Timestamp string - Expire
In intDays - Expiry
Date stringTimezone - Expiry
Timestamp string - Remind
Before intIn Days - User
Created bool
- delete
Database Boolean - delete
Time BooleanMachine - delete
Vm Boolean - effective
Timestamp String - expire
In IntegerDays - expiry
Date StringTimezone - expiry
Timestamp String - remind
Before IntegerIn Days - user
Created Boolean
- delete
Database boolean - delete
Time booleanMachine - delete
Vm boolean - effective
Timestamp string - expire
In numberDays - expiry
Date stringTimezone - expiry
Timestamp string - remind
Before numberIn Days - user
Created boolean
- delete_
database bool - delete_
time_ boolmachine - delete_
vm bool - effective_
timestamp str - expire_
in_ intdays - expiry_
date_ strtimezone - expiry_
timestamp str - remind_
before_ intin_ days - user_
created bool
- delete
Database Boolean - delete
Time BooleanMachine - delete
Vm Boolean - effective
Timestamp String - expire
In NumberDays - expiry
Date StringTimezone - expiry
Timestamp String - remind
Before NumberIn Days - user
Created Boolean
NdbDatabaseRestoreLcmConfigPostDeleteCommand, NdbDatabaseRestoreLcmConfigPostDeleteCommandArgs
- Command string
- Command string
- command String
- command string
- command str
- command String
NdbDatabaseRestoreLcmConfigPreDeleteCommand, NdbDatabaseRestoreLcmConfigPreDeleteCommandArgs
- Command string
- Command string
- command String
- command string
- command str
- command String
NdbDatabaseRestoreLcmConfigRefreshDetail, NdbDatabaseRestoreLcmConfigRefreshDetailArgs
- Last
Refresh stringDate - Next
Refresh stringDate - Refresh
Date stringTimezone - Refresh
In intDays - Refresh
In intHours - Refresh
In intMonths - Refresh
Time string
- Last
Refresh stringDate - Next
Refresh stringDate - Refresh
Date stringTimezone - Refresh
In intDays - Refresh
In intHours - Refresh
In intMonths - Refresh
Time string
- last
Refresh StringDate - next
Refresh StringDate - refresh
Date StringTimezone - refresh
In IntegerDays - refresh
In IntegerHours - refresh
In IntegerMonths - refresh
Time String
- last
Refresh stringDate - next
Refresh stringDate - refresh
Date stringTimezone - refresh
In numberDays - refresh
In numberHours - refresh
In numberMonths - refresh
Time string
- last
Refresh StringDate - next
Refresh StringDate - refresh
Date StringTimezone - refresh
In NumberDays - refresh
In NumberHours - refresh
In NumberMonths - refresh
Time String
NdbDatabaseRestoreLinkedDatabase, NdbDatabaseRestoreLinkedDatabaseArgs
- Database
Name string - name of database
- Database
Status string - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Id string
- Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Linked Database Info> - 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
- Parent
Database stringId - parent database id
- Parent
Linked stringDatabase Id - Snapshot
Id string - snapshot id from you want to use for restoring the instance
- Status string
- status of instance
- Timezone string
- Database
Name string - name of database
- Database
Status string - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Id string
- Infos
[]Ndb
Database Restore Linked Database Info - 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
- Parent
Database stringId - parent database id
- Parent
Linked stringDatabase Id - Snapshot
Id string - snapshot id from you want to use for restoring the instance
- Status string
- status of instance
- Timezone string
- database
Name String - name of database
- database
Status String - date
Created String - date created for db instance
- date
Modified String - date modified for instance
- description String
- description of database instance
- id String
- infos
List<Ndb
Database Restore Linked Database Info> - 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
- parent
Database StringId - parent database id
- parent
Linked StringDatabase Id - snapshot
Id String - snapshot id from you want to use for restoring the instance
- status String
- status of instance
- timezone String
- database
Name string - name of database
- database
Status string - date
Created string - date created for db instance
- date
Modified string - date modified for instance
- description string
- description of database instance
- id string
- infos
Ndb
Database Restore Linked Database Info[] - 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
- parent
Database stringId - parent database id
- parent
Linked stringDatabase Id - snapshot
Id 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[Ndb
Database Restore Linked Database Info] - 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_ strid - parent database id
- parent_
linked_ strdatabase_ id - snapshot_
id str - snapshot id from you want to use for restoring the instance
- status str
- status of instance
- timezone str
- database
Name String - name of database
- database
Status String - date
Created String - date created for db instance
- date
Modified 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
- parent
Database StringId - parent database id
- parent
Linked StringDatabase Id - snapshot
Id 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
- Secure
Info Dictionary<string, string>
- Info map[string]string
- info of instance
- Secure
Info map[string]string
- info Map<String,String>
- info of instance
- secure
Info Map<String,String>
- info {[key: string]: string}
- info of instance
- secure
Info {[key: string]: string}
- info Mapping[str, str]
- info of instance
- secure_
info Mapping[str, str]
- info Map<String>
- info of instance
- secure
Info Map<String>
NdbDatabaseRestoreProperty, NdbDatabaseRestorePropertyArgs
NdbDatabaseRestoreTag, NdbDatabaseRestoreTagArgs
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
- entity
Id string - entity
Type string - tag
Id string - tag
Name string - value string
- entity_
id str - entity_
type str - tag_
id str - tag_
name str - value str
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
NdbDatabaseRestoreTimeMachine, NdbDatabaseRestoreTimeMachineArgs
- Access
Level string - Clone bool
- whether instance is cloned or not
- Clones string
- Clustered bool
- Database string
- Database
Id string - database id
- Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Ea
Status 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<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Property> - properties of database created
- Schedule
Id string - Schedules
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Schedule> - Scope string
- Sla
Id string - Sla
Update boolIn Progress - Sla
Update stringMetadata - Slas
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Sla> - Source
Nx List<string>Clusters - Status string
- status of instance
- List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Type string
- type of database
- Access
Level string - Clone bool
- whether instance is cloned or not
- Clones string
- Clustered bool
- Database string
- Database
Id string - database id
- Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Ea
Status 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
[]Ndb
Database Restore Time Machine Property - properties of database created
- Schedule
Id string - Schedules
[]Ndb
Database Restore Time Machine Schedule - Scope string
- Sla
Id string - Sla
Update boolIn Progress - Sla
Update stringMetadata - Slas
[]Ndb
Database Restore Time Machine Sla - Source
Nx []stringClusters - Status string
- status of instance
- []Ndb
Database Restore Time Machine Tag - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Type string
- type of database
- access
Level String - clone_ Boolean
- whether instance is cloned or not
- clones String
- clustered Boolean
- database String
- database
Id String - database id
- date
Created String - date created for db instance
- date
Modified String - date modified for instance
- description String
- description of database instance
- ea
Status 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<Ndb
Database Restore Time Machine Property> - properties of database created
- schedule
Id String - schedules
List<Ndb
Database Restore Time Machine Schedule> - scope String
- sla
Id String - sla
Update BooleanIn Progress - sla
Update StringMetadata - slas
List<Ndb
Database Restore Time Machine Sla> - source
Nx List<String>Clusters - status String
- status of instance
- List<Ndb
Database Restore Time Machine Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type String
- type of database
- access
Level string - clone boolean
- whether instance is cloned or not
- clones string
- clustered boolean
- database string
- database
Id string - database id
- date
Created string - date created for db instance
- date
Modified string - date modified for instance
- description string
- description of database instance
- ea
Status 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
Ndb
Database Restore Time Machine Property[] - properties of database created
- schedule
Id string - schedules
Ndb
Database Restore Time Machine Schedule[] - scope string
- sla
Id string - sla
Update booleanIn Progress - sla
Update stringMetadata - slas
Ndb
Database Restore Time Machine Sla[] - source
Nx string[]Clusters - status string
- status of instance
- Ndb
Database Restore Time Machine Tag[] - 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[Ndb
Database Restore Time Machine Property] - properties of database created
- schedule_
id str - schedules
Sequence[Ndb
Database Restore Time Machine Schedule] - scope str
- sla_
id str - sla_
update_ boolin_ progress - sla_
update_ strmetadata - slas
Sequence[Ndb
Database Restore Time Machine Sla] - source_
nx_ Sequence[str]clusters - status str
- status of instance
- Sequence[Ndb
Database Restore Time Machine Tag] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type str
- type of database
- access
Level String - clone Boolean
- whether instance is cloned or not
- clones String
- clustered Boolean
- database String
- database
Id String - database id
- date
Created String - date created for db instance
- date
Modified String - date modified for instance
- description String
- description of database instance
- ea
Status 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
- schedule
Id String - schedules List<Property Map>
- scope String
- sla
Id String - sla
Update BooleanIn Progress - sla
Update StringMetadata - slas List<Property Map>
- source
Nx List<String>Clusters - status String
- status of instance
- 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
- Ref
Id string - Secure bool
- Value string
- Description string
- description of database instance
- Name string
- Name of database instance
- Ref
Id string - Secure bool
- Value string
- description String
- description of database instance
- name String
- Name of database instance
- ref
Id String - secure Boolean
- value String
- description string
- description of database instance
- name string
- Name of database instance
- ref
Id 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
- ref
Id String - secure Boolean
- value String
NdbDatabaseRestoreTimeMachineSchedule, NdbDatabaseRestoreTimeMachineScheduleArgs
- Continuous
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Schedule Continuous Schedule> - Daily
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Schedule Daily Schedule> - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Global
Policy bool - Id string
- Monthly
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Schedule Monthly Schedule> - Name string
- Name of database instance
- Owner
Id string - Quartely
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Schedule Quartely Schedule> - Reference
Count int - Snapshot
Time List<PiersOf Days Karsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Schedule Snapshot Time Of Day> - Start
Time string - System
Policy bool - Time
Zone string - timezone on which instance is created xw
- Unique
Name string - Weekly
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Schedule Weekly Schedule> - Yearly
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Restore Time Machine Schedule Yearly Schedule>
- Continuous
Schedules []NdbDatabase Restore Time Machine Schedule Continuous Schedule - Daily
Schedules []NdbDatabase Restore Time Machine Schedule Daily Schedule - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Global
Policy bool - Id string
- Monthly
Schedules []NdbDatabase Restore Time Machine Schedule Monthly Schedule - Name string
- Name of database instance
- Owner
Id string - Quartely
Schedules []NdbDatabase Restore Time Machine Schedule Quartely Schedule - Reference
Count int - Snapshot
Time []NdbOf Days Database Restore Time Machine Schedule Snapshot Time Of Day - Start
Time string - System
Policy bool - Time
Zone string - timezone on which instance is created xw
- Unique
Name string - Weekly
Schedules []NdbDatabase Restore Time Machine Schedule Weekly Schedule - Yearly
Schedules []NdbDatabase Restore Time Machine Schedule Yearly Schedule
- continuous
Schedules List<NdbDatabase Restore Time Machine Schedule Continuous Schedule> - daily
Schedules List<NdbDatabase Restore Time Machine Schedule Daily Schedule> - date
Created String - date created for db instance
- date
Modified String - date modified for instance
- description String
- description of database instance
- global
Policy Boolean - id String
- monthly
Schedules List<NdbDatabase Restore Time Machine Schedule Monthly Schedule> - name String
- Name of database instance
- owner
Id String - quartely
Schedules List<NdbDatabase Restore Time Machine Schedule Quartely Schedule> - reference
Count Integer - snapshot
Time List<NdbOf Days Database Restore Time Machine Schedule Snapshot Time Of Day> - start
Time String - system
Policy Boolean - time
Zone String - timezone on which instance is created xw
- unique
Name String - weekly
Schedules List<NdbDatabase Restore Time Machine Schedule Weekly Schedule> - yearly
Schedules List<NdbDatabase Restore Time Machine Schedule Yearly Schedule>
- continuous
Schedules NdbDatabase Restore Time Machine Schedule Continuous Schedule[] - daily
Schedules NdbDatabase Restore Time Machine Schedule Daily Schedule[] - date
Created string - date created for db instance
- date
Modified string - date modified for instance
- description string
- description of database instance
- global
Policy boolean - id string
- monthly
Schedules NdbDatabase Restore Time Machine Schedule Monthly Schedule[] - name string
- Name of database instance
- owner
Id string - quartely
Schedules NdbDatabase Restore Time Machine Schedule Quartely Schedule[] - reference
Count number - snapshot
Time NdbOf Days Database Restore Time Machine Schedule Snapshot Time Of Day[] - start
Time string - system
Policy boolean - time
Zone string - timezone on which instance is created xw
- unique
Name string - weekly
Schedules NdbDatabase Restore Time Machine Schedule Weekly Schedule[] - yearly
Schedules NdbDatabase Restore Time Machine Schedule Yearly Schedule[]
- continuous_
schedules Sequence[NdbDatabase Restore Time Machine Schedule Continuous Schedule] - daily_
schedules Sequence[NdbDatabase Restore Time Machine Schedule Daily Schedule] - 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[NdbDatabase Restore Time Machine Schedule Monthly Schedule] - name str
- Name of database instance
- owner_
id str - quartely_
schedules Sequence[NdbDatabase Restore Time Machine Schedule Quartely Schedule] - reference_
count int - snapshot_
time_ Sequence[Ndbof_ days Database Restore Time Machine Schedule Snapshot Time Of Day] - start_
time str - system_
policy bool - time_
zone str - timezone on which instance is created xw
- unique_
name str - weekly_
schedules Sequence[NdbDatabase Restore Time Machine Schedule Weekly Schedule] - yearly_
schedules Sequence[NdbDatabase Restore Time Machine Schedule Yearly Schedule]
- continuous
Schedules List<Property Map> - daily
Schedules List<Property Map> - date
Created String - date created for db instance
- date
Modified String - date modified for instance
- description String
- description of database instance
- global
Policy Boolean - id String
- monthly
Schedules List<Property Map> - name String
- Name of database instance
- owner
Id String - quartely
Schedules List<Property Map> - reference
Count Number - snapshot
Time List<Property Map>Of Days - start
Time String - system
Policy Boolean - time
Zone String - timezone on which instance is created xw
- unique
Name String - weekly
Schedules List<Property Map> - yearly
Schedules List<Property Map>
NdbDatabaseRestoreTimeMachineScheduleContinuousSchedule, NdbDatabaseRestoreTimeMachineScheduleContinuousScheduleArgs
- Enabled bool
- Log
Backup intInterval - Snapshots
Per intDay
- Enabled bool
- Log
Backup intInterval - Snapshots
Per intDay
- enabled Boolean
- log
Backup IntegerInterval - snapshots
Per IntegerDay
- enabled boolean
- log
Backup numberInterval - snapshots
Per numberDay
- enabled bool
- log_
backup_ intinterval - snapshots_
per_ intday
- enabled Boolean
- log
Backup NumberInterval - snapshots
Per NumberDay
NdbDatabaseRestoreTimeMachineScheduleDailySchedule, NdbDatabaseRestoreTimeMachineScheduleDailyScheduleArgs
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
NdbDatabaseRestoreTimeMachineScheduleMonthlySchedule, NdbDatabaseRestoreTimeMachineScheduleMonthlyScheduleArgs
- Day
Of intMonth - Enabled bool
- Day
Of intMonth - Enabled bool
- day
Of IntegerMonth - enabled Boolean
- day
Of numberMonth - enabled boolean
- day_
of_ intmonth - enabled bool
- day
Of NumberMonth - enabled Boolean
NdbDatabaseRestoreTimeMachineScheduleQuartelySchedule, NdbDatabaseRestoreTimeMachineScheduleQuartelyScheduleArgs
- Day
Of intMonth - Enabled bool
- Start
Month string - Start
Month stringValue
- Day
Of intMonth - Enabled bool
- Start
Month string - Start
Month stringValue
- day
Of IntegerMonth - enabled Boolean
- start
Month String - start
Month StringValue
- day
Of numberMonth - enabled boolean
- start
Month string - start
Month stringValue
- day_
of_ intmonth - enabled bool
- start_
month str - start_
month_ strvalue
- day
Of NumberMonth - enabled Boolean
- start
Month String - start
Month StringValue
NdbDatabaseRestoreTimeMachineScheduleSnapshotTimeOfDay, NdbDatabaseRestoreTimeMachineScheduleSnapshotTimeOfDayArgs
NdbDatabaseRestoreTimeMachineScheduleWeeklySchedule, NdbDatabaseRestoreTimeMachineScheduleWeeklyScheduleArgs
- Day
Of stringWeek - Day
Of stringWeek Value - Enabled bool
- Day
Of stringWeek - Day
Of stringWeek Value - Enabled bool
- day
Of StringWeek - day
Of StringWeek Value - enabled Boolean
- day
Of stringWeek - day
Of stringWeek Value - enabled boolean
- day_
of_ strweek - day_
of_ strweek_ value - enabled bool
- day
Of StringWeek - day
Of StringWeek Value - enabled Boolean
NdbDatabaseRestoreTimeMachineScheduleYearlySchedule, NdbDatabaseRestoreTimeMachineScheduleYearlyScheduleArgs
- Day
Of intMonth - Enabled bool
- Month string
- Month
Value string
- Day
Of intMonth - Enabled bool
- Month string
- Month
Value string
- day
Of IntegerMonth - enabled Boolean
- month String
- month
Value String
- day
Of numberMonth - enabled boolean
- month string
- month
Value string
- day_
of_ intmonth - enabled bool
- month str
- month_
value str
- day
Of NumberMonth - enabled Boolean
- month String
- month
Value String
NdbDatabaseRestoreTimeMachineSla, NdbDatabaseRestoreTimeMachineSlaArgs
- Continuous
Retention int - Current
Active stringFrequency - Daily
Retention int - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Id string
- Monthly
Retention int - Name string
- Name of database instance
- Owner
Id string - Pitr
Enabled bool - Quarterly
Retention int - Reference
Count int - System
Sla bool - Unique
Name string - Weekly
Retention int - Yearly
Retention int
- Continuous
Retention int - Current
Active stringFrequency - Daily
Retention int - Date
Created string - date created for db instance
- Date
Modified string - date modified for instance
- Description string
- description of database instance
- Id string
- Monthly
Retention int - Name string
- Name of database instance
- Owner
Id string - Pitr
Enabled bool - Quarterly
Retention int - Reference
Count int - System
Sla bool - Unique
Name string - Weekly
Retention int - Yearly
Retention int
- continuous
Retention Integer - current
Active StringFrequency - daily
Retention Integer - date
Created String - date created for db instance
- date
Modified String - date modified for instance
- description String
- description of database instance
- id String
- monthly
Retention Integer - name String
- Name of database instance
- owner
Id String - pitr
Enabled Boolean - quarterly
Retention Integer - reference
Count Integer - system
Sla Boolean - unique
Name String - weekly
Retention Integer - yearly
Retention Integer
- continuous
Retention number - current
Active stringFrequency - daily
Retention number - date
Created string - date created for db instance
- date
Modified string - date modified for instance
- description string
- description of database instance
- id string
- monthly
Retention number - name string
- Name of database instance
- owner
Id string - pitr
Enabled boolean - quarterly
Retention number - reference
Count number - system
Sla boolean - unique
Name string - weekly
Retention number - yearly
Retention number
- continuous_
retention int - current_
active_ strfrequency - 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
- continuous
Retention Number - current
Active StringFrequency - daily
Retention Number - date
Created String - date created for db instance
- date
Modified String - date modified for instance
- description String
- description of database instance
- id String
- monthly
Retention Number - name String
- Name of database instance
- owner
Id String - pitr
Enabled Boolean - quarterly
Retention Number - reference
Count Number - system
Sla Boolean - unique
Name String - weekly
Retention Number - yearly
Retention Number
NdbDatabaseRestoreTimeMachineTag, NdbDatabaseRestoreTimeMachineTagArgs
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
- entity
Id string - entity
Type string - tag
Id string - tag
Name string - value string
- entity_
id str - entity_
type str - tag_
id str - tag_
name str - value str
- entity
Id String - entity
Type String - tag
Id String - tag
Name 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.