nutanix.NdbClone
Explore with Pulumi AI
Provides a resource to perform the clone of 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.NdbClone("name", {
computeProfileId: "{{ compute_profile_id }}",
createDbserver: true,
databaseParameterProfileId: "{{ databse_profile_id }}",
networkProfileId: "{{ network_profile_id }}",
nodes: [{
computeProfileId: "{{ compute_profile_id }}",
networkProfileId: "{{ network_profile_id }}",
nxClusterId: "{{ nx_Cluster_id }}",
vmName: "test_vm_clone",
}],
nxClusterId: "{{ nx_Cluster_id }}",
postgresqlInfos: [{
dbPassword: "pass",
vmName: "test_vm_clone",
}],
sshPublicKey: "{{ sshkey }}",
timeMachineName: "test-pg-inst",
timeZone: "Asia/Calcutta",
userPitrTimestamp: "{{ point_in_time }}",
});
import pulumi
import pulumi_nutanix as nutanix
name = nutanix.NdbClone("name",
compute_profile_id="{{ compute_profile_id }}",
create_dbserver=True,
database_parameter_profile_id="{{ databse_profile_id }}",
network_profile_id="{{ network_profile_id }}",
nodes=[{
"compute_profile_id": "{{ compute_profile_id }}",
"network_profile_id": "{{ network_profile_id }}",
"nx_cluster_id": "{{ nx_Cluster_id }}",
"vm_name": "test_vm_clone",
}],
nx_cluster_id="{{ nx_Cluster_id }}",
postgresql_infos=[{
"db_password": "pass",
"vm_name": "test_vm_clone",
}],
ssh_public_key="{{ sshkey }}",
time_machine_name="test-pg-inst",
time_zone="Asia/Calcutta",
user_pitr_timestamp="{{ point_in_time }}")
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.NewNdbClone(ctx, "name", &nutanix.NdbCloneArgs{
ComputeProfileId: pulumi.String("{{ compute_profile_id }}"),
CreateDbserver: pulumi.Bool(true),
DatabaseParameterProfileId: pulumi.String("{{ databse_profile_id }}"),
NetworkProfileId: pulumi.String("{{ network_profile_id }}"),
Nodes: nutanix.NdbCloneNodeArray{
&nutanix.NdbCloneNodeArgs{
ComputeProfileId: pulumi.String("{{ compute_profile_id }}"),
NetworkProfileId: pulumi.String("{{ network_profile_id }}"),
NxClusterId: pulumi.String("{{ nx_Cluster_id }}"),
VmName: pulumi.String("test_vm_clone"),
},
},
NxClusterId: pulumi.String("{{ nx_Cluster_id }}"),
PostgresqlInfos: nutanix.NdbClonePostgresqlInfoArray{
&nutanix.NdbClonePostgresqlInfoArgs{
DbPassword: pulumi.String("pass"),
VmName: pulumi.String("test_vm_clone"),
},
},
SshPublicKey: pulumi.String("{{ sshkey }}"),
TimeMachineName: pulumi.String("test-pg-inst"),
TimeZone: pulumi.String("Asia/Calcutta"),
UserPitrTimestamp: pulumi.String("{{ point_in_time }}"),
})
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.NdbClone("name", new()
{
ComputeProfileId = "{{ compute_profile_id }}",
CreateDbserver = true,
DatabaseParameterProfileId = "{{ databse_profile_id }}",
NetworkProfileId = "{{ network_profile_id }}",
Nodes = new[]
{
new Nutanix.Inputs.NdbCloneNodeArgs
{
ComputeProfileId = "{{ compute_profile_id }}",
NetworkProfileId = "{{ network_profile_id }}",
NxClusterId = "{{ nx_Cluster_id }}",
VmName = "test_vm_clone",
},
},
NxClusterId = "{{ nx_Cluster_id }}",
PostgresqlInfos = new[]
{
new Nutanix.Inputs.NdbClonePostgresqlInfoArgs
{
DbPassword = "pass",
VmName = "test_vm_clone",
},
},
SshPublicKey = "{{ sshkey }}",
TimeMachineName = "test-pg-inst",
TimeZone = "Asia/Calcutta",
UserPitrTimestamp = "{{ point_in_time }}",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NdbClone;
import com.pulumi.nutanix.NdbCloneArgs;
import com.pulumi.nutanix.inputs.NdbCloneNodeArgs;
import com.pulumi.nutanix.inputs.NdbClonePostgresqlInfoArgs;
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 NdbClone("name", NdbCloneArgs.builder()
.computeProfileId("{{ compute_profile_id }}")
.createDbserver(true)
.databaseParameterProfileId("{{ databse_profile_id }}")
.networkProfileId("{{ network_profile_id }}")
.nodes(NdbCloneNodeArgs.builder()
.computeProfileId("{{ compute_profile_id }}")
.networkProfileId("{{ network_profile_id }}")
.nxClusterId("{{ nx_Cluster_id }}")
.vmName("test_vm_clone")
.build())
.nxClusterId("{{ nx_Cluster_id }}")
.postgresqlInfos(NdbClonePostgresqlInfoArgs.builder()
.dbPassword("pass")
.vmName("test_vm_clone")
.build())
.sshPublicKey("{{ sshkey }}")
.timeMachineName("test-pg-inst")
.timeZone("Asia/Calcutta")
.userPitrTimestamp("{{ point_in_time }}")
.build());
}
}
resources:
name:
type: nutanix:NdbClone
properties:
computeProfileId: '{{ compute_profile_id }}'
createDbserver: true
databaseParameterProfileId: '{{ databse_profile_id }}'
networkProfileId: '{{ network_profile_id }}'
nodes:
- computeProfileId: '{{ compute_profile_id }}'
networkProfileId: '{{ network_profile_id }}'
nxClusterId: '{{ nx_Cluster_id }}'
vmName: test_vm_clone
nxClusterId: '{{ nx_Cluster_id }}'
postgresqlInfos:
- dbPassword: pass
vmName: test_vm_clone
sshPublicKey: '{{ sshkey }}'
timeMachineName: test-pg-inst
timeZone: Asia/Calcutta
userPitrTimestamp: '{{ point_in_time }}'
Create NdbClone Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NdbClone(name: string, args: NdbCloneArgs, opts?: CustomResourceOptions);
@overload
def NdbClone(resource_name: str,
args: NdbCloneArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NdbClone(resource_name: str,
opts: Optional[ResourceOptions] = None,
nodes: Optional[Sequence[NdbCloneNodeArgs]] = None,
nx_cluster_id: Optional[str] = None,
network_profile_id: Optional[str] = None,
database_parameter_profile_id: Optional[str] = None,
node_count: Optional[int] = None,
dbserver_cluster_id: Optional[str] = None,
dbserver_id: Optional[str] = None,
dbserver_logical_cluster_id: Optional[str] = None,
delete: Optional[bool] = None,
delete_logical_cluster: Optional[bool] = None,
delete_time_machine: Optional[bool] = None,
description: Optional[str] = None,
forced: Optional[bool] = None,
latest_snapshot: Optional[bool] = None,
lcm_configs: Optional[Sequence[NdbCloneLcmConfigArgs]] = None,
name: Optional[str] = None,
vm_password: Optional[str] = None,
create_dbserver: Optional[bool] = None,
compute_profile_id: Optional[str] = None,
clustered: Optional[bool] = None,
postgresql_infos: Optional[Sequence[NdbClonePostgresqlInfoArgs]] = None,
remove: Optional[bool] = None,
remove_logical_cluster: Optional[bool] = None,
snapshot_id: Optional[str] = None,
soft_remove: Optional[bool] = None,
ssh_public_key: Optional[str] = None,
tags: Optional[Sequence[NdbCloneTagArgs]] = None,
time_machine_id: Optional[str] = None,
time_machine_name: Optional[str] = None,
time_zone: Optional[str] = None,
user_pitr_timestamp: Optional[str] = None,
actionarguments: Optional[Sequence[NdbCloneActionargumentArgs]] = None)
func NewNdbClone(ctx *Context, name string, args NdbCloneArgs, opts ...ResourceOption) (*NdbClone, error)
public NdbClone(string name, NdbCloneArgs args, CustomResourceOptions? opts = null)
public NdbClone(String name, NdbCloneArgs args)
public NdbClone(String name, NdbCloneArgs args, CustomResourceOptions options)
type: nutanix:NdbClone
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 NdbCloneArgs
- 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 NdbCloneArgs
- 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 NdbCloneArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NdbCloneArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NdbCloneArgs
- 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 ndbCloneResource = new Nutanix.NdbClone("ndbCloneResource", new()
{
Nodes = new[]
{
new Nutanix.Inputs.NdbCloneNodeArgs
{
ComputeProfileId = "string",
DbserverId = "string",
NetworkProfileId = "string",
NewDbServerTimeZone = "string",
NxClusterId = "string",
Properties = new[]
{
new Nutanix.Inputs.NdbCloneNodePropertyArgs
{
Name = "string",
Value = "string",
},
},
VmName = "string",
},
},
NxClusterId = "string",
NetworkProfileId = "string",
DatabaseParameterProfileId = "string",
NodeCount = 0,
DbserverClusterId = "string",
DbserverId = "string",
DbserverLogicalClusterId = "string",
Delete = false,
DeleteLogicalCluster = false,
DeleteTimeMachine = false,
Description = "string",
Forced = false,
LatestSnapshot = false,
LcmConfigs = new[]
{
new Nutanix.Inputs.NdbCloneLcmConfigArgs
{
DatabaseLcmConfigs = new[]
{
new Nutanix.Inputs.NdbCloneLcmConfigDatabaseLcmConfigArgs
{
ExpiryDetails = new[]
{
new Nutanix.Inputs.NdbCloneLcmConfigDatabaseLcmConfigExpiryDetailArgs
{
ExpiryDateTimezone = "string",
DeleteDatabase = false,
ExpireInDays = 0,
},
},
RefreshDetails = new[]
{
new Nutanix.Inputs.NdbCloneLcmConfigDatabaseLcmConfigRefreshDetailArgs
{
RefreshDateTimezone = "string",
RefreshInDays = 0,
RefreshTime = "string",
},
},
},
},
},
},
Name = "string",
VmPassword = "string",
CreateDbserver = false,
ComputeProfileId = "string",
Clustered = false,
PostgresqlInfos = new[]
{
new Nutanix.Inputs.NdbClonePostgresqlInfoArgs
{
DbPassword = "string",
VmName = "string",
DbserverDescription = "string",
PostCloneCmd = "string",
PreCloneCmd = "string",
},
},
Remove = false,
RemoveLogicalCluster = false,
SnapshotId = "string",
SoftRemove = false,
SshPublicKey = "string",
Tags = new[]
{
new Nutanix.Inputs.NdbCloneTagArgs
{
EntityId = "string",
EntityType = "string",
TagId = "string",
TagName = "string",
Value = "string",
},
},
TimeMachineId = "string",
TimeMachineName = "string",
TimeZone = "string",
UserPitrTimestamp = "string",
Actionarguments = new[]
{
new Nutanix.Inputs.NdbCloneActionargumentArgs
{
Name = "string",
Value = "string",
},
},
});
example, err := nutanix.NewNdbClone(ctx, "ndbCloneResource", &nutanix.NdbCloneArgs{
Nodes: nutanix.NdbCloneNodeArray{
&nutanix.NdbCloneNodeArgs{
ComputeProfileId: pulumi.String("string"),
DbserverId: pulumi.String("string"),
NetworkProfileId: pulumi.String("string"),
NewDbServerTimeZone: pulumi.String("string"),
NxClusterId: pulumi.String("string"),
Properties: nutanix.NdbCloneNodePropertyArray{
&nutanix.NdbCloneNodePropertyArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
VmName: pulumi.String("string"),
},
},
NxClusterId: pulumi.String("string"),
NetworkProfileId: pulumi.String("string"),
DatabaseParameterProfileId: pulumi.String("string"),
NodeCount: pulumi.Int(0),
DbserverClusterId: pulumi.String("string"),
DbserverId: pulumi.String("string"),
DbserverLogicalClusterId: pulumi.String("string"),
Delete: pulumi.Bool(false),
DeleteLogicalCluster: pulumi.Bool(false),
DeleteTimeMachine: pulumi.Bool(false),
Description: pulumi.String("string"),
Forced: pulumi.Bool(false),
LatestSnapshot: pulumi.Bool(false),
LcmConfigs: nutanix.NdbCloneLcmConfigArray{
&nutanix.NdbCloneLcmConfigArgs{
DatabaseLcmConfigs: nutanix.NdbCloneLcmConfigDatabaseLcmConfigArray{
&nutanix.NdbCloneLcmConfigDatabaseLcmConfigArgs{
ExpiryDetails: nutanix.NdbCloneLcmConfigDatabaseLcmConfigExpiryDetailArray{
&nutanix.NdbCloneLcmConfigDatabaseLcmConfigExpiryDetailArgs{
ExpiryDateTimezone: pulumi.String("string"),
DeleteDatabase: pulumi.Bool(false),
ExpireInDays: pulumi.Int(0),
},
},
RefreshDetails: nutanix.NdbCloneLcmConfigDatabaseLcmConfigRefreshDetailArray{
&nutanix.NdbCloneLcmConfigDatabaseLcmConfigRefreshDetailArgs{
RefreshDateTimezone: pulumi.String("string"),
RefreshInDays: pulumi.Int(0),
RefreshTime: pulumi.String("string"),
},
},
},
},
},
},
Name: pulumi.String("string"),
VmPassword: pulumi.String("string"),
CreateDbserver: pulumi.Bool(false),
ComputeProfileId: pulumi.String("string"),
Clustered: pulumi.Bool(false),
PostgresqlInfos: nutanix.NdbClonePostgresqlInfoArray{
&nutanix.NdbClonePostgresqlInfoArgs{
DbPassword: pulumi.String("string"),
VmName: pulumi.String("string"),
DbserverDescription: pulumi.String("string"),
PostCloneCmd: pulumi.String("string"),
PreCloneCmd: pulumi.String("string"),
},
},
Remove: pulumi.Bool(false),
RemoveLogicalCluster: pulumi.Bool(false),
SnapshotId: pulumi.String("string"),
SoftRemove: pulumi.Bool(false),
SshPublicKey: pulumi.String("string"),
Tags: nutanix.NdbCloneTagArray{
&nutanix.NdbCloneTagArgs{
EntityId: pulumi.String("string"),
EntityType: pulumi.String("string"),
TagId: pulumi.String("string"),
TagName: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TimeMachineId: pulumi.String("string"),
TimeMachineName: pulumi.String("string"),
TimeZone: pulumi.String("string"),
UserPitrTimestamp: pulumi.String("string"),
Actionarguments: nutanix.NdbCloneActionargumentArray{
&nutanix.NdbCloneActionargumentArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var ndbCloneResource = new NdbClone("ndbCloneResource", NdbCloneArgs.builder()
.nodes(NdbCloneNodeArgs.builder()
.computeProfileId("string")
.dbserverId("string")
.networkProfileId("string")
.newDbServerTimeZone("string")
.nxClusterId("string")
.properties(NdbCloneNodePropertyArgs.builder()
.name("string")
.value("string")
.build())
.vmName("string")
.build())
.nxClusterId("string")
.networkProfileId("string")
.databaseParameterProfileId("string")
.nodeCount(0)
.dbserverClusterId("string")
.dbserverId("string")
.dbserverLogicalClusterId("string")
.delete(false)
.deleteLogicalCluster(false)
.deleteTimeMachine(false)
.description("string")
.forced(false)
.latestSnapshot(false)
.lcmConfigs(NdbCloneLcmConfigArgs.builder()
.databaseLcmConfigs(NdbCloneLcmConfigDatabaseLcmConfigArgs.builder()
.expiryDetails(NdbCloneLcmConfigDatabaseLcmConfigExpiryDetailArgs.builder()
.expiryDateTimezone("string")
.deleteDatabase(false)
.expireInDays(0)
.build())
.refreshDetails(NdbCloneLcmConfigDatabaseLcmConfigRefreshDetailArgs.builder()
.refreshDateTimezone("string")
.refreshInDays(0)
.refreshTime("string")
.build())
.build())
.build())
.name("string")
.vmPassword("string")
.createDbserver(false)
.computeProfileId("string")
.clustered(false)
.postgresqlInfos(NdbClonePostgresqlInfoArgs.builder()
.dbPassword("string")
.vmName("string")
.dbserverDescription("string")
.postCloneCmd("string")
.preCloneCmd("string")
.build())
.remove(false)
.removeLogicalCluster(false)
.snapshotId("string")
.softRemove(false)
.sshPublicKey("string")
.tags(NdbCloneTagArgs.builder()
.entityId("string")
.entityType("string")
.tagId("string")
.tagName("string")
.value("string")
.build())
.timeMachineId("string")
.timeMachineName("string")
.timeZone("string")
.userPitrTimestamp("string")
.actionarguments(NdbCloneActionargumentArgs.builder()
.name("string")
.value("string")
.build())
.build());
ndb_clone_resource = nutanix.NdbClone("ndbCloneResource",
nodes=[{
"compute_profile_id": "string",
"dbserver_id": "string",
"network_profile_id": "string",
"new_db_server_time_zone": "string",
"nx_cluster_id": "string",
"properties": [{
"name": "string",
"value": "string",
}],
"vm_name": "string",
}],
nx_cluster_id="string",
network_profile_id="string",
database_parameter_profile_id="string",
node_count=0,
dbserver_cluster_id="string",
dbserver_id="string",
dbserver_logical_cluster_id="string",
delete=False,
delete_logical_cluster=False,
delete_time_machine=False,
description="string",
forced=False,
latest_snapshot=False,
lcm_configs=[{
"database_lcm_configs": [{
"expiry_details": [{
"expiry_date_timezone": "string",
"delete_database": False,
"expire_in_days": 0,
}],
"refresh_details": [{
"refresh_date_timezone": "string",
"refresh_in_days": 0,
"refresh_time": "string",
}],
}],
}],
name="string",
vm_password="string",
create_dbserver=False,
compute_profile_id="string",
clustered=False,
postgresql_infos=[{
"db_password": "string",
"vm_name": "string",
"dbserver_description": "string",
"post_clone_cmd": "string",
"pre_clone_cmd": "string",
}],
remove=False,
remove_logical_cluster=False,
snapshot_id="string",
soft_remove=False,
ssh_public_key="string",
tags=[{
"entity_id": "string",
"entity_type": "string",
"tag_id": "string",
"tag_name": "string",
"value": "string",
}],
time_machine_id="string",
time_machine_name="string",
time_zone="string",
user_pitr_timestamp="string",
actionarguments=[{
"name": "string",
"value": "string",
}])
const ndbCloneResource = new nutanix.NdbClone("ndbCloneResource", {
nodes: [{
computeProfileId: "string",
dbserverId: "string",
networkProfileId: "string",
newDbServerTimeZone: "string",
nxClusterId: "string",
properties: [{
name: "string",
value: "string",
}],
vmName: "string",
}],
nxClusterId: "string",
networkProfileId: "string",
databaseParameterProfileId: "string",
nodeCount: 0,
dbserverClusterId: "string",
dbserverId: "string",
dbserverLogicalClusterId: "string",
"delete": false,
deleteLogicalCluster: false,
deleteTimeMachine: false,
description: "string",
forced: false,
latestSnapshot: false,
lcmConfigs: [{
databaseLcmConfigs: [{
expiryDetails: [{
expiryDateTimezone: "string",
deleteDatabase: false,
expireInDays: 0,
}],
refreshDetails: [{
refreshDateTimezone: "string",
refreshInDays: 0,
refreshTime: "string",
}],
}],
}],
name: "string",
vmPassword: "string",
createDbserver: false,
computeProfileId: "string",
clustered: false,
postgresqlInfos: [{
dbPassword: "string",
vmName: "string",
dbserverDescription: "string",
postCloneCmd: "string",
preCloneCmd: "string",
}],
remove: false,
removeLogicalCluster: false,
snapshotId: "string",
softRemove: false,
sshPublicKey: "string",
tags: [{
entityId: "string",
entityType: "string",
tagId: "string",
tagName: "string",
value: "string",
}],
timeMachineId: "string",
timeMachineName: "string",
timeZone: "string",
userPitrTimestamp: "string",
actionarguments: [{
name: "string",
value: "string",
}],
});
type: nutanix:NdbClone
properties:
actionarguments:
- name: string
value: string
clustered: false
computeProfileId: string
createDbserver: false
databaseParameterProfileId: string
dbserverClusterId: string
dbserverId: string
dbserverLogicalClusterId: string
delete: false
deleteLogicalCluster: false
deleteTimeMachine: false
description: string
forced: false
latestSnapshot: false
lcmConfigs:
- databaseLcmConfigs:
- expiryDetails:
- deleteDatabase: false
expireInDays: 0
expiryDateTimezone: string
refreshDetails:
- refreshDateTimezone: string
refreshInDays: 0
refreshTime: string
name: string
networkProfileId: string
nodeCount: 0
nodes:
- computeProfileId: string
dbserverId: string
networkProfileId: string
newDbServerTimeZone: string
nxClusterId: string
properties:
- name: string
value: string
vmName: string
nxClusterId: string
postgresqlInfos:
- dbPassword: string
dbserverDescription: string
postCloneCmd: string
preCloneCmd: string
vmName: string
remove: false
removeLogicalCluster: false
snapshotId: string
softRemove: false
sshPublicKey: string
tags:
- entityId: string
entityType: string
tagId: string
tagName: string
value: string
timeMachineId: string
timeMachineName: string
timeZone: string
userPitrTimestamp: string
vmPassword: string
NdbClone 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 NdbClone resource accepts the following input properties:
- Nodes
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Node> - Nodes contain info about dbservers vm
- Nx
Cluster stringId - cluster id on where clone will be present
- Actionarguments
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Actionargument> - if any action arguments is required
- Clustered bool
- clone will be clustered or not
- Compute
Profile stringId - specify the compute profile id
- Create
Dbserver bool - create new dbserver
- Database
Parameter stringProfile Id - specify the database parameter profile id
- Dbserver
Cluster stringId - dbserver cluster id
- Dbserver
Id string - Specify if you want to create a database server. This value can be set to true or false as required.
- Dbserver
Logical stringCluster Id - dbserver logical cluster id
- Delete bool
- (Optional) Delete the database clone from the VM. Default value is true
- Delete
Logical boolCluster - (Optional) Delete the logical cluster. Default is true
- Delete
Time boolMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- Description string
- database instance description
- Forced bool
- (Optional) Force delete of instance. Default is false
- Latest
Snapshot bool - latest snapshot
- Lcm
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Lcm Config> - LCM Config contains the expiry details and refresh details
- Name string
- database instance name
- Network
Profile stringId - specify the network profile id
- Node
Count int - Node count. Default is 1 for single instance
- Postgresql
Infos List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Postgresql Info> - postgresql info for the clone
- Remove bool
- (Optional) Unregister the database clone from NDB. Default value is false
- Remove
Logical boolCluster - remove logical cluster. Default value is false
- Snapshot
Id string - snapshot id from where clone is created
- Soft
Remove bool - (Optional) Soft remove. Default will be false
- Ssh
Public stringKey - ssh public key
- List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Time
Machine stringId - time machine id
- Time
Machine stringName - time machine name
- Time
Zone string - timezone
- User
Pitr stringTimestamp - point in time for clone to be created
- Vm
Password string - vm password
- Nodes
[]Ndb
Clone Node Args - Nodes contain info about dbservers vm
- Nx
Cluster stringId - cluster id on where clone will be present
- Actionarguments
[]Ndb
Clone Actionargument Args - if any action arguments is required
- Clustered bool
- clone will be clustered or not
- Compute
Profile stringId - specify the compute profile id
- Create
Dbserver bool - create new dbserver
- Database
Parameter stringProfile Id - specify the database parameter profile id
- Dbserver
Cluster stringId - dbserver cluster id
- Dbserver
Id string - Specify if you want to create a database server. This value can be set to true or false as required.
- Dbserver
Logical stringCluster Id - dbserver logical cluster id
- Delete bool
- (Optional) Delete the database clone from the VM. Default value is true
- Delete
Logical boolCluster - (Optional) Delete the logical cluster. Default is true
- Delete
Time boolMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- Description string
- database instance description
- Forced bool
- (Optional) Force delete of instance. Default is false
- Latest
Snapshot bool - latest snapshot
- Lcm
Configs []NdbClone Lcm Config Args - LCM Config contains the expiry details and refresh details
- Name string
- database instance name
- Network
Profile stringId - specify the network profile id
- Node
Count int - Node count. Default is 1 for single instance
- Postgresql
Infos []NdbClone Postgresql Info Args - postgresql info for the clone
- Remove bool
- (Optional) Unregister the database clone from NDB. Default value is false
- Remove
Logical boolCluster - remove logical cluster. Default value is false
- Snapshot
Id string - snapshot id from where clone is created
- Soft
Remove bool - (Optional) Soft remove. Default will be false
- Ssh
Public stringKey - ssh public key
- []Ndb
Clone 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
- Time
Machine stringName - time machine name
- Time
Zone string - timezone
- User
Pitr stringTimestamp - point in time for clone to be created
- Vm
Password string - vm password
- nodes
List<Ndb
Clone Node> - Nodes contain info about dbservers vm
- nx
Cluster StringId - cluster id on where clone will be present
- actionarguments
List<Ndb
Clone Actionargument> - if any action arguments is required
- clustered Boolean
- clone will be clustered or not
- compute
Profile StringId - specify the compute profile id
- create
Dbserver Boolean - create new dbserver
- database
Parameter StringProfile Id - specify the database parameter profile id
- dbserver
Cluster StringId - dbserver cluster id
- dbserver
Id String - Specify if you want to create a database server. This value can be set to true or false as required.
- dbserver
Logical StringCluster Id - dbserver logical cluster id
- delete Boolean
- (Optional) Delete the database clone from the VM. Default value is true
- delete
Logical BooleanCluster - (Optional) Delete the logical cluster. Default is true
- delete
Time BooleanMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- description String
- database instance description
- forced Boolean
- (Optional) Force delete of instance. Default is false
- latest
Snapshot Boolean - latest snapshot
- lcm
Configs List<NdbClone Lcm Config> - LCM Config contains the expiry details and refresh details
- name String
- database instance name
- network
Profile StringId - specify the network profile id
- node
Count Integer - Node count. Default is 1 for single instance
- postgresql
Infos List<NdbClone Postgresql Info> - postgresql info for the clone
- remove Boolean
- (Optional) Unregister the database clone from NDB. Default value is false
- remove
Logical BooleanCluster - remove logical cluster. Default value is false
- snapshot
Id String - snapshot id from where clone is created
- soft
Remove Boolean - (Optional) Soft remove. Default will be false
- ssh
Public StringKey - ssh public key
- List<Ndb
Clone Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Machine StringId - time machine id
- time
Machine StringName - time machine name
- time
Zone String - timezone
- user
Pitr StringTimestamp - point in time for clone to be created
- vm
Password String - vm password
- nodes
Ndb
Clone Node[] - Nodes contain info about dbservers vm
- nx
Cluster stringId - cluster id on where clone will be present
- actionarguments
Ndb
Clone Actionargument[] - if any action arguments is required
- clustered boolean
- clone will be clustered or not
- compute
Profile stringId - specify the compute profile id
- create
Dbserver boolean - create new dbserver
- database
Parameter stringProfile Id - specify the database parameter profile id
- dbserver
Cluster stringId - dbserver cluster id
- dbserver
Id string - Specify if you want to create a database server. This value can be set to true or false as required.
- dbserver
Logical stringCluster Id - dbserver logical cluster id
- delete boolean
- (Optional) Delete the database clone from the VM. Default value is true
- delete
Logical booleanCluster - (Optional) Delete the logical cluster. Default is true
- delete
Time booleanMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- description string
- database instance description
- forced boolean
- (Optional) Force delete of instance. Default is false
- latest
Snapshot boolean - latest snapshot
- lcm
Configs NdbClone Lcm Config[] - LCM Config contains the expiry details and refresh details
- name string
- database instance name
- network
Profile stringId - specify the network profile id
- node
Count number - Node count. Default is 1 for single instance
- postgresql
Infos NdbClone Postgresql Info[] - postgresql info for the clone
- remove boolean
- (Optional) Unregister the database clone from NDB. Default value is false
- remove
Logical booleanCluster - remove logical cluster. Default value is false
- snapshot
Id string - snapshot id from where clone is created
- soft
Remove boolean - (Optional) Soft remove. Default will be false
- ssh
Public stringKey - ssh public key
- Ndb
Clone Tag[] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Machine stringId - time machine id
- time
Machine stringName - time machine name
- time
Zone string - timezone
- user
Pitr stringTimestamp - point in time for clone to be created
- vm
Password string - vm password
- nodes
Sequence[Ndb
Clone Node Args] - Nodes contain info about dbservers vm
- nx_
cluster_ strid - cluster id on where clone will be present
- actionarguments
Sequence[Ndb
Clone Actionargument Args] - if any action arguments is required
- clustered bool
- clone will be clustered or not
- compute_
profile_ strid - specify the compute profile id
- create_
dbserver bool - create new dbserver
- database_
parameter_ strprofile_ id - specify the database parameter profile id
- dbserver_
cluster_ strid - dbserver cluster id
- dbserver_
id str - Specify if you want to create a database server. This value can be set to true or false as required.
- dbserver_
logical_ strcluster_ id - dbserver logical cluster id
- delete bool
- (Optional) Delete the database clone from the VM. Default value is true
- delete_
logical_ boolcluster - (Optional) Delete the logical cluster. Default is true
- delete_
time_ boolmachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- description str
- database instance description
- forced bool
- (Optional) Force delete of instance. Default is false
- latest_
snapshot bool - latest snapshot
- lcm_
configs Sequence[NdbClone Lcm Config Args] - LCM Config contains the expiry details and refresh details
- name str
- database instance name
- network_
profile_ strid - specify the network profile id
- node_
count int - Node count. Default is 1 for single instance
- postgresql_
infos Sequence[NdbClone Postgresql Info Args] - postgresql info for the clone
- remove bool
- (Optional) Unregister the database clone from NDB. Default value is false
- remove_
logical_ boolcluster - remove logical cluster. Default value is false
- snapshot_
id str - snapshot id from where clone is created
- soft_
remove bool - (Optional) Soft remove. Default will be false
- ssh_
public_ strkey - ssh public key
- Sequence[Ndb
Clone 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
- time_
machine_ strname - time machine name
- time_
zone str - timezone
- user_
pitr_ strtimestamp - point in time for clone to be created
- vm_
password str - vm password
- nodes List<Property Map>
- Nodes contain info about dbservers vm
- nx
Cluster StringId - cluster id on where clone will be present
- actionarguments List<Property Map>
- if any action arguments is required
- clustered Boolean
- clone will be clustered or not
- compute
Profile StringId - specify the compute profile id
- create
Dbserver Boolean - create new dbserver
- database
Parameter StringProfile Id - specify the database parameter profile id
- dbserver
Cluster StringId - dbserver cluster id
- dbserver
Id String - Specify if you want to create a database server. This value can be set to true or false as required.
- dbserver
Logical StringCluster Id - dbserver logical cluster id
- delete Boolean
- (Optional) Delete the database clone from the VM. Default value is true
- delete
Logical BooleanCluster - (Optional) Delete the logical cluster. Default is true
- delete
Time BooleanMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- description String
- database instance description
- forced Boolean
- (Optional) Force delete of instance. Default is false
- latest
Snapshot Boolean - latest snapshot
- lcm
Configs List<Property Map> - LCM Config contains the expiry details and refresh details
- name String
- database instance name
- network
Profile StringId - specify the network profile id
- node
Count Number - Node count. Default is 1 for single instance
- postgresql
Infos List<Property Map> - postgresql info for the clone
- remove Boolean
- (Optional) Unregister the database clone from NDB. Default value is false
- remove
Logical BooleanCluster - remove logical cluster. Default value is false
- snapshot
Id String - snapshot id from where clone is created
- soft
Remove Boolean - (Optional) Soft remove. Default will be false
- ssh
Public StringKey - ssh public key
- 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
- time
Machine StringName - time machine name
- time
Zone String - timezone
- user
Pitr StringTimestamp - point in time for clone to be created
- vm
Password String - vm password
Outputs
All input properties are implicitly available as output properties. Additionally, the NdbClone resource produces the following output properties:
- Clone bool
- cloned or not
- Database
Cluster stringType - database cluster type
- Database
Name string - database name
- Database
Nodes List<PiersKarsenbarg. Nutanix. Outputs. Ndb Clone Database Node> - database nodes associated with database instance
- Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Dbserver
Logical Dictionary<string, string>Cluster - dbserver logical cluster
- Id string
- The provider-assigned unique ID for this managed resource.
- Infos
List<Piers
Karsenbarg. Nutanix. Outputs. Ndb Clone Info> - info of clone
- Linked
Databases List<PiersKarsenbarg. Nutanix. Outputs. Ndb Clone 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.
- Parent
Database stringId - Properties
List<Piers
Karsenbarg. Nutanix. Outputs. Ndb Clone Property> - List of all the properties
- Status string
- status of clone
- Time
Machines List<PiersKarsenbarg. Nutanix. Outputs. Ndb Clone Time Machine> - Type string
- type of clone
- Clone bool
- cloned or not
- Database
Cluster stringType - database cluster type
- Database
Name string - database name
- Database
Nodes []NdbClone Database Node - database nodes associated with database instance
- Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Dbserver
Logical map[string]stringCluster - dbserver logical cluster
- Id string
- The provider-assigned unique ID for this managed resource.
- Infos
[]Ndb
Clone Info - info of clone
- Linked
Databases []NdbClone 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.
- Parent
Database stringId - Properties
[]Ndb
Clone Property - List of all the properties
- Status string
- status of clone
- Time
Machines []NdbClone Time Machine - Type string
- type of clone
- clone_ Boolean
- cloned or not
- database
Cluster StringType - database cluster type
- database
Name String - database name
- database
Nodes List<NdbClone Database Node> - database nodes associated with database instance
- date
Created String - date created for clone
- date
Modified String - last modified date for clone
- dbserver
Logical Map<String,String>Cluster - dbserver logical cluster
- id String
- The provider-assigned unique ID for this managed resource.
- infos
List<Ndb
Clone Info> - info of clone
- linked
Databases List<NdbClone 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.
- parent
Database StringId - properties
List<Ndb
Clone Property> - List of all the properties
- status String
- status of clone
- time
Machines List<NdbClone Time Machine> - type String
- type of clone
- clone boolean
- cloned or not
- database
Cluster stringType - database cluster type
- database
Name string - database name
- database
Nodes NdbClone Database Node[] - database nodes associated with database instance
- date
Created string - date created for clone
- date
Modified string - last modified date for clone
- dbserver
Logical {[key: string]: string}Cluster - dbserver logical cluster
- id string
- The provider-assigned unique ID for this managed resource.
- infos
Ndb
Clone Info[] - info of clone
- linked
Databases NdbClone 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.
- parent
Database stringId - properties
Ndb
Clone Property[] - List of all the properties
- status string
- status of clone
- time
Machines NdbClone Time Machine[] - type string
- type of clone
- clone bool
- cloned or not
- database_
cluster_ strtype - database cluster type
- database_
name str - database name
- database_
nodes Sequence[NdbClone Database Node] - database nodes associated with database instance
- date_
created str - date created for clone
- date_
modified str - last modified date for clone
- dbserver_
logical_ Mapping[str, str]cluster - dbserver logical cluster
- id str
- The provider-assigned unique ID for this managed resource.
- infos
Sequence[Ndb
Clone Info] - info of clone
- linked_
databases Sequence[NdbClone 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.
- parent_
database_ strid - properties
Sequence[Ndb
Clone Property] - List of all the properties
- status str
- status of clone
- time_
machines Sequence[NdbClone Time Machine] - type str
- type of clone
- clone Boolean
- cloned or not
- database
Cluster StringType - database cluster type
- database
Name String - database name
- database
Nodes List<Property Map> - database nodes associated with database instance
- date
Created String - date created for clone
- date
Modified String - last modified date for clone
- dbserver
Logical Map<String>Cluster - dbserver logical cluster
- id String
- The provider-assigned unique ID for this managed resource.
- infos List<Property Map>
- info of clone
- 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.
- parent
Database StringId - properties List<Property Map>
- List of all the properties
- status String
- status of clone
- time
Machines List<Property Map> - type String
- type of clone
Look up Existing NdbClone Resource
Get an existing NdbClone 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?: NdbCloneState, opts?: CustomResourceOptions): NdbClone
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
actionarguments: Optional[Sequence[NdbCloneActionargumentArgs]] = None,
clone: Optional[bool] = None,
clustered: Optional[bool] = None,
compute_profile_id: Optional[str] = None,
create_dbserver: Optional[bool] = None,
database_cluster_type: Optional[str] = None,
database_name: Optional[str] = None,
database_nodes: Optional[Sequence[NdbCloneDatabaseNodeArgs]] = None,
database_parameter_profile_id: Optional[str] = None,
date_created: Optional[str] = None,
date_modified: Optional[str] = None,
dbserver_cluster_id: Optional[str] = None,
dbserver_id: Optional[str] = None,
dbserver_logical_cluster: Optional[Mapping[str, str]] = None,
dbserver_logical_cluster_id: Optional[str] = None,
delete: Optional[bool] = None,
delete_logical_cluster: Optional[bool] = None,
delete_time_machine: Optional[bool] = None,
description: Optional[str] = None,
forced: Optional[bool] = None,
infos: Optional[Sequence[NdbCloneInfoArgs]] = None,
latest_snapshot: Optional[bool] = None,
lcm_configs: Optional[Sequence[NdbCloneLcmConfigArgs]] = None,
linked_databases: Optional[Sequence[NdbCloneLinkedDatabaseArgs]] = None,
metric: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
network_profile_id: Optional[str] = None,
node_count: Optional[int] = None,
nodes: Optional[Sequence[NdbCloneNodeArgs]] = None,
nx_cluster_id: Optional[str] = None,
parent_database_id: Optional[str] = None,
postgresql_infos: Optional[Sequence[NdbClonePostgresqlInfoArgs]] = None,
properties: Optional[Sequence[NdbClonePropertyArgs]] = None,
remove: Optional[bool] = None,
remove_logical_cluster: Optional[bool] = None,
snapshot_id: Optional[str] = None,
soft_remove: Optional[bool] = None,
ssh_public_key: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[NdbCloneTagArgs]] = None,
time_machine_id: Optional[str] = None,
time_machine_name: Optional[str] = None,
time_machines: Optional[Sequence[NdbCloneTimeMachineArgs]] = None,
time_zone: Optional[str] = None,
type: Optional[str] = None,
user_pitr_timestamp: Optional[str] = None,
vm_password: Optional[str] = None) -> NdbClone
func GetNdbClone(ctx *Context, name string, id IDInput, state *NdbCloneState, opts ...ResourceOption) (*NdbClone, error)
public static NdbClone Get(string name, Input<string> id, NdbCloneState? state, CustomResourceOptions? opts = null)
public static NdbClone get(String name, Output<String> id, NdbCloneState 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.
- Actionarguments
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Actionargument> - if any action arguments is required
- Clone bool
- cloned or not
- Clustered bool
- clone will be clustered or not
- Compute
Profile stringId - specify the compute profile id
- Create
Dbserver bool - create new dbserver
- Database
Cluster stringType - database cluster type
- Database
Name string - database name
- Database
Nodes List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Database Node> - database nodes associated with database instance
- Database
Parameter stringProfile Id - specify the database parameter profile id
- Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Dbserver
Cluster stringId - dbserver cluster id
- Dbserver
Id string - Specify if you want to create a database server. This value can be set to true or false as required.
- Dbserver
Logical Dictionary<string, string>Cluster - dbserver logical cluster
- Dbserver
Logical stringCluster Id - dbserver logical cluster id
- Delete bool
- (Optional) Delete the database clone from the VM. Default value is true
- Delete
Logical boolCluster - (Optional) Delete the logical cluster. Default is true
- Delete
Time boolMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- Description string
- database instance description
- Forced bool
- (Optional) Force delete of instance. Default is false
- Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Info> - info of clone
- Latest
Snapshot bool - latest snapshot
- Lcm
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Lcm Config> - LCM Config contains the expiry details and refresh details
- Linked
Databases List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone 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
- database instance name
- Network
Profile stringId - specify the network profile id
- Node
Count int - Node count. Default is 1 for single instance
- Nodes
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Node> - Nodes contain info about dbservers vm
- Nx
Cluster stringId - cluster id on where clone will be present
- Parent
Database stringId - Postgresql
Infos List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Postgresql Info> - postgresql info for the clone
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Property> - List of all the properties
- Remove bool
- (Optional) Unregister the database clone from NDB. Default value is false
- Remove
Logical boolCluster - remove logical cluster. Default value is false
- Snapshot
Id string - snapshot id from where clone is created
- Soft
Remove bool - (Optional) Soft remove. Default will be false
- Ssh
Public stringKey - ssh public key
- Status string
- status of clone
- List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Time
Machine stringId - time machine id
- Time
Machine stringName - time machine name
- Time
Machines List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Time Machine> - Time
Zone string - timezone
- Type string
- type of clone
- User
Pitr stringTimestamp - point in time for clone to be created
- Vm
Password string - vm password
- Actionarguments
[]Ndb
Clone Actionargument Args - if any action arguments is required
- Clone bool
- cloned or not
- Clustered bool
- clone will be clustered or not
- Compute
Profile stringId - specify the compute profile id
- Create
Dbserver bool - create new dbserver
- Database
Cluster stringType - database cluster type
- Database
Name string - database name
- Database
Nodes []NdbClone Database Node Args - database nodes associated with database instance
- Database
Parameter stringProfile Id - specify the database parameter profile id
- Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Dbserver
Cluster stringId - dbserver cluster id
- Dbserver
Id string - Specify if you want to create a database server. This value can be set to true or false as required.
- Dbserver
Logical map[string]stringCluster - dbserver logical cluster
- Dbserver
Logical stringCluster Id - dbserver logical cluster id
- Delete bool
- (Optional) Delete the database clone from the VM. Default value is true
- Delete
Logical boolCluster - (Optional) Delete the logical cluster. Default is true
- Delete
Time boolMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- Description string
- database instance description
- Forced bool
- (Optional) Force delete of instance. Default is false
- Infos
[]Ndb
Clone Info Args - info of clone
- Latest
Snapshot bool - latest snapshot
- Lcm
Configs []NdbClone Lcm Config Args - LCM Config contains the expiry details and refresh details
- Linked
Databases []NdbClone 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
- database instance name
- Network
Profile stringId - specify the network profile id
- Node
Count int - Node count. Default is 1 for single instance
- Nodes
[]Ndb
Clone Node Args - Nodes contain info about dbservers vm
- Nx
Cluster stringId - cluster id on where clone will be present
- Parent
Database stringId - Postgresql
Infos []NdbClone Postgresql Info Args - postgresql info for the clone
- Properties
[]Ndb
Clone Property Args - List of all the properties
- Remove bool
- (Optional) Unregister the database clone from NDB. Default value is false
- Remove
Logical boolCluster - remove logical cluster. Default value is false
- Snapshot
Id string - snapshot id from where clone is created
- Soft
Remove bool - (Optional) Soft remove. Default will be false
- Ssh
Public stringKey - ssh public key
- Status string
- status of clone
- []Ndb
Clone 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
- Time
Machine stringName - time machine name
- Time
Machines []NdbClone Time Machine Args - Time
Zone string - timezone
- Type string
- type of clone
- User
Pitr stringTimestamp - point in time for clone to be created
- Vm
Password string - vm password
- actionarguments
List<Ndb
Clone Actionargument> - if any action arguments is required
- clone_ Boolean
- cloned or not
- clustered Boolean
- clone will be clustered or not
- compute
Profile StringId - specify the compute profile id
- create
Dbserver Boolean - create new dbserver
- database
Cluster StringType - database cluster type
- database
Name String - database name
- database
Nodes List<NdbClone Database Node> - database nodes associated with database instance
- database
Parameter StringProfile Id - specify the database parameter profile id
- date
Created String - date created for clone
- date
Modified String - last modified date for clone
- dbserver
Cluster StringId - dbserver cluster id
- dbserver
Id String - Specify if you want to create a database server. This value can be set to true or false as required.
- dbserver
Logical Map<String,String>Cluster - dbserver logical cluster
- dbserver
Logical StringCluster Id - dbserver logical cluster id
- delete Boolean
- (Optional) Delete the database clone from the VM. Default value is true
- delete
Logical BooleanCluster - (Optional) Delete the logical cluster. Default is true
- delete
Time BooleanMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- description String
- database instance description
- forced Boolean
- (Optional) Force delete of instance. Default is false
- infos
List<Ndb
Clone Info> - info of clone
- latest
Snapshot Boolean - latest snapshot
- lcm
Configs List<NdbClone Lcm Config> - LCM Config contains the expiry details and refresh details
- linked
Databases List<NdbClone 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
- database instance name
- network
Profile StringId - specify the network profile id
- node
Count Integer - Node count. Default is 1 for single instance
- nodes
List<Ndb
Clone Node> - Nodes contain info about dbservers vm
- nx
Cluster StringId - cluster id on where clone will be present
- parent
Database StringId - postgresql
Infos List<NdbClone Postgresql Info> - postgresql info for the clone
- properties
List<Ndb
Clone Property> - List of all the properties
- remove Boolean
- (Optional) Unregister the database clone from NDB. Default value is false
- remove
Logical BooleanCluster - remove logical cluster. Default value is false
- snapshot
Id String - snapshot id from where clone is created
- soft
Remove Boolean - (Optional) Soft remove. Default will be false
- ssh
Public StringKey - ssh public key
- status String
- status of clone
- List<Ndb
Clone Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Machine StringId - time machine id
- time
Machine StringName - time machine name
- time
Machines List<NdbClone Time Machine> - time
Zone String - timezone
- type String
- type of clone
- user
Pitr StringTimestamp - point in time for clone to be created
- vm
Password String - vm password
- actionarguments
Ndb
Clone Actionargument[] - if any action arguments is required
- clone boolean
- cloned or not
- clustered boolean
- clone will be clustered or not
- compute
Profile stringId - specify the compute profile id
- create
Dbserver boolean - create new dbserver
- database
Cluster stringType - database cluster type
- database
Name string - database name
- database
Nodes NdbClone Database Node[] - database nodes associated with database instance
- database
Parameter stringProfile Id - specify the database parameter profile id
- date
Created string - date created for clone
- date
Modified string - last modified date for clone
- dbserver
Cluster stringId - dbserver cluster id
- dbserver
Id string - Specify if you want to create a database server. This value can be set to true or false as required.
- dbserver
Logical {[key: string]: string}Cluster - dbserver logical cluster
- dbserver
Logical stringCluster Id - dbserver logical cluster id
- delete boolean
- (Optional) Delete the database clone from the VM. Default value is true
- delete
Logical booleanCluster - (Optional) Delete the logical cluster. Default is true
- delete
Time booleanMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- description string
- database instance description
- forced boolean
- (Optional) Force delete of instance. Default is false
- infos
Ndb
Clone Info[] - info of clone
- latest
Snapshot boolean - latest snapshot
- lcm
Configs NdbClone Lcm Config[] - LCM Config contains the expiry details and refresh details
- linked
Databases NdbClone 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
- database instance name
- network
Profile stringId - specify the network profile id
- node
Count number - Node count. Default is 1 for single instance
- nodes
Ndb
Clone Node[] - Nodes contain info about dbservers vm
- nx
Cluster stringId - cluster id on where clone will be present
- parent
Database stringId - postgresql
Infos NdbClone Postgresql Info[] - postgresql info for the clone
- properties
Ndb
Clone Property[] - List of all the properties
- remove boolean
- (Optional) Unregister the database clone from NDB. Default value is false
- remove
Logical booleanCluster - remove logical cluster. Default value is false
- snapshot
Id string - snapshot id from where clone is created
- soft
Remove boolean - (Optional) Soft remove. Default will be false
- ssh
Public stringKey - ssh public key
- status string
- status of clone
- Ndb
Clone Tag[] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time
Machine stringId - time machine id
- time
Machine stringName - time machine name
- time
Machines NdbClone Time Machine[] - time
Zone string - timezone
- type string
- type of clone
- user
Pitr stringTimestamp - point in time for clone to be created
- vm
Password string - vm password
- actionarguments
Sequence[Ndb
Clone Actionargument Args] - if any action arguments is required
- clone bool
- cloned or not
- clustered bool
- clone will be clustered or not
- compute_
profile_ strid - specify the compute profile id
- create_
dbserver bool - create new dbserver
- database_
cluster_ strtype - database cluster type
- database_
name str - database name
- database_
nodes Sequence[NdbClone Database Node Args] - database nodes associated with database instance
- database_
parameter_ strprofile_ id - specify the database parameter profile id
- date_
created str - date created for clone
- date_
modified str - last modified date for clone
- dbserver_
cluster_ strid - dbserver cluster id
- dbserver_
id str - Specify if you want to create a database server. This value can be set to true or false as required.
- dbserver_
logical_ Mapping[str, str]cluster - dbserver logical cluster
- dbserver_
logical_ strcluster_ id - dbserver logical cluster id
- delete bool
- (Optional) Delete the database clone from the VM. Default value is true
- delete_
logical_ boolcluster - (Optional) Delete the logical cluster. Default is true
- delete_
time_ boolmachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- description str
- database instance description
- forced bool
- (Optional) Force delete of instance. Default is false
- infos
Sequence[Ndb
Clone Info Args] - info of clone
- latest_
snapshot bool - latest snapshot
- lcm_
configs Sequence[NdbClone Lcm Config Args] - LCM Config contains the expiry details and refresh details
- linked_
databases Sequence[NdbClone 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
- database instance name
- network_
profile_ strid - specify the network profile id
- node_
count int - Node count. Default is 1 for single instance
- nodes
Sequence[Ndb
Clone Node Args] - Nodes contain info about dbservers vm
- nx_
cluster_ strid - cluster id on where clone will be present
- parent_
database_ strid - postgresql_
infos Sequence[NdbClone Postgresql Info Args] - postgresql info for the clone
- properties
Sequence[Ndb
Clone Property Args] - List of all the properties
- remove bool
- (Optional) Unregister the database clone from NDB. Default value is false
- remove_
logical_ boolcluster - remove logical cluster. Default value is false
- snapshot_
id str - snapshot id from where clone is created
- soft_
remove bool - (Optional) Soft remove. Default will be false
- ssh_
public_ strkey - ssh public key
- status str
- status of clone
- Sequence[Ndb
Clone 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
- time_
machine_ strname - time machine name
- time_
machines Sequence[NdbClone Time Machine Args] - time_
zone str - timezone
- type str
- type of clone
- user_
pitr_ strtimestamp - point in time for clone to be created
- vm_
password str - vm password
- actionarguments List<Property Map>
- if any action arguments is required
- clone Boolean
- cloned or not
- clustered Boolean
- clone will be clustered or not
- compute
Profile StringId - specify the compute profile id
- create
Dbserver Boolean - create new dbserver
- database
Cluster StringType - database cluster type
- database
Name String - database name
- database
Nodes List<Property Map> - database nodes associated with database instance
- database
Parameter StringProfile Id - specify the database parameter profile id
- date
Created String - date created for clone
- date
Modified String - last modified date for clone
- dbserver
Cluster StringId - dbserver cluster id
- dbserver
Id String - Specify if you want to create a database server. This value can be set to true or false as required.
- dbserver
Logical Map<String>Cluster - dbserver logical cluster
- dbserver
Logical StringCluster Id - dbserver logical cluster id
- delete Boolean
- (Optional) Delete the database clone from the VM. Default value is true
- delete
Logical BooleanCluster - (Optional) Delete the logical cluster. Default is true
- delete
Time BooleanMachine - (Optional) Delete the database's Time Machine (snapshots/logs) from the NDB. Default value is true
- description String
- database instance description
- forced Boolean
- (Optional) Force delete of instance. Default is false
- infos List<Property Map>
- info of clone
- latest
Snapshot Boolean - latest snapshot
- lcm
Configs List<Property Map> - LCM Config contains the expiry details and refresh details
- 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
- database instance name
- network
Profile StringId - specify the network profile id
- node
Count Number - Node count. Default is 1 for single instance
- nodes List<Property Map>
- Nodes contain info about dbservers vm
- nx
Cluster StringId - cluster id on where clone will be present
- parent
Database StringId - postgresql
Infos List<Property Map> - postgresql info for the clone
- properties List<Property Map>
- List of all the properties
- remove Boolean
- (Optional) Unregister the database clone from NDB. Default value is false
- remove
Logical BooleanCluster - remove logical cluster. Default value is false
- snapshot
Id String - snapshot id from where clone is created
- soft
Remove Boolean - (Optional) Soft remove. Default will be false
- ssh
Public StringKey - ssh public key
- status String
- status of clone
- 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
- time
Machine StringName - time machine name
- time
Machines List<Property Map> - time
Zone String - timezone
- type String
- type of clone
- user
Pitr StringTimestamp - point in time for clone to be created
- vm
Password String - vm password
Supporting Types
NdbCloneActionargument, NdbCloneActionargumentArgs
NdbCloneDatabaseNode, NdbCloneDatabaseNodeArgs
- Access
Level Dictionary<string, string> - Database
Id string - Database
Status string - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Dbserver Dictionary<string, string>
- Dbserver
Id string - Specify if you want to create a database server. This value can be set to true or false as required.
- Description string
- database instance description
- Id string
- Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Database Node Info> - info of clone
- Name string
- database instance name
- Primary bool
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Database Node Property> - List of all the properties
- Protection
Domain stringId - Protection
Domains List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Database Node Protection Domain> - Software
Installation stringId - Status string
- status of clone
- List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone 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
Status string - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Dbserver map[string]string
- Dbserver
Id string - Specify if you want to create a database server. This value can be set to true or false as required.
- Description string
- database instance description
- Id string
- Infos
[]Ndb
Clone Database Node Info - info of clone
- Name string
- database instance name
- Primary bool
- Properties
[]Ndb
Clone Database Node Property - List of all the properties
- Protection
Domain stringId - Protection
Domains []NdbClone Database Node Protection Domain - Software
Installation stringId - Status string
- status of clone
- []Ndb
Clone 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
Status String - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- dbserver Map<String,String>
- dbserver
Id String - Specify if you want to create a database server. This value can be set to true or false as required.
- description String
- database instance description
- id String
- infos
List<Ndb
Clone Database Node Info> - info of clone
- name String
- database instance name
- primary Boolean
- properties
List<Ndb
Clone Database Node Property> - List of all the properties
- protection
Domain StringId - protection
Domains List<NdbClone Database Node Protection Domain> - software
Installation StringId - status String
- status of clone
- List<Ndb
Clone 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
Status string - date
Created string - date created for clone
- date
Modified string - last modified date for clone
- dbserver {[key: string]: string}
- dbserver
Id string - Specify if you want to create a database server. This value can be set to true or false as required.
- description string
- database instance description
- id string
- infos
Ndb
Clone Database Node Info[] - info of clone
- name string
- database instance name
- primary boolean
- properties
Ndb
Clone Database Node Property[] - List of all the properties
- protection
Domain stringId - protection
Domains NdbClone Database Node Protection Domain[] - software
Installation stringId - status string
- status of clone
- Ndb
Clone 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_
status str - date_
created str - date created for clone
- date_
modified str - last modified date for clone
- dbserver Mapping[str, str]
- dbserver_
id str - Specify if you want to create a database server. This value can be set to true or false as required.
- description str
- database instance description
- id str
- infos
Sequence[Ndb
Clone Database Node Info] - info of clone
- name str
- database instance name
- primary bool
- properties
Sequence[Ndb
Clone Database Node Property] - List of all the properties
- protection_
domain_ strid - protection_
domains Sequence[NdbClone Database Node Protection Domain] - software_
installation_ strid - status str
- status of clone
- Sequence[Ndb
Clone 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
Status String - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- dbserver Map<String>
- dbserver
Id String - Specify if you want to create a database server. This value can be set to true or false as required.
- description String
- database instance description
- id String
- infos List<Property Map>
- info of clone
- name String
- database instance name
- primary Boolean
- properties List<Property Map>
- List of all the properties
- protection
Domain StringId - protection
Domains List<Property Map> - software
Installation StringId - status String
- status of clone
- List<Property Map>
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
NdbCloneDatabaseNodeInfo, NdbCloneDatabaseNodeInfoArgs
- Info Dictionary<string, string>
- info of clone
- Secure
Info Dictionary<string, string>
- Info map[string]string
- info of clone
- Secure
Info map[string]string
- info Map<String,String>
- info of clone
- secure
Info Map<String,String>
- info {[key: string]: string}
- info of clone
- secure
Info {[key: string]: string}
- info Mapping[str, str]
- info of clone
- secure_
info Mapping[str, str]
- info Map<String>
- info of clone
- secure
Info Map<String>
NdbCloneDatabaseNodeProperty, NdbCloneDatabaseNodePropertyArgs
- Description string
- database instance description
- Name string
- database instance name
- Ref
Id string - Secure bool
- Value string
- (Required) value for argument
- Description string
- database instance description
- Name string
- database instance name
- Ref
Id string - Secure bool
- Value string
- (Required) value for argument
- description String
- database instance description
- name String
- database instance name
- ref
Id String - secure Boolean
- value String
- (Required) value for argument
- description string
- database instance description
- name string
- database instance name
- ref
Id string - secure boolean
- value string
- (Required) value for argument
- description str
- database instance description
- name str
- database instance name
- ref_
id str - secure bool
- value str
- (Required) value for argument
- description String
- database instance description
- name String
- database instance name
- ref
Id String - secure Boolean
- value String
- (Required) value for argument
NdbCloneDatabaseNodeProtectionDomain, NdbCloneDatabaseNodeProtectionDomainArgs
- Assoc
Entities List<string> - Cloud
Id string - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- Era
Created bool - Id string
- Name string
- database instance name
- Owner
Id string - Primary
Host string - Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Database Node Protection Domain Property> - List of all the properties
- Status string
- status of clone
- Type string
- type of clone
- Assoc
Entities []string - Cloud
Id string - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- Era
Created bool - Id string
- Name string
- database instance name
- Owner
Id string - Primary
Host string - Properties
[]Ndb
Clone Database Node Protection Domain Property - List of all the properties
- Status string
- status of clone
- Type string
- type of clone
- assoc
Entities List<String> - cloud
Id String - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- era
Created Boolean - id String
- name String
- database instance name
- owner
Id String - primary
Host String - properties
List<Ndb
Clone Database Node Protection Domain Property> - List of all the properties
- status String
- status of clone
- type String
- type of clone
- assoc
Entities string[] - cloud
Id string - date
Created string - date created for clone
- date
Modified string - last modified date for clone
- description string
- database instance description
- era
Created boolean - id string
- name string
- database instance name
- owner
Id string - primary
Host string - properties
Ndb
Clone Database Node Protection Domain Property[] - List of all the properties
- status string
- status of clone
- type string
- type of clone
- assoc_
entities Sequence[str] - cloud_
id str - date_
created str - date created for clone
- date_
modified str - last modified date for clone
- description str
- database instance description
- era_
created bool - id str
- name str
- database instance name
- owner_
id str - primary_
host str - properties
Sequence[Ndb
Clone Database Node Protection Domain Property] - List of all the properties
- status str
- status of clone
- type str
- type of clone
- assoc
Entities List<String> - cloud
Id String - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- era
Created Boolean - id String
- name String
- database instance name
- owner
Id String - primary
Host String - properties List<Property Map>
- List of all the properties
- status String
- status of clone
- type String
- type of clone
NdbCloneDatabaseNodeProtectionDomainProperty, NdbCloneDatabaseNodeProtectionDomainPropertyArgs
- Description string
- database instance description
- Name string
- database instance name
- Ref
Id string - Secure bool
- Value string
- (Required) value for argument
- Description string
- database instance description
- Name string
- database instance name
- Ref
Id string - Secure bool
- Value string
- (Required) value for argument
- description String
- database instance description
- name String
- database instance name
- ref
Id String - secure Boolean
- value String
- (Required) value for argument
- description string
- database instance description
- name string
- database instance name
- ref
Id string - secure boolean
- value string
- (Required) value for argument
- description str
- database instance description
- name str
- database instance name
- ref_
id str - secure bool
- value str
- (Required) value for argument
- description String
- database instance description
- name String
- database instance name
- ref
Id String - secure Boolean
- value String
- (Required) value for argument
NdbCloneDatabaseNodeTag, NdbCloneDatabaseNodeTagArgs
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- (Required) value for argument
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- (Required) value for argument
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
- (Required) value for argument
- entity
Id string - entity
Type string - tag
Id string - tag
Name string - value string
- (Required) value for argument
- entity_
id str - entity_
type str - tag_
id str - tag_
name str - value str
- (Required) value for argument
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
- (Required) value for argument
NdbCloneInfo, NdbCloneInfoArgs
- Bpg
Configs List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Info Bpg Config> - Secure
Info Dictionary<string, string>
- Bpg
Configs []NdbClone Info Bpg Config - Secure
Info map[string]string
- bpg
Configs List<NdbClone Info Bpg Config> - secure
Info Map<String,String>
- bpg
Configs NdbClone Info Bpg Config[] - secure
Info {[key: string]: string}
- bpg_
configs Sequence[NdbClone Info Bpg Config] - secure_
info Mapping[str, str]
- bpg
Configs List<Property Map> - secure
Info Map<String>
NdbCloneInfoBpgConfig, NdbCloneInfoBpgConfigArgs
NdbCloneInfoBpgConfigBpgDbParam, NdbCloneInfoBpgConfigBpgDbParamArgs
- 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
NdbCloneInfoBpgConfigStorage, NdbCloneInfoBpgConfigStorageArgs
NdbCloneInfoBpgConfigStorageArchiveStorage, NdbCloneInfoBpgConfigStorageArchiveStorageArgs
- Size double
- Size float64
- size Double
- size number
- size float
- size Number
NdbCloneInfoBpgConfigStorageDataDisk, NdbCloneInfoBpgConfigStorageDataDiskArgs
- Count double
- Count float64
- count Double
- count number
- count float
- count Number
NdbCloneInfoBpgConfigStorageLogDisk, NdbCloneInfoBpgConfigStorageLogDiskArgs
NdbCloneInfoBpgConfigVmProperty, NdbCloneInfoBpgConfigVmPropertyArgs
- 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
NdbCloneLcmConfig, NdbCloneLcmConfigArgs
NdbCloneLcmConfigDatabaseLcmConfig, NdbCloneLcmConfigDatabaseLcmConfigArgs
NdbCloneLcmConfigDatabaseLcmConfigExpiryDetail, NdbCloneLcmConfigDatabaseLcmConfigExpiryDetailArgs
- Expiry
Date stringTimezone - Delete
Database bool - Expire
In intDays
- Expiry
Date stringTimezone - Delete
Database bool - Expire
In intDays
- expiry
Date StringTimezone - delete
Database Boolean - expire
In IntegerDays
- expiry
Date stringTimezone - delete
Database boolean - expire
In numberDays
- expiry_
date_ strtimezone - delete_
database bool - expire_
in_ intdays
- expiry
Date StringTimezone - delete
Database Boolean - expire
In NumberDays
NdbCloneLcmConfigDatabaseLcmConfigRefreshDetail, NdbCloneLcmConfigDatabaseLcmConfigRefreshDetailArgs
- Refresh
Date stringTimezone - Refresh
In intDays - Refresh
Time string
- Refresh
Date stringTimezone - Refresh
In intDays - Refresh
Time string
- refresh
Date StringTimezone - refresh
In IntegerDays - refresh
Time String
- refresh
Date stringTimezone - refresh
In numberDays - refresh
Time string
- refresh_
date_ strtimezone - refresh_
in_ intdays - refresh_
time str
- refresh
Date StringTimezone - refresh
In NumberDays - refresh
Time String
NdbCloneLinkedDatabase, NdbCloneLinkedDatabaseArgs
- Database
Name string - database name
- Database
Status string - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- Id string
- Infos
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Linked Database Info> - info of clone
- 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
- database instance name
- Parent
Database stringId - Parent
Linked stringDatabase Id - Snapshot
Id string - snapshot id from where clone is created
- Status string
- status of clone
- Timezone string
- Database
Name string - database name
- Database
Status string - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- Id string
- Infos
[]Ndb
Clone Linked Database Info - info of clone
- 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
- database instance name
- Parent
Database stringId - Parent
Linked stringDatabase Id - Snapshot
Id string - snapshot id from where clone is created
- Status string
- status of clone
- Timezone string
- database
Name String - database name
- database
Status String - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- id String
- infos
List<Ndb
Clone Linked Database Info> - info of clone
- 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
- database instance name
- parent
Database StringId - parent
Linked StringDatabase Id - snapshot
Id String - snapshot id from where clone is created
- status String
- status of clone
- timezone String
- database
Name string - database name
- database
Status string - date
Created string - date created for clone
- date
Modified string - last modified date for clone
- description string
- database instance description
- id string
- infos
Ndb
Clone Linked Database Info[] - info of clone
- 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
- database instance name
- parent
Database stringId - parent
Linked stringDatabase Id - snapshot
Id string - snapshot id from where clone is created
- status string
- status of clone
- timezone string
- database_
name str - database name
- database_
status str - date_
created str - date created for clone
- date_
modified str - last modified date for clone
- description str
- database instance description
- id str
- infos
Sequence[Ndb
Clone Linked Database Info] - info of clone
- 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
- database instance name
- parent_
database_ strid - parent_
linked_ strdatabase_ id - snapshot_
id str - snapshot id from where clone is created
- status str
- status of clone
- timezone str
- database
Name String - database name
- database
Status String - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- id String
- infos List<Property Map>
- info of clone
- metric Map<String>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name String
- database instance name
- parent
Database StringId - parent
Linked StringDatabase Id - snapshot
Id String - snapshot id from where clone is created
- status String
- status of clone
- timezone String
NdbCloneLinkedDatabaseInfo, NdbCloneLinkedDatabaseInfoArgs
- Info Dictionary<string, string>
- info of clone
- Secure
Info Dictionary<string, string>
- Info map[string]string
- info of clone
- Secure
Info map[string]string
- info Map<String,String>
- info of clone
- secure
Info Map<String,String>
- info {[key: string]: string}
- info of clone
- secure
Info {[key: string]: string}
- info Mapping[str, str]
- info of clone
- secure_
info Mapping[str, str]
- info Map<String>
- info of clone
- secure
Info Map<String>
NdbCloneNode, NdbCloneNodeArgs
- Compute
Profile stringId - specify compute profile id
- Dbserver
Id string - dberver id
- Network
Profile stringId - specify network profile id
- New
Db stringServer Time Zone - dbserver time zone
- Nx
Cluster stringId - cluster id
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Node Property> - properties of vm
- Vm
Name string - name for the database server VM.
- Compute
Profile stringId - specify compute profile id
- Dbserver
Id string - dberver id
- Network
Profile stringId - specify network profile id
- New
Db stringServer Time Zone - dbserver time zone
- Nx
Cluster stringId - cluster id
- Properties
[]Ndb
Clone Node Property - properties of vm
- Vm
Name string - name for the database server VM.
- compute
Profile StringId - specify compute profile id
- dbserver
Id String - dberver id
- network
Profile StringId - specify network profile id
- new
Db StringServer Time Zone - dbserver time zone
- nx
Cluster StringId - cluster id
- properties
List<Ndb
Clone Node Property> - properties of vm
- vm
Name String - name for the database server VM.
- compute
Profile stringId - specify compute profile id
- dbserver
Id string - dberver id
- network
Profile stringId - specify network profile id
- new
Db stringServer Time Zone - dbserver time zone
- nx
Cluster stringId - cluster id
- properties
Ndb
Clone Node Property[] - properties of vm
- vm
Name string - name for the database server VM.
- compute_
profile_ strid - specify compute profile id
- dbserver_
id str - dberver id
- network_
profile_ strid - specify network profile id
- new_
db_ strserver_ time_ zone - dbserver time zone
- nx_
cluster_ strid - cluster id
- properties
Sequence[Ndb
Clone Node Property] - properties of vm
- vm_
name str - name for the database server VM.
- compute
Profile StringId - specify compute profile id
- dbserver
Id String - dberver id
- network
Profile StringId - specify network profile id
- new
Db StringServer Time Zone - dbserver time zone
- nx
Cluster StringId - cluster id
- properties List<Property Map>
- properties of vm
- vm
Name String - name for the database server VM.
NdbCloneNodeProperty, NdbCloneNodePropertyArgs
NdbClonePostgresqlInfo, NdbClonePostgresqlInfoArgs
- Db
Password string - password of the postgres superuser.
- Vm
Name string - name for the database server VM.
- Dbserver
Description string - description for the dbserver.
- Post
Clone stringCmd - OS command that you want to run after the instance is created.
- Pre
Clone stringCmd - OS command that you want to run before the instance is created.
- Db
Password string - password of the postgres superuser.
- Vm
Name string - name for the database server VM.
- Dbserver
Description string - description for the dbserver.
- Post
Clone stringCmd - OS command that you want to run after the instance is created.
- Pre
Clone stringCmd - OS command that you want to run before the instance is created.
- db
Password String - password of the postgres superuser.
- vm
Name String - name for the database server VM.
- dbserver
Description String - description for the dbserver.
- post
Clone StringCmd - OS command that you want to run after the instance is created.
- pre
Clone StringCmd - OS command that you want to run before the instance is created.
- db
Password string - password of the postgres superuser.
- vm
Name string - name for the database server VM.
- dbserver
Description string - description for the dbserver.
- post
Clone stringCmd - OS command that you want to run after the instance is created.
- pre
Clone stringCmd - OS command that you want to run before the instance is created.
- db_
password str - password of the postgres superuser.
- vm_
name str - name for the database server VM.
- dbserver_
description str - description for the dbserver.
- post_
clone_ strcmd - OS command that you want to run after the instance is created.
- pre_
clone_ strcmd - OS command that you want to run before the instance is created.
- db
Password String - password of the postgres superuser.
- vm
Name String - name for the database server VM.
- dbserver
Description String - description for the dbserver.
- post
Clone StringCmd - OS command that you want to run after the instance is created.
- pre
Clone StringCmd - OS command that you want to run before the instance is created.
NdbCloneProperty, NdbClonePropertyArgs
NdbCloneTag, NdbCloneTagArgs
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- (Required) value for argument
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- (Required) value for argument
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
- (Required) value for argument
- entity
Id string - entity
Type string - tag
Id string - tag
Name string - value string
- (Required) value for argument
- entity_
id str - entity_
type str - tag_
id str - tag_
name str - value str
- (Required) value for argument
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
- (Required) value for argument
NdbCloneTimeMachine, NdbCloneTimeMachineArgs
- Access
Level string - Clone bool
- cloned or not
- Clones string
- Clustered bool
- clone will be clustered or not
- Database string
- Database
Id string - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- 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
- database instance name
- Properties
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Property> - List of all the properties
- Schedule
Id string - Schedules
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Schedule> - Scope string
- Sla
Id string - Sla
Update boolIn Progress - Sla
Update stringMetadata - Slas
List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Sla> - Source
Nx List<string>Clusters - Status string
- status of clone
- List<Piers
Karsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Type string
- type of clone
- Access
Level string - Clone bool
- cloned or not
- Clones string
- Clustered bool
- clone will be clustered or not
- Database string
- Database
Id string - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- 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
- database instance name
- Properties
[]Ndb
Clone Time Machine Property - List of all the properties
- Schedule
Id string - Schedules
[]Ndb
Clone Time Machine Schedule - Scope string
- Sla
Id string - Sla
Update boolIn Progress - Sla
Update stringMetadata - Slas
[]Ndb
Clone Time Machine Sla - Source
Nx []stringClusters - Status string
- status of clone
- []Ndb
Clone Time Machine Tag - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Type string
- type of clone
- access
Level String - clone_ Boolean
- cloned or not
- clones String
- clustered Boolean
- clone will be clustered or not
- database String
- database
Id String - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- 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
- database instance name
- properties
List<Ndb
Clone Time Machine Property> - List of all the properties
- schedule
Id String - schedules
List<Ndb
Clone Time Machine Schedule> - scope String
- sla
Id String - sla
Update BooleanIn Progress - sla
Update StringMetadata - slas
List<Ndb
Clone Time Machine Sla> - source
Nx List<String>Clusters - status String
- status of clone
- List<Ndb
Clone Time Machine Tag> - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type String
- type of clone
- access
Level string - clone boolean
- cloned or not
- clones string
- clustered boolean
- clone will be clustered or not
- database string
- database
Id string - date
Created string - date created for clone
- date
Modified string - last modified date for clone
- description string
- database instance description
- 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
- database instance name
- properties
Ndb
Clone Time Machine Property[] - List of all the properties
- schedule
Id string - schedules
Ndb
Clone Time Machine Schedule[] - scope string
- sla
Id string - sla
Update booleanIn Progress - sla
Update stringMetadata - slas
Ndb
Clone Time Machine Sla[] - source
Nx string[]Clusters - status string
- status of clone
- Ndb
Clone Time Machine Tag[] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type string
- type of clone
- access_
level str - clone bool
- cloned or not
- clones str
- clustered bool
- clone will be clustered or not
- database str
- database_
id str - date_
created str - date created for clone
- date_
modified str - last modified date for clone
- description str
- database instance description
- 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
- database instance name
- properties
Sequence[Ndb
Clone Time Machine Property] - List of all the properties
- schedule_
id str - schedules
Sequence[Ndb
Clone Time Machine Schedule] - scope str
- sla_
id str - sla_
update_ boolin_ progress - sla_
update_ strmetadata - slas
Sequence[Ndb
Clone Time Machine Sla] - source_
nx_ Sequence[str]clusters - status str
- status of clone
- Sequence[Ndb
Clone Time Machine Tag] - allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type str
- type of clone
- access
Level String - clone Boolean
- cloned or not
- clones String
- clustered Boolean
- clone will be clustered or not
- database String
- database
Id String - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- 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
- database instance name
- properties List<Property Map>
- List of all the properties
- 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 clone
- List<Property Map>
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type String
- type of clone
NdbCloneTimeMachineProperty, NdbCloneTimeMachinePropertyArgs
- Description string
- database instance description
- Name string
- database instance name
- Ref
Id string - Secure bool
- Value string
- (Required) value for argument
- Description string
- database instance description
- Name string
- database instance name
- Ref
Id string - Secure bool
- Value string
- (Required) value for argument
- description String
- database instance description
- name String
- database instance name
- ref
Id String - secure Boolean
- value String
- (Required) value for argument
- description string
- database instance description
- name string
- database instance name
- ref
Id string - secure boolean
- value string
- (Required) value for argument
- description str
- database instance description
- name str
- database instance name
- ref_
id str - secure bool
- value str
- (Required) value for argument
- description String
- database instance description
- name String
- database instance name
- ref
Id String - secure Boolean
- value String
- (Required) value for argument
NdbCloneTimeMachineSchedule, NdbCloneTimeMachineScheduleArgs
- Continuous
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Schedule Continuous Schedule> - Daily
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Schedule Daily Schedule> - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- Global
Policy bool - Id string
- Monthly
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Schedule Monthly Schedule> - Name string
- database instance name
- Owner
Id string - Quartely
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Schedule Quartely Schedule> - Reference
Count int - Snapshot
Time List<PiersOf Days Karsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Schedule Snapshot Time Of Day> - Start
Time string - System
Policy bool - Time
Zone string - timezone
- Unique
Name string - Weekly
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Schedule Weekly Schedule> - Yearly
Schedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Clone Time Machine Schedule Yearly Schedule>
- Continuous
Schedules []NdbClone Time Machine Schedule Continuous Schedule - Daily
Schedules []NdbClone Time Machine Schedule Daily Schedule - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- Global
Policy bool - Id string
- Monthly
Schedules []NdbClone Time Machine Schedule Monthly Schedule - Name string
- database instance name
- Owner
Id string - Quartely
Schedules []NdbClone Time Machine Schedule Quartely Schedule - Reference
Count int - Snapshot
Time []NdbOf Days Clone Time Machine Schedule Snapshot Time Of Day - Start
Time string - System
Policy bool - Time
Zone string - timezone
- Unique
Name string - Weekly
Schedules []NdbClone Time Machine Schedule Weekly Schedule - Yearly
Schedules []NdbClone Time Machine Schedule Yearly Schedule
- continuous
Schedules List<NdbClone Time Machine Schedule Continuous Schedule> - daily
Schedules List<NdbClone Time Machine Schedule Daily Schedule> - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- global
Policy Boolean - id String
- monthly
Schedules List<NdbClone Time Machine Schedule Monthly Schedule> - name String
- database instance name
- owner
Id String - quartely
Schedules List<NdbClone Time Machine Schedule Quartely Schedule> - reference
Count Integer - snapshot
Time List<NdbOf Days Clone Time Machine Schedule Snapshot Time Of Day> - start
Time String - system
Policy Boolean - time
Zone String - timezone
- unique
Name String - weekly
Schedules List<NdbClone Time Machine Schedule Weekly Schedule> - yearly
Schedules List<NdbClone Time Machine Schedule Yearly Schedule>
- continuous
Schedules NdbClone Time Machine Schedule Continuous Schedule[] - daily
Schedules NdbClone Time Machine Schedule Daily Schedule[] - date
Created string - date created for clone
- date
Modified string - last modified date for clone
- description string
- database instance description
- global
Policy boolean - id string
- monthly
Schedules NdbClone Time Machine Schedule Monthly Schedule[] - name string
- database instance name
- owner
Id string - quartely
Schedules NdbClone Time Machine Schedule Quartely Schedule[] - reference
Count number - snapshot
Time NdbOf Days Clone Time Machine Schedule Snapshot Time Of Day[] - start
Time string - system
Policy boolean - time
Zone string - timezone
- unique
Name string - weekly
Schedules NdbClone Time Machine Schedule Weekly Schedule[] - yearly
Schedules NdbClone Time Machine Schedule Yearly Schedule[]
- continuous_
schedules Sequence[NdbClone Time Machine Schedule Continuous Schedule] - daily_
schedules Sequence[NdbClone Time Machine Schedule Daily Schedule] - date_
created str - date created for clone
- date_
modified str - last modified date for clone
- description str
- database instance description
- global_
policy bool - id str
- monthly_
schedules Sequence[NdbClone Time Machine Schedule Monthly Schedule] - name str
- database instance name
- owner_
id str - quartely_
schedules Sequence[NdbClone Time Machine Schedule Quartely Schedule] - reference_
count int - snapshot_
time_ Sequence[Ndbof_ days Clone Time Machine Schedule Snapshot Time Of Day] - start_
time str - system_
policy bool - time_
zone str - timezone
- unique_
name str - weekly_
schedules Sequence[NdbClone Time Machine Schedule Weekly Schedule] - yearly_
schedules Sequence[NdbClone Time Machine Schedule Yearly Schedule]
- continuous
Schedules List<Property Map> - daily
Schedules List<Property Map> - date
Created String - date created for clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- global
Policy Boolean - id String
- monthly
Schedules List<Property Map> - name String
- database instance name
- 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
- unique
Name String - weekly
Schedules List<Property Map> - yearly
Schedules List<Property Map>
NdbCloneTimeMachineScheduleContinuousSchedule, NdbCloneTimeMachineScheduleContinuousScheduleArgs
- 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
NdbCloneTimeMachineScheduleDailySchedule, NdbCloneTimeMachineScheduleDailyScheduleArgs
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
NdbCloneTimeMachineScheduleMonthlySchedule, NdbCloneTimeMachineScheduleMonthlyScheduleArgs
- 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
NdbCloneTimeMachineScheduleQuartelySchedule, NdbCloneTimeMachineScheduleQuartelyScheduleArgs
- 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
NdbCloneTimeMachineScheduleSnapshotTimeOfDay, NdbCloneTimeMachineScheduleSnapshotTimeOfDayArgs
NdbCloneTimeMachineScheduleWeeklySchedule, NdbCloneTimeMachineScheduleWeeklyScheduleArgs
- 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
NdbCloneTimeMachineScheduleYearlySchedule, NdbCloneTimeMachineScheduleYearlyScheduleArgs
- 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
NdbCloneTimeMachineSla, NdbCloneTimeMachineSlaArgs
- Continuous
Retention int - Current
Active stringFrequency - Daily
Retention int - Date
Created string - date created for clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- Id string
- Monthly
Retention int - Name string
- database instance name
- 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 clone
- Date
Modified string - last modified date for clone
- Description string
- database instance description
- Id string
- Monthly
Retention int - Name string
- database instance name
- 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 clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- id String
- monthly
Retention Integer - name String
- database instance name
- 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 clone
- date
Modified string - last modified date for clone
- description string
- database instance description
- id string
- monthly
Retention number - name string
- database instance name
- 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 clone
- date_
modified str - last modified date for clone
- description str
- database instance description
- id str
- monthly_
retention int - name str
- database instance name
- 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 clone
- date
Modified String - last modified date for clone
- description String
- database instance description
- id String
- monthly
Retention Number - name String
- database instance name
- owner
Id String - pitr
Enabled Boolean - quarterly
Retention Number - reference
Count Number - system
Sla Boolean - unique
Name String - weekly
Retention Number - yearly
Retention Number
NdbCloneTimeMachineTag, NdbCloneTimeMachineTagArgs
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- (Required) value for argument
- Entity
Id string - Entity
Type string - Tag
Id string - Tag
Name string - Value string
- (Required) value for argument
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
- (Required) value for argument
- entity
Id string - entity
Type string - tag
Id string - tag
Name string - value string
- (Required) value for argument
- entity_
id str - entity_
type str - tag_
id str - tag_
name str - value str
- (Required) value for argument
- entity
Id String - entity
Type String - tag
Id String - tag
Name String - value String
- (Required) value for argument
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.