nutanix.NdbDatabaseScale
Explore with Pulumi AI
Provides a resource to scale the database instance based on the input parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const scale = new nutanix.NdbDatabaseScale("scale", {
    applicationType: "{{ Application Type }}",
    dataStorageSize: 1,
    databaseUuid: "{{ database_id }}",
});
import pulumi
import pulumi_nutanix as nutanix
scale = nutanix.NdbDatabaseScale("scale",
    application_type="{{ Application Type }}",
    data_storage_size=1,
    database_uuid="{{ database_id }}")
package main
import (
	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := nutanix.NewNdbDatabaseScale(ctx, "scale", &nutanix.NdbDatabaseScaleArgs{
			ApplicationType: pulumi.String("{{ Application Type }}"),
			DataStorageSize: pulumi.Int(1),
			DatabaseUuid:    pulumi.String("{{ database_id }}"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() => 
{
    var scale = new Nutanix.NdbDatabaseScale("scale", new()
    {
        ApplicationType = "{{ Application Type }}",
        DataStorageSize = 1,
        DatabaseUuid = "{{ database_id }}",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NdbDatabaseScale;
import com.pulumi.nutanix.NdbDatabaseScaleArgs;
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 scale = new NdbDatabaseScale("scale", NdbDatabaseScaleArgs.builder()
            .applicationType("{{ Application Type }}")
            .dataStorageSize(1)
            .databaseUuid("{{ database_id }}")
            .build());
    }
}
resources:
  scale:
    type: nutanix:NdbDatabaseScale
    properties:
      applicationType: '{{ Application Type }}'
      dataStorageSize: 1
      databaseUuid: '{{ database_id }}'
Create NdbDatabaseScale Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NdbDatabaseScale(name: string, args: NdbDatabaseScaleArgs, opts?: CustomResourceOptions);@overload
def NdbDatabaseScale(resource_name: str,
                     args: NdbDatabaseScaleArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def NdbDatabaseScale(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     application_type: Optional[str] = None,
                     data_storage_size: Optional[int] = None,
                     database_uuid: Optional[str] = None,
                     post_script_cmd: Optional[str] = None,
                     pre_script_cmd: Optional[str] = None,
                     scale_count: Optional[int] = None,
                     tags: Optional[Sequence[NdbDatabaseScaleTagArgs]] = None)func NewNdbDatabaseScale(ctx *Context, name string, args NdbDatabaseScaleArgs, opts ...ResourceOption) (*NdbDatabaseScale, error)public NdbDatabaseScale(string name, NdbDatabaseScaleArgs args, CustomResourceOptions? opts = null)
public NdbDatabaseScale(String name, NdbDatabaseScaleArgs args)
public NdbDatabaseScale(String name, NdbDatabaseScaleArgs args, CustomResourceOptions options)
type: nutanix:NdbDatabaseScale
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 NdbDatabaseScaleArgs
- 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 NdbDatabaseScaleArgs
- 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 NdbDatabaseScaleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NdbDatabaseScaleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NdbDatabaseScaleArgs
- 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 ndbDatabaseScaleResource = new Nutanix.NdbDatabaseScale("ndbDatabaseScaleResource", new()
{
    ApplicationType = "string",
    DataStorageSize = 0,
    DatabaseUuid = "string",
    PostScriptCmd = "string",
    PreScriptCmd = "string",
    ScaleCount = 0,
    Tags = new[]
    {
        new Nutanix.Inputs.NdbDatabaseScaleTagArgs
        {
            EntityId = "string",
            EntityType = "string",
            TagId = "string",
            TagName = "string",
            Value = "string",
        },
    },
});
example, err := nutanix.NewNdbDatabaseScale(ctx, "ndbDatabaseScaleResource", &nutanix.NdbDatabaseScaleArgs{
	ApplicationType: pulumi.String("string"),
	DataStorageSize: pulumi.Int(0),
	DatabaseUuid:    pulumi.String("string"),
	PostScriptCmd:   pulumi.String("string"),
	PreScriptCmd:    pulumi.String("string"),
	ScaleCount:      pulumi.Int(0),
	Tags: nutanix.NdbDatabaseScaleTagArray{
		&nutanix.NdbDatabaseScaleTagArgs{
			EntityId:   pulumi.String("string"),
			EntityType: pulumi.String("string"),
			TagId:      pulumi.String("string"),
			TagName:    pulumi.String("string"),
			Value:      pulumi.String("string"),
		},
	},
})
var ndbDatabaseScaleResource = new NdbDatabaseScale("ndbDatabaseScaleResource", NdbDatabaseScaleArgs.builder()
    .applicationType("string")
    .dataStorageSize(0)
    .databaseUuid("string")
    .postScriptCmd("string")
    .preScriptCmd("string")
    .scaleCount(0)
    .tags(NdbDatabaseScaleTagArgs.builder()
        .entityId("string")
        .entityType("string")
        .tagId("string")
        .tagName("string")
        .value("string")
        .build())
    .build());
ndb_database_scale_resource = nutanix.NdbDatabaseScale("ndbDatabaseScaleResource",
    application_type="string",
    data_storage_size=0,
    database_uuid="string",
    post_script_cmd="string",
    pre_script_cmd="string",
    scale_count=0,
    tags=[{
        "entity_id": "string",
        "entity_type": "string",
        "tag_id": "string",
        "tag_name": "string",
        "value": "string",
    }])
const ndbDatabaseScaleResource = new nutanix.NdbDatabaseScale("ndbDatabaseScaleResource", {
    applicationType: "string",
    dataStorageSize: 0,
    databaseUuid: "string",
    postScriptCmd: "string",
    preScriptCmd: "string",
    scaleCount: 0,
    tags: [{
        entityId: "string",
        entityType: "string",
        tagId: "string",
        tagName: "string",
        value: "string",
    }],
});
type: nutanix:NdbDatabaseScale
properties:
    applicationType: string
    dataStorageSize: 0
    databaseUuid: string
    postScriptCmd: string
    preScriptCmd: string
    scaleCount: 0
    tags:
        - entityId: string
          entityType: string
          tagId: string
          tagName: string
          value: string
NdbDatabaseScale 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 NdbDatabaseScale resource accepts the following input properties:
- ApplicationType string
- type of instance. eg: postgres_database
- DataStorage intSize 
- data area (in GiB) to be added to the existing database.
- DatabaseUuid string
- Database id
- PostScript stringCmd 
- post script command
- PreScript stringCmd 
- pre script command
- ScaleCount int
- scale count helps to scale the same instance with same config
- 
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Tag> 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- ApplicationType string
- type of instance. eg: postgres_database
- DataStorage intSize 
- data area (in GiB) to be added to the existing database.
- DatabaseUuid string
- Database id
- PostScript stringCmd 
- post script command
- PreScript stringCmd 
- pre script command
- ScaleCount int
- scale count helps to scale the same instance with same config
- 
[]NdbDatabase Scale Tag Args 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- applicationType String
- type of instance. eg: postgres_database
- dataStorage IntegerSize 
- data area (in GiB) to be added to the existing database.
- databaseUuid String
- Database id
- postScript StringCmd 
- post script command
- preScript StringCmd 
- pre script command
- scaleCount Integer
- scale count helps to scale the same instance with same config
- 
List<NdbDatabase Scale Tag> 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- applicationType string
- type of instance. eg: postgres_database
- dataStorage numberSize 
- data area (in GiB) to be added to the existing database.
- databaseUuid string
- Database id
- postScript stringCmd 
- post script command
- preScript stringCmd 
- pre script command
- scaleCount number
- scale count helps to scale the same instance with same config
- 
NdbDatabase Scale Tag[] 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- application_type str
- type of instance. eg: postgres_database
- data_storage_ intsize 
- data area (in GiB) to be added to the existing database.
- database_uuid str
- Database id
- post_script_ strcmd 
- post script command
- pre_script_ strcmd 
- pre script command
- scale_count int
- scale count helps to scale the same instance with same config
- 
Sequence[NdbDatabase Scale Tag Args] 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- applicationType String
- type of instance. eg: postgres_database
- dataStorage NumberSize 
- data area (in GiB) to be added to the existing database.
- databaseUuid String
- Database id
- postScript StringCmd 
- post script command
- preScript StringCmd 
- pre script command
- scaleCount Number
- scale count helps to scale the same instance with same config
- List<Property Map>
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the NdbDatabaseScale resource produces the following output properties:
- Clone bool
- whether instance is cloned or not
- DatabaseCluster stringType 
- database cluster type
- DatabaseInstance stringId 
- DatabaseName string
- name of database
- DatabaseNodes List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Scale Database Node> 
- database nodes associated with database instance
- Databasetype string
- type of database
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- DbserverLogical Dictionary<string, string>Cluster 
- dbserver logical cluster
- DbserverLogical stringCluster Id 
- dbserver logical cluster id
- Description string
- description of database instance
- Id string
- The provider-assigned unique ID for this managed resource.
- Infos
List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Scale Info> 
- info of instance
- LcmConfigs List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Scale Lcm Config> 
- LCM config of instance
- LinkedDatabases List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Scale Linked Database> 
- linked databases within database instance
- Metric Dictionary<string, string>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- Name string
- Name of database instance
- ParentDatabase stringId 
- parent database id
- ParentSource stringDatabase Id 
- Properties
List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Scale Property> 
- properties of database created
- Status string
- status of instance
- TimeMachine stringId 
- time machine id of instance
- TimeMachines List<PiersKarsenbarg. Nutanix. Outputs. Ndb Database Scale Time Machine> 
- Time Machine details of instance
- TimeZone string
- timezone on which instance is created xw
- Type string
- type of database
- Clone bool
- whether instance is cloned or not
- DatabaseCluster stringType 
- database cluster type
- DatabaseInstance stringId 
- DatabaseName string
- name of database
- DatabaseNodes []NdbDatabase Scale Database Node 
- database nodes associated with database instance
- Databasetype string
- type of database
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- DbserverLogical map[string]stringCluster 
- dbserver logical cluster
- DbserverLogical stringCluster Id 
- dbserver logical cluster id
- Description string
- description of database instance
- Id string
- The provider-assigned unique ID for this managed resource.
- Infos
[]NdbDatabase Scale Info 
- info of instance
- LcmConfigs []NdbDatabase Scale Lcm Config 
- LCM config of instance
- LinkedDatabases []NdbDatabase Scale Linked Database 
- linked databases within database instance
- Metric map[string]string
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- Name string
- Name of database instance
- ParentDatabase stringId 
- parent database id
- ParentSource stringDatabase Id 
- Properties
[]NdbDatabase Scale Property 
- properties of database created
- Status string
- status of instance
- TimeMachine stringId 
- time machine id of instance
- TimeMachines []NdbDatabase Scale Time Machine 
- Time Machine details of instance
- TimeZone string
- timezone on which instance is created xw
- Type string
- type of database
- clone_ Boolean
- whether instance is cloned or not
- databaseCluster StringType 
- database cluster type
- databaseInstance StringId 
- databaseName String
- name of database
- databaseNodes List<NdbDatabase Scale Database Node> 
- database nodes associated with database instance
- databasetype String
- type of database
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- dbserverLogical Map<String,String>Cluster 
- dbserver logical cluster
- dbserverLogical StringCluster Id 
- dbserver logical cluster id
- description String
- description of database instance
- id String
- The provider-assigned unique ID for this managed resource.
- infos
List<NdbDatabase Scale Info> 
- info of instance
- lcmConfigs List<NdbDatabase Scale Lcm Config> 
- LCM config of instance
- linkedDatabases List<NdbDatabase Scale Linked Database> 
- linked databases within database instance
- metric Map<String,String>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name String
- Name of database instance
- parentDatabase StringId 
- parent database id
- parentSource StringDatabase Id 
- properties
List<NdbDatabase Scale Property> 
- properties of database created
- status String
- status of instance
- timeMachine StringId 
- time machine id of instance
- timeMachines List<NdbDatabase Scale Time Machine> 
- Time Machine details of instance
- timeZone String
- timezone on which instance is created xw
- type String
- type of database
- clone boolean
- whether instance is cloned or not
- databaseCluster stringType 
- database cluster type
- databaseInstance stringId 
- databaseName string
- name of database
- databaseNodes NdbDatabase Scale Database Node[] 
- database nodes associated with database instance
- databasetype string
- type of database
- dateCreated string
- date created for db instance
- dateModified string
- date modified for instance
- dbserverLogical {[key: string]: string}Cluster 
- dbserver logical cluster
- dbserverLogical stringCluster Id 
- dbserver logical cluster id
- description string
- description of database instance
- id string
- The provider-assigned unique ID for this managed resource.
- infos
NdbDatabase Scale Info[] 
- info of instance
- lcmConfigs NdbDatabase Scale Lcm Config[] 
- LCM config of instance
- linkedDatabases NdbDatabase Scale Linked Database[] 
- linked databases within database instance
- metric {[key: string]: string}
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name string
- Name of database instance
- parentDatabase stringId 
- parent database id
- parentSource stringDatabase Id 
- properties
NdbDatabase Scale Property[] 
- properties of database created
- status string
- status of instance
- timeMachine stringId 
- time machine id of instance
- timeMachines NdbDatabase Scale Time Machine[] 
- Time Machine details of instance
- timeZone string
- timezone on which instance is created xw
- type string
- type of database
- clone bool
- whether instance is cloned or not
- database_cluster_ strtype 
- database cluster type
- database_instance_ strid 
- database_name str
- name of database
- database_nodes Sequence[NdbDatabase Scale Database Node] 
- database nodes associated with database instance
- databasetype str
- type of database
- date_created str
- date created for db instance
- date_modified str
- date modified for instance
- dbserver_logical_ Mapping[str, str]cluster 
- dbserver logical cluster
- dbserver_logical_ strcluster_ id 
- dbserver logical cluster id
- description str
- description of database instance
- id str
- The provider-assigned unique ID for this managed resource.
- infos
Sequence[NdbDatabase Scale Info] 
- info of instance
- lcm_configs Sequence[NdbDatabase Scale Lcm Config] 
- LCM config of instance
- linked_databases Sequence[NdbDatabase Scale Linked Database] 
- linked databases within database instance
- metric Mapping[str, str]
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name str
- Name of database instance
- parent_database_ strid 
- parent database id
- parent_source_ strdatabase_ id 
- properties
Sequence[NdbDatabase Scale Property] 
- properties of database created
- status str
- status of instance
- time_machine_ strid 
- time machine id of instance
- time_machines Sequence[NdbDatabase Scale Time Machine] 
- Time Machine details of instance
- time_zone str
- timezone on which instance is created xw
- type str
- type of database
- clone Boolean
- whether instance is cloned or not
- databaseCluster StringType 
- database cluster type
- databaseInstance StringId 
- databaseName String
- name of database
- databaseNodes List<Property Map>
- database nodes associated with database instance
- databasetype String
- type of database
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- dbserverLogical Map<String>Cluster 
- dbserver logical cluster
- dbserverLogical StringCluster Id 
- dbserver logical cluster id
- description String
- description of database instance
- id String
- The provider-assigned unique ID for this managed resource.
- infos List<Property Map>
- info of instance
- lcmConfigs List<Property Map>
- LCM config of instance
- linkedDatabases List<Property Map>
- linked databases within database instance
- metric Map<String>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name String
- Name of database instance
- parentDatabase StringId 
- parent database id
- parentSource StringDatabase Id 
- properties List<Property Map>
- properties of database created
- status String
- status of instance
- timeMachine StringId 
- time machine id of instance
- timeMachines List<Property Map>
- Time Machine details of instance
- timeZone String
- timezone on which instance is created xw
- type String
- type of database
Look up Existing NdbDatabaseScale Resource
Get an existing NdbDatabaseScale 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?: NdbDatabaseScaleState, opts?: CustomResourceOptions): NdbDatabaseScale@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        application_type: Optional[str] = None,
        clone: Optional[bool] = None,
        data_storage_size: Optional[int] = None,
        database_cluster_type: Optional[str] = None,
        database_instance_id: Optional[str] = None,
        database_name: Optional[str] = None,
        database_nodes: Optional[Sequence[NdbDatabaseScaleDatabaseNodeArgs]] = None,
        database_uuid: Optional[str] = None,
        databasetype: Optional[str] = None,
        date_created: Optional[str] = None,
        date_modified: Optional[str] = None,
        dbserver_logical_cluster: Optional[Mapping[str, str]] = None,
        dbserver_logical_cluster_id: Optional[str] = None,
        description: Optional[str] = None,
        infos: Optional[Sequence[NdbDatabaseScaleInfoArgs]] = None,
        lcm_configs: Optional[Sequence[NdbDatabaseScaleLcmConfigArgs]] = None,
        linked_databases: Optional[Sequence[NdbDatabaseScaleLinkedDatabaseArgs]] = None,
        metric: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None,
        parent_database_id: Optional[str] = None,
        parent_source_database_id: Optional[str] = None,
        post_script_cmd: Optional[str] = None,
        pre_script_cmd: Optional[str] = None,
        properties: Optional[Sequence[NdbDatabaseScalePropertyArgs]] = None,
        scale_count: Optional[int] = None,
        status: Optional[str] = None,
        tags: Optional[Sequence[NdbDatabaseScaleTagArgs]] = None,
        time_machine_id: Optional[str] = None,
        time_machines: Optional[Sequence[NdbDatabaseScaleTimeMachineArgs]] = None,
        time_zone: Optional[str] = None,
        type: Optional[str] = None) -> NdbDatabaseScalefunc GetNdbDatabaseScale(ctx *Context, name string, id IDInput, state *NdbDatabaseScaleState, opts ...ResourceOption) (*NdbDatabaseScale, error)public static NdbDatabaseScale Get(string name, Input<string> id, NdbDatabaseScaleState? state, CustomResourceOptions? opts = null)public static NdbDatabaseScale get(String name, Output<String> id, NdbDatabaseScaleState state, CustomResourceOptions options)resources:  _:    type: nutanix:NdbDatabaseScale    get:      id: ${id}- 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.
- ApplicationType string
- type of instance. eg: postgres_database
- Clone bool
- whether instance is cloned or not
- DataStorage intSize 
- data area (in GiB) to be added to the existing database.
- DatabaseCluster stringType 
- database cluster type
- DatabaseInstance stringId 
- DatabaseName string
- name of database
- DatabaseNodes List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Database Node> 
- database nodes associated with database instance
- DatabaseUuid string
- Database id
- Databasetype string
- type of database
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- DbserverLogical Dictionary<string, string>Cluster 
- dbserver logical cluster
- DbserverLogical stringCluster Id 
- dbserver logical cluster id
- Description string
- description of database instance
- Infos
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Info> 
- info of instance
- LcmConfigs List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Lcm Config> 
- LCM config of instance
- LinkedDatabases List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Linked Database> 
- linked databases within database instance
- Metric Dictionary<string, string>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- Name string
- Name of database instance
- ParentDatabase stringId 
- parent database id
- ParentSource stringDatabase Id 
- PostScript stringCmd 
- post script command
- PreScript stringCmd 
- pre script command
- Properties
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Property> 
- properties of database created
- ScaleCount int
- scale count helps to scale the same instance with same config
- Status string
- status of instance
- 
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Tag> 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- TimeMachine stringId 
- time machine id of instance
- TimeMachines List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine> 
- Time Machine details of instance
- TimeZone string
- timezone on which instance is created xw
- Type string
- type of database
- ApplicationType string
- type of instance. eg: postgres_database
- Clone bool
- whether instance is cloned or not
- DataStorage intSize 
- data area (in GiB) to be added to the existing database.
- DatabaseCluster stringType 
- database cluster type
- DatabaseInstance stringId 
- DatabaseName string
- name of database
- DatabaseNodes []NdbDatabase Scale Database Node Args 
- database nodes associated with database instance
- DatabaseUuid string
- Database id
- Databasetype string
- type of database
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- DbserverLogical map[string]stringCluster 
- dbserver logical cluster
- DbserverLogical stringCluster Id 
- dbserver logical cluster id
- Description string
- description of database instance
- Infos
[]NdbDatabase Scale Info Args 
- info of instance
- LcmConfigs []NdbDatabase Scale Lcm Config Args 
- LCM config of instance
- LinkedDatabases []NdbDatabase Scale Linked Database Args 
- linked databases within database instance
- Metric map[string]string
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- Name string
- Name of database instance
- ParentDatabase stringId 
- parent database id
- ParentSource stringDatabase Id 
- PostScript stringCmd 
- post script command
- PreScript stringCmd 
- pre script command
- Properties
[]NdbDatabase Scale Property Args 
- properties of database created
- ScaleCount int
- scale count helps to scale the same instance with same config
- Status string
- status of instance
- 
[]NdbDatabase Scale Tag Args 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- TimeMachine stringId 
- time machine id of instance
- TimeMachines []NdbDatabase Scale Time Machine Args 
- Time Machine details of instance
- TimeZone string
- timezone on which instance is created xw
- Type string
- type of database
- applicationType String
- type of instance. eg: postgres_database
- clone_ Boolean
- whether instance is cloned or not
- dataStorage IntegerSize 
- data area (in GiB) to be added to the existing database.
- databaseCluster StringType 
- database cluster type
- databaseInstance StringId 
- databaseName String
- name of database
- databaseNodes List<NdbDatabase Scale Database Node> 
- database nodes associated with database instance
- databaseUuid String
- Database id
- databasetype String
- type of database
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- dbserverLogical Map<String,String>Cluster 
- dbserver logical cluster
- dbserverLogical StringCluster Id 
- dbserver logical cluster id
- description String
- description of database instance
- infos
List<NdbDatabase Scale Info> 
- info of instance
- lcmConfigs List<NdbDatabase Scale Lcm Config> 
- LCM config of instance
- linkedDatabases List<NdbDatabase Scale Linked Database> 
- linked databases within database instance
- metric Map<String,String>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name String
- Name of database instance
- parentDatabase StringId 
- parent database id
- parentSource StringDatabase Id 
- postScript StringCmd 
- post script command
- preScript StringCmd 
- pre script command
- properties
List<NdbDatabase Scale Property> 
- properties of database created
- scaleCount Integer
- scale count helps to scale the same instance with same config
- status String
- status of instance
- 
List<NdbDatabase Scale Tag> 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- timeMachine StringId 
- time machine id of instance
- timeMachines List<NdbDatabase Scale Time Machine> 
- Time Machine details of instance
- timeZone String
- timezone on which instance is created xw
- type String
- type of database
- applicationType string
- type of instance. eg: postgres_database
- clone boolean
- whether instance is cloned or not
- dataStorage numberSize 
- data area (in GiB) to be added to the existing database.
- databaseCluster stringType 
- database cluster type
- databaseInstance stringId 
- databaseName string
- name of database
- databaseNodes NdbDatabase Scale Database Node[] 
- database nodes associated with database instance
- databaseUuid string
- Database id
- databasetype string
- type of database
- dateCreated string
- date created for db instance
- dateModified string
- date modified for instance
- dbserverLogical {[key: string]: string}Cluster 
- dbserver logical cluster
- dbserverLogical stringCluster Id 
- dbserver logical cluster id
- description string
- description of database instance
- infos
NdbDatabase Scale Info[] 
- info of instance
- lcmConfigs NdbDatabase Scale Lcm Config[] 
- LCM config of instance
- linkedDatabases NdbDatabase Scale Linked Database[] 
- linked databases within database instance
- metric {[key: string]: string}
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name string
- Name of database instance
- parentDatabase stringId 
- parent database id
- parentSource stringDatabase Id 
- postScript stringCmd 
- post script command
- preScript stringCmd 
- pre script command
- properties
NdbDatabase Scale Property[] 
- properties of database created
- scaleCount number
- scale count helps to scale the same instance with same config
- status string
- status of instance
- 
NdbDatabase Scale Tag[] 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- timeMachine stringId 
- time machine id of instance
- timeMachines NdbDatabase Scale Time Machine[] 
- Time Machine details of instance
- timeZone string
- timezone on which instance is created xw
- type string
- type of database
- application_type str
- type of instance. eg: postgres_database
- clone bool
- whether instance is cloned or not
- data_storage_ intsize 
- data area (in GiB) to be added to the existing database.
- database_cluster_ strtype 
- database cluster type
- database_instance_ strid 
- database_name str
- name of database
- database_nodes Sequence[NdbDatabase Scale Database Node Args] 
- database nodes associated with database instance
- database_uuid str
- Database id
- databasetype str
- type of database
- date_created str
- date created for db instance
- date_modified str
- date modified for instance
- dbserver_logical_ Mapping[str, str]cluster 
- dbserver logical cluster
- dbserver_logical_ strcluster_ id 
- dbserver logical cluster id
- description str
- description of database instance
- infos
Sequence[NdbDatabase Scale Info Args] 
- info of instance
- lcm_configs Sequence[NdbDatabase Scale Lcm Config Args] 
- LCM config of instance
- linked_databases Sequence[NdbDatabase Scale Linked Database Args] 
- linked databases within database instance
- metric Mapping[str, str]
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name str
- Name of database instance
- parent_database_ strid 
- parent database id
- parent_source_ strdatabase_ id 
- post_script_ strcmd 
- post script command
- pre_script_ strcmd 
- pre script command
- properties
Sequence[NdbDatabase Scale Property Args] 
- properties of database created
- scale_count int
- scale count helps to scale the same instance with same config
- status str
- status of instance
- 
Sequence[NdbDatabase Scale Tag Args] 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- time_machine_ strid 
- time machine id of instance
- time_machines Sequence[NdbDatabase Scale Time Machine Args] 
- Time Machine details of instance
- time_zone str
- timezone on which instance is created xw
- type str
- type of database
- applicationType String
- type of instance. eg: postgres_database
- clone Boolean
- whether instance is cloned or not
- dataStorage NumberSize 
- data area (in GiB) to be added to the existing database.
- databaseCluster StringType 
- database cluster type
- databaseInstance StringId 
- databaseName String
- name of database
- databaseNodes List<Property Map>
- database nodes associated with database instance
- databaseUuid String
- Database id
- databasetype String
- type of database
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- dbserverLogical Map<String>Cluster 
- dbserver logical cluster
- dbserverLogical StringCluster Id 
- dbserver logical cluster id
- description String
- description of database instance
- infos List<Property Map>
- info of instance
- lcmConfigs List<Property Map>
- LCM config of instance
- linkedDatabases List<Property Map>
- linked databases within database instance
- metric Map<String>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name String
- Name of database instance
- parentDatabase StringId 
- parent database id
- parentSource StringDatabase Id 
- postScript StringCmd 
- post script command
- preScript StringCmd 
- pre script command
- properties List<Property Map>
- properties of database created
- scaleCount Number
- scale count helps to scale the same instance with same config
- status String
- status of instance
- List<Property Map>
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- timeMachine StringId 
- time machine id of instance
- timeMachines List<Property Map>
- Time Machine details of instance
- timeZone String
- timezone on which instance is created xw
- type String
- type of database
Supporting Types
NdbDatabaseScaleDatabaseNode, NdbDatabaseScaleDatabaseNodeArgs          
- AccessLevel Dictionary<string, string>
- DatabaseId string
- DatabaseStatus string
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Dbserver Dictionary<string, string>
- DbserverId string
- Description string
- description of database instance
- Id string
- Infos
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Database Node Info> 
- info of instance
- Name string
- Name of database instance
- Primary bool
- Properties
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Database Node Property> 
- properties of database created
- ProtectionDomain stringId 
- ProtectionDomains List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Database Node Protection Domain> 
- SoftwareInstallation stringId 
- Status string
- status of instance
- 
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Database Node Tag> 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- AccessLevel map[string]string
- DatabaseId string
- DatabaseStatus string
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Dbserver map[string]string
- DbserverId string
- Description string
- description of database instance
- Id string
- Infos
[]NdbDatabase Scale Database Node Info 
- info of instance
- Name string
- Name of database instance
- Primary bool
- Properties
[]NdbDatabase Scale Database Node Property 
- properties of database created
- ProtectionDomain stringId 
- ProtectionDomains []NdbDatabase Scale Database Node Protection Domain 
- SoftwareInstallation stringId 
- Status string
- status of instance
- 
[]NdbDatabase Scale Database Node Tag 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- accessLevel Map<String,String>
- databaseId String
- databaseStatus String
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- dbserver Map<String,String>
- dbserverId String
- description String
- description of database instance
- id String
- infos
List<NdbDatabase Scale Database Node Info> 
- info of instance
- name String
- Name of database instance
- primary Boolean
- properties
List<NdbDatabase Scale Database Node Property> 
- properties of database created
- protectionDomain StringId 
- protectionDomains List<NdbDatabase Scale Database Node Protection Domain> 
- softwareInstallation StringId 
- status String
- status of instance
- 
List<NdbDatabase Scale Database Node Tag> 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- accessLevel {[key: string]: string}
- databaseId string
- databaseStatus string
- dateCreated string
- date created for db instance
- dateModified string
- date modified for instance
- dbserver {[key: string]: string}
- dbserverId string
- description string
- description of database instance
- id string
- infos
NdbDatabase Scale Database Node Info[] 
- info of instance
- name string
- Name of database instance
- primary boolean
- properties
NdbDatabase Scale Database Node Property[] 
- properties of database created
- protectionDomain stringId 
- protectionDomains NdbDatabase Scale Database Node Protection Domain[] 
- softwareInstallation stringId 
- status string
- status of instance
- 
NdbDatabase Scale 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 db instance
- date_modified str
- date modified for instance
- dbserver Mapping[str, str]
- dbserver_id str
- description str
- description of database instance
- id str
- infos
Sequence[NdbDatabase Scale Database Node Info] 
- info of instance
- name str
- Name of database instance
- primary bool
- properties
Sequence[NdbDatabase Scale Database Node Property] 
- properties of database created
- protection_domain_ strid 
- protection_domains Sequence[NdbDatabase Scale Database Node Protection Domain] 
- software_installation_ strid 
- status str
- status of instance
- 
Sequence[NdbDatabase Scale Database Node Tag] 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- accessLevel Map<String>
- databaseId String
- databaseStatus String
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- dbserver Map<String>
- dbserverId String
- description String
- description of database instance
- id String
- infos List<Property Map>
- info of instance
- name String
- Name of database instance
- primary Boolean
- properties List<Property Map>
- properties of database created
- protectionDomain StringId 
- protectionDomains List<Property Map>
- softwareInstallation StringId 
- status String
- status of instance
- List<Property Map>
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
NdbDatabaseScaleDatabaseNodeInfo, NdbDatabaseScaleDatabaseNodeInfoArgs            
- Info Dictionary<string, string>
- info of instance
- SecureInfo Dictionary<string, string>
- Info map[string]string
- info of instance
- SecureInfo map[string]string
- info Map<String,String>
- info of instance
- secureInfo Map<String,String>
- info {[key: string]: string}
- info of instance
- secureInfo {[key: string]: string}
- info Mapping[str, str]
- info of instance
- secure_info Mapping[str, str]
- info Map<String>
- info of instance
- secureInfo Map<String>
NdbDatabaseScaleDatabaseNodeProperty, NdbDatabaseScaleDatabaseNodePropertyArgs            
- Description string
- description of database instance
- Name string
- Name of database instance
- RefId string
- Secure bool
- Value string
- Description string
- description of database instance
- Name string
- Name of database instance
- RefId string
- Secure bool
- Value string
- description String
- description of database instance
- name String
- Name of database instance
- refId String
- secure Boolean
- value String
- description string
- description of database instance
- name string
- Name of database instance
- refId string
- secure boolean
- value string
- description str
- description of database instance
- name str
- Name of database instance
- ref_id str
- secure bool
- value str
- description String
- description of database instance
- name String
- Name of database instance
- refId String
- secure Boolean
- value String
NdbDatabaseScaleDatabaseNodeProtectionDomain, NdbDatabaseScaleDatabaseNodeProtectionDomainArgs              
- AssocEntities List<string>
- CloudId string
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- EraCreated bool
- Id string
- Name string
- Name of database instance
- OwnerId string
- PrimaryHost string
- Properties
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Database Node Protection Domain Property> 
- properties of database created
- Status string
- status of instance
- Type string
- type of database
- AssocEntities []string
- CloudId string
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- EraCreated bool
- Id string
- Name string
- Name of database instance
- OwnerId string
- PrimaryHost string
- Properties
[]NdbDatabase Scale Database Node Protection Domain Property 
- properties of database created
- Status string
- status of instance
- Type string
- type of database
- assocEntities List<String>
- cloudId String
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- eraCreated Boolean
- id String
- name String
- Name of database instance
- ownerId String
- primaryHost String
- properties
List<NdbDatabase Scale Database Node Protection Domain Property> 
- properties of database created
- status String
- status of instance
- type String
- type of database
- assocEntities string[]
- cloudId string
- dateCreated string
- date created for db instance
- dateModified string
- date modified for instance
- description string
- description of database instance
- eraCreated boolean
- id string
- name string
- Name of database instance
- ownerId string
- primaryHost string
- properties
NdbDatabase Scale Database Node Protection Domain Property[] 
- properties of database created
- status string
- status of instance
- type string
- type of database
- assoc_entities Sequence[str]
- cloud_id str
- date_created str
- date created for db instance
- date_modified str
- date modified for instance
- description str
- description of database instance
- era_created bool
- id str
- name str
- Name of database instance
- owner_id str
- primary_host str
- properties
Sequence[NdbDatabase Scale Database Node Protection Domain Property] 
- properties of database created
- status str
- status of instance
- type str
- type of database
- assocEntities List<String>
- cloudId String
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- eraCreated Boolean
- id String
- name String
- Name of database instance
- ownerId String
- primaryHost String
- properties List<Property Map>
- properties of database created
- status String
- status of instance
- type String
- type of database
NdbDatabaseScaleDatabaseNodeProtectionDomainProperty, NdbDatabaseScaleDatabaseNodeProtectionDomainPropertyArgs                
- Description string
- description of database instance
- Name string
- Name of database instance
- RefId string
- Secure bool
- Value string
- Description string
- description of database instance
- Name string
- Name of database instance
- RefId string
- Secure bool
- Value string
- description String
- description of database instance
- name String
- Name of database instance
- refId String
- secure Boolean
- value String
- description string
- description of database instance
- name string
- Name of database instance
- refId string
- secure boolean
- value string
- description str
- description of database instance
- name str
- Name of database instance
- ref_id str
- secure bool
- value str
- description String
- description of database instance
- name String
- Name of database instance
- refId String
- secure Boolean
- value String
NdbDatabaseScaleDatabaseNodeTag, NdbDatabaseScaleDatabaseNodeTagArgs            
- EntityId string
- EntityType string
- TagId string
- TagName string
- Value string
- EntityId string
- EntityType string
- TagId string
- TagName string
- Value string
- entityId String
- entityType String
- tagId String
- tagName String
- value String
- entityId string
- entityType string
- tagId string
- tagName string
- value string
- entity_id str
- entity_type str
- tag_id str
- tag_name str
- value str
- entityId String
- entityType String
- tagId String
- tagName String
- value String
NdbDatabaseScaleInfo, NdbDatabaseScaleInfoArgs        
- BpgConfigs List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Info Bpg Config> 
- SecureInfo Dictionary<string, string>
- BpgConfigs []NdbDatabase Scale Info Bpg Config 
- SecureInfo map[string]string
- bpgConfigs List<NdbDatabase Scale Info Bpg Config> 
- secureInfo Map<String,String>
- bpgConfigs NdbDatabase Scale Info Bpg Config[] 
- secureInfo {[key: string]: string}
- bpg_configs Sequence[NdbDatabase Scale Info Bpg Config] 
- secure_info Mapping[str, str]
- bpgConfigs List<Property Map>
- secureInfo Map<String>
NdbDatabaseScaleInfoBpgConfig, NdbDatabaseScaleInfoBpgConfigArgs            
NdbDatabaseScaleInfoBpgConfigBpgDbParam, NdbDatabaseScaleInfoBpgConfigBpgDbParamArgs                  
- EffectiveCache stringSize 
- MaintenanceWork stringMem 
- MaxParallel stringWorkers Per Gather 
- MaxWorker stringProcesses 
- string
- WorkMem string
- EffectiveCache stringSize 
- MaintenanceWork stringMem 
- MaxParallel stringWorkers Per Gather 
- MaxWorker stringProcesses 
- string
- WorkMem string
- effectiveCache StringSize 
- maintenanceWork StringMem 
- maxParallel StringWorkers Per Gather 
- maxWorker StringProcesses 
- String
- workMem String
- effectiveCache stringSize 
- maintenanceWork stringMem 
- maxParallel stringWorkers Per Gather 
- maxWorker stringProcesses 
- string
- workMem string
- effectiveCache StringSize 
- maintenanceWork StringMem 
- maxParallel StringWorkers Per Gather 
- maxWorker StringProcesses 
- String
- workMem String
NdbDatabaseScaleInfoBpgConfigStorage, NdbDatabaseScaleInfoBpgConfigStorageArgs              
NdbDatabaseScaleInfoBpgConfigStorageArchiveStorage, NdbDatabaseScaleInfoBpgConfigStorageArchiveStorageArgs                  
- Size double
- Size float64
- size Double
- size number
- size float
- size Number
NdbDatabaseScaleInfoBpgConfigStorageDataDisk, NdbDatabaseScaleInfoBpgConfigStorageDataDiskArgs                  
- Count double
- Count float64
- count Double
- count number
- count float
- count Number
NdbDatabaseScaleInfoBpgConfigStorageLogDisk, NdbDatabaseScaleInfoBpgConfigStorageLogDiskArgs                  
NdbDatabaseScaleInfoBpgConfigVmProperty, NdbDatabaseScaleInfoBpgConfigVmPropertyArgs                
- DirtyBackground doubleRatio 
- DirtyExpire doubleCentisecs 
- DirtyRatio double
- DirtyWriteback doubleCentisecs 
- NrHugepages double
- OvercommitMemory double
- Swappiness double
- DirtyBackground float64Ratio 
- DirtyExpire float64Centisecs 
- DirtyRatio float64
- DirtyWriteback float64Centisecs 
- NrHugepages float64
- OvercommitMemory float64
- Swappiness float64
- dirtyBackground DoubleRatio 
- dirtyExpire DoubleCentisecs 
- dirtyRatio Double
- dirtyWriteback DoubleCentisecs 
- nrHugepages Double
- overcommitMemory Double
- swappiness Double
- dirtyBackground numberRatio 
- dirtyExpire numberCentisecs 
- dirtyRatio number
- dirtyWriteback numberCentisecs 
- nrHugepages number
- overcommitMemory number
- swappiness number
- dirty_background_ floatratio 
- dirty_expire_ floatcentisecs 
- dirty_ratio float
- dirty_writeback_ floatcentisecs 
- nr_hugepages float
- overcommit_memory float
- swappiness float
- dirtyBackground NumberRatio 
- dirtyExpire NumberCentisecs 
- dirtyRatio Number
- dirtyWriteback NumberCentisecs 
- nrHugepages Number
- overcommitMemory Number
- swappiness Number
NdbDatabaseScaleLcmConfig, NdbDatabaseScaleLcmConfigArgs          
- ExpiryDetails List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Lcm Config Expiry Detail> 
- PostDelete List<PiersCommands Karsenbarg. Nutanix. Inputs. Ndb Database Scale Lcm Config Post Delete Command> 
- PreDelete List<PiersCommands Karsenbarg. Nutanix. Inputs. Ndb Database Scale Lcm Config Pre Delete Command> 
- RefreshDetails List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Lcm Config Refresh Detail> 
NdbDatabaseScaleLcmConfigExpiryDetail, NdbDatabaseScaleLcmConfigExpiryDetailArgs              
- DeleteDatabase bool
- DeleteTime boolMachine 
- DeleteVm bool
- EffectiveTimestamp string
- ExpireIn intDays 
- ExpiryDate stringTimezone 
- ExpiryTimestamp string
- RemindBefore intIn Days 
- UserCreated bool
- DeleteDatabase bool
- DeleteTime boolMachine 
- DeleteVm bool
- EffectiveTimestamp string
- ExpireIn intDays 
- ExpiryDate stringTimezone 
- ExpiryTimestamp string
- RemindBefore intIn Days 
- UserCreated bool
- deleteDatabase Boolean
- deleteTime BooleanMachine 
- deleteVm Boolean
- effectiveTimestamp String
- expireIn IntegerDays 
- expiryDate StringTimezone 
- expiryTimestamp String
- remindBefore IntegerIn Days 
- userCreated Boolean
- deleteDatabase boolean
- deleteTime booleanMachine 
- deleteVm boolean
- effectiveTimestamp string
- expireIn numberDays 
- expiryDate stringTimezone 
- expiryTimestamp string
- remindBefore numberIn Days 
- userCreated boolean
- delete_database bool
- delete_time_ boolmachine 
- delete_vm bool
- effective_timestamp str
- expire_in_ intdays 
- expiry_date_ strtimezone 
- expiry_timestamp str
- remind_before_ intin_ days 
- user_created bool
- deleteDatabase Boolean
- deleteTime BooleanMachine 
- deleteVm Boolean
- effectiveTimestamp String
- expireIn NumberDays 
- expiryDate StringTimezone 
- expiryTimestamp String
- remindBefore NumberIn Days 
- userCreated Boolean
NdbDatabaseScaleLcmConfigPostDeleteCommand, NdbDatabaseScaleLcmConfigPostDeleteCommandArgs                
- Command string
- Command string
- command String
- command string
- command str
- command String
NdbDatabaseScaleLcmConfigPreDeleteCommand, NdbDatabaseScaleLcmConfigPreDeleteCommandArgs                
- Command string
- Command string
- command String
- command string
- command str
- command String
NdbDatabaseScaleLcmConfigRefreshDetail, NdbDatabaseScaleLcmConfigRefreshDetailArgs              
- LastRefresh stringDate 
- NextRefresh stringDate 
- RefreshDate stringTimezone 
- RefreshIn intDays 
- RefreshIn intHours 
- RefreshIn intMonths 
- RefreshTime string
- LastRefresh stringDate 
- NextRefresh stringDate 
- RefreshDate stringTimezone 
- RefreshIn intDays 
- RefreshIn intHours 
- RefreshIn intMonths 
- RefreshTime string
- lastRefresh StringDate 
- nextRefresh StringDate 
- refreshDate StringTimezone 
- refreshIn IntegerDays 
- refreshIn IntegerHours 
- refreshIn IntegerMonths 
- refreshTime String
- lastRefresh stringDate 
- nextRefresh stringDate 
- refreshDate stringTimezone 
- refreshIn numberDays 
- refreshIn numberHours 
- refreshIn numberMonths 
- refreshTime string
- lastRefresh StringDate 
- nextRefresh StringDate 
- refreshDate StringTimezone 
- refreshIn NumberDays 
- refreshIn NumberHours 
- refreshIn NumberMonths 
- refreshTime String
NdbDatabaseScaleLinkedDatabase, NdbDatabaseScaleLinkedDatabaseArgs          
- DatabaseName string
- name of database
- DatabaseStatus string
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- Id string
- Infos
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Linked Database Info> 
- info of instance
- Metric Dictionary<string, string>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- Name string
- Name of database instance
- ParentDatabase stringId 
- parent database id
- ParentLinked stringDatabase Id 
- SnapshotId string
- Status string
- status of instance
- Timezone string
- DatabaseName string
- name of database
- DatabaseStatus string
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- Id string
- Infos
[]NdbDatabase Scale Linked Database Info 
- info of instance
- Metric map[string]string
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- Name string
- Name of database instance
- ParentDatabase stringId 
- parent database id
- ParentLinked stringDatabase Id 
- SnapshotId string
- Status string
- status of instance
- Timezone string
- databaseName String
- name of database
- databaseStatus String
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- id String
- infos
List<NdbDatabase Scale Linked Database Info> 
- info of instance
- metric Map<String,String>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name String
- Name of database instance
- parentDatabase StringId 
- parent database id
- parentLinked StringDatabase Id 
- snapshotId String
- status String
- status of instance
- timezone String
- databaseName string
- name of database
- databaseStatus string
- dateCreated string
- date created for db instance
- dateModified string
- date modified for instance
- description string
- description of database instance
- id string
- infos
NdbDatabase Scale Linked Database Info[] 
- info of instance
- metric {[key: string]: string}
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name string
- Name of database instance
- parentDatabase stringId 
- parent database id
- parentLinked stringDatabase Id 
- snapshotId string
- status string
- status of instance
- timezone string
- database_name str
- name of database
- database_status str
- date_created str
- date created for db instance
- date_modified str
- date modified for instance
- description str
- description of database instance
- id str
- infos
Sequence[NdbDatabase Scale Linked Database Info] 
- info of instance
- metric Mapping[str, str]
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name str
- Name of database instance
- parent_database_ strid 
- parent database id
- parent_linked_ strdatabase_ id 
- snapshot_id str
- status str
- status of instance
- timezone str
- databaseName String
- name of database
- databaseStatus String
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- id String
- infos List<Property Map>
- info of instance
- metric Map<String>
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name String
- Name of database instance
- parentDatabase StringId 
- parent database id
- parentLinked StringDatabase Id 
- snapshotId String
- status String
- status of instance
- timezone String
NdbDatabaseScaleLinkedDatabaseInfo, NdbDatabaseScaleLinkedDatabaseInfoArgs            
- Info Dictionary<string, string>
- info of instance
- SecureInfo Dictionary<string, string>
- Info map[string]string
- info of instance
- SecureInfo map[string]string
- info Map<String,String>
- info of instance
- secureInfo Map<String,String>
- info {[key: string]: string}
- info of instance
- secureInfo {[key: string]: string}
- info Mapping[str, str]
- info of instance
- secure_info Mapping[str, str]
- info Map<String>
- info of instance
- secureInfo Map<String>
NdbDatabaseScaleProperty, NdbDatabaseScalePropertyArgs        
NdbDatabaseScaleTag, NdbDatabaseScaleTagArgs        
- EntityId string
- EntityType string
- TagId string
- TagName string
- Value string
- EntityId string
- EntityType string
- TagId string
- TagName string
- Value string
- entityId String
- entityType String
- tagId String
- tagName String
- value String
- entityId string
- entityType string
- tagId string
- tagName string
- value string
- entity_id str
- entity_type str
- tag_id str
- tag_name str
- value str
- entityId String
- entityType String
- tagId String
- tagName String
- value String
NdbDatabaseScaleTimeMachine, NdbDatabaseScaleTimeMachineArgs          
- AccessLevel string
- Clone bool
- whether instance is cloned or not
- Clones string
- Clustered bool
- Database string
- DatabaseId string
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- EaStatus string
- Id string
- Metric string
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- Name string
- Name of database instance
- Properties
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Property> 
- properties of database created
- ScheduleId string
- Schedules
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Schedule> 
- Scope string
- SlaId string
- SlaUpdate boolIn Progress 
- SlaUpdate stringMetadata 
- Slas
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Sla> 
- SourceNx List<string>Clusters 
- Status string
- status of instance
- 
List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Tag> 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Type string
- type of database
- AccessLevel string
- Clone bool
- whether instance is cloned or not
- Clones string
- Clustered bool
- Database string
- DatabaseId string
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- EaStatus string
- Id string
- Metric string
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- Name string
- Name of database instance
- Properties
[]NdbDatabase Scale Time Machine Property 
- properties of database created
- ScheduleId string
- Schedules
[]NdbDatabase Scale Time Machine Schedule 
- Scope string
- SlaId string
- SlaUpdate boolIn Progress 
- SlaUpdate stringMetadata 
- Slas
[]NdbDatabase Scale Time Machine Sla 
- SourceNx []stringClusters 
- Status string
- status of instance
- 
[]NdbDatabase Scale Time Machine Tag 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- Type string
- type of database
- accessLevel String
- clone_ Boolean
- whether instance is cloned or not
- clones String
- clustered Boolean
- database String
- databaseId String
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- eaStatus String
- id String
- metric String
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name String
- Name of database instance
- properties
List<NdbDatabase Scale Time Machine Property> 
- properties of database created
- scheduleId String
- schedules
List<NdbDatabase Scale Time Machine Schedule> 
- scope String
- slaId String
- slaUpdate BooleanIn Progress 
- slaUpdate StringMetadata 
- slas
List<NdbDatabase Scale Time Machine Sla> 
- sourceNx List<String>Clusters 
- status String
- status of instance
- 
List<NdbDatabase Scale Time Machine Tag> 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type String
- type of database
- accessLevel string
- clone boolean
- whether instance is cloned or not
- clones string
- clustered boolean
- database string
- databaseId string
- dateCreated string
- date created for db instance
- dateModified string
- date modified for instance
- description string
- description of database instance
- eaStatus string
- id string
- metric string
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name string
- Name of database instance
- properties
NdbDatabase Scale Time Machine Property[] 
- properties of database created
- scheduleId string
- schedules
NdbDatabase Scale Time Machine Schedule[] 
- scope string
- slaId string
- slaUpdate booleanIn Progress 
- slaUpdate stringMetadata 
- slas
NdbDatabase Scale Time Machine Sla[] 
- sourceNx string[]Clusters 
- status string
- status of instance
- 
NdbDatabase Scale Time Machine Tag[] 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type string
- type of database
- access_level str
- clone bool
- whether instance is cloned or not
- clones str
- clustered bool
- database str
- database_id str
- date_created str
- date created for db instance
- date_modified str
- date modified for instance
- description str
- description of database instance
- ea_status str
- id str
- metric str
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name str
- Name of database instance
- properties
Sequence[NdbDatabase Scale Time Machine Property] 
- properties of database created
- schedule_id str
- schedules
Sequence[NdbDatabase Scale Time Machine Schedule] 
- scope str
- sla_id str
- sla_update_ boolin_ progress 
- sla_update_ strmetadata 
- slas
Sequence[NdbDatabase Scale Time Machine Sla] 
- source_nx_ Sequence[str]clusters 
- status str
- status of instance
- 
Sequence[NdbDatabase Scale Time Machine Tag] 
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type str
- type of database
- accessLevel String
- clone Boolean
- whether instance is cloned or not
- clones String
- clustered Boolean
- database String
- databaseId String
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- eaStatus String
- id String
- metric String
- Stores storage info regarding size, allocatedSize, usedSize and unit of calculation that seems to have been fetched from PRISM.
- name String
- Name of database instance
- properties List<Property Map>
- properties of database created
- scheduleId String
- schedules List<Property Map>
- scope String
- slaId String
- slaUpdate BooleanIn Progress 
- slaUpdate StringMetadata 
- slas List<Property Map>
- sourceNx List<String>Clusters 
- status String
- status of instance
- List<Property Map>
- allows you to assign metadata to entities (clones, time machines, databases, and database servers) by using tags.
- type String
- type of database
NdbDatabaseScaleTimeMachineProperty, NdbDatabaseScaleTimeMachinePropertyArgs            
- Description string
- description of database instance
- Name string
- Name of database instance
- RefId string
- Secure bool
- Value string
- Description string
- description of database instance
- Name string
- Name of database instance
- RefId string
- Secure bool
- Value string
- description String
- description of database instance
- name String
- Name of database instance
- refId String
- secure Boolean
- value String
- description string
- description of database instance
- name string
- Name of database instance
- refId string
- secure boolean
- value string
- description str
- description of database instance
- name str
- Name of database instance
- ref_id str
- secure bool
- value str
- description String
- description of database instance
- name String
- Name of database instance
- refId String
- secure Boolean
- value String
NdbDatabaseScaleTimeMachineSchedule, NdbDatabaseScaleTimeMachineScheduleArgs            
- ContinuousSchedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Schedule Continuous Schedule> 
- DailySchedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Schedule Daily Schedule> 
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- GlobalPolicy bool
- Id string
- MonthlySchedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Schedule Monthly Schedule> 
- Name string
- Name of database instance
- OwnerId string
- QuartelySchedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Schedule Quartely Schedule> 
- ReferenceCount int
- SnapshotTime List<PiersOf Days Karsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Schedule Snapshot Time Of Day> 
- StartTime string
- SystemPolicy bool
- TimeZone string
- timezone on which instance is created xw
- UniqueName string
- WeeklySchedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Schedule Weekly Schedule> 
- YearlySchedules List<PiersKarsenbarg. Nutanix. Inputs. Ndb Database Scale Time Machine Schedule Yearly Schedule> 
- ContinuousSchedules []NdbDatabase Scale Time Machine Schedule Continuous Schedule 
- DailySchedules []NdbDatabase Scale Time Machine Schedule Daily Schedule 
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- GlobalPolicy bool
- Id string
- MonthlySchedules []NdbDatabase Scale Time Machine Schedule Monthly Schedule 
- Name string
- Name of database instance
- OwnerId string
- QuartelySchedules []NdbDatabase Scale Time Machine Schedule Quartely Schedule 
- ReferenceCount int
- SnapshotTime []NdbOf Days Database Scale Time Machine Schedule Snapshot Time Of Day 
- StartTime string
- SystemPolicy bool
- TimeZone string
- timezone on which instance is created xw
- UniqueName string
- WeeklySchedules []NdbDatabase Scale Time Machine Schedule Weekly Schedule 
- YearlySchedules []NdbDatabase Scale Time Machine Schedule Yearly Schedule 
- continuousSchedules List<NdbDatabase Scale Time Machine Schedule Continuous Schedule> 
- dailySchedules List<NdbDatabase Scale Time Machine Schedule Daily Schedule> 
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- globalPolicy Boolean
- id String
- monthlySchedules List<NdbDatabase Scale Time Machine Schedule Monthly Schedule> 
- name String
- Name of database instance
- ownerId String
- quartelySchedules List<NdbDatabase Scale Time Machine Schedule Quartely Schedule> 
- referenceCount Integer
- snapshotTime List<NdbOf Days Database Scale Time Machine Schedule Snapshot Time Of Day> 
- startTime String
- systemPolicy Boolean
- timeZone String
- timezone on which instance is created xw
- uniqueName String
- weeklySchedules List<NdbDatabase Scale Time Machine Schedule Weekly Schedule> 
- yearlySchedules List<NdbDatabase Scale Time Machine Schedule Yearly Schedule> 
- continuousSchedules NdbDatabase Scale Time Machine Schedule Continuous Schedule[] 
- dailySchedules NdbDatabase Scale Time Machine Schedule Daily Schedule[] 
- dateCreated string
- date created for db instance
- dateModified string
- date modified for instance
- description string
- description of database instance
- globalPolicy boolean
- id string
- monthlySchedules NdbDatabase Scale Time Machine Schedule Monthly Schedule[] 
- name string
- Name of database instance
- ownerId string
- quartelySchedules NdbDatabase Scale Time Machine Schedule Quartely Schedule[] 
- referenceCount number
- snapshotTime NdbOf Days Database Scale Time Machine Schedule Snapshot Time Of Day[] 
- startTime string
- systemPolicy boolean
- timeZone string
- timezone on which instance is created xw
- uniqueName string
- weeklySchedules NdbDatabase Scale Time Machine Schedule Weekly Schedule[] 
- yearlySchedules NdbDatabase Scale Time Machine Schedule Yearly Schedule[] 
- continuous_schedules Sequence[NdbDatabase Scale Time Machine Schedule Continuous Schedule] 
- daily_schedules Sequence[NdbDatabase Scale Time Machine Schedule Daily Schedule] 
- date_created str
- date created for db instance
- date_modified str
- date modified for instance
- description str
- description of database instance
- global_policy bool
- id str
- monthly_schedules Sequence[NdbDatabase Scale Time Machine Schedule Monthly Schedule] 
- name str
- Name of database instance
- owner_id str
- quartely_schedules Sequence[NdbDatabase Scale Time Machine Schedule Quartely Schedule] 
- reference_count int
- snapshot_time_ Sequence[Ndbof_ days Database Scale Time Machine Schedule Snapshot Time Of Day] 
- start_time str
- system_policy bool
- time_zone str
- timezone on which instance is created xw
- unique_name str
- weekly_schedules Sequence[NdbDatabase Scale Time Machine Schedule Weekly Schedule] 
- yearly_schedules Sequence[NdbDatabase Scale Time Machine Schedule Yearly Schedule] 
- continuousSchedules List<Property Map>
- dailySchedules List<Property Map>
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- globalPolicy Boolean
- id String
- monthlySchedules List<Property Map>
- name String
- Name of database instance
- ownerId String
- quartelySchedules List<Property Map>
- referenceCount Number
- snapshotTime List<Property Map>Of Days 
- startTime String
- systemPolicy Boolean
- timeZone String
- timezone on which instance is created xw
- uniqueName String
- weeklySchedules List<Property Map>
- yearlySchedules List<Property Map>
NdbDatabaseScaleTimeMachineScheduleContinuousSchedule, NdbDatabaseScaleTimeMachineScheduleContinuousScheduleArgs                
- Enabled bool
- LogBackup intInterval 
- SnapshotsPer intDay 
- Enabled bool
- LogBackup intInterval 
- SnapshotsPer intDay 
- enabled Boolean
- logBackup IntegerInterval 
- snapshotsPer IntegerDay 
- enabled boolean
- logBackup numberInterval 
- snapshotsPer numberDay 
- enabled bool
- log_backup_ intinterval 
- snapshots_per_ intday 
- enabled Boolean
- logBackup NumberInterval 
- snapshotsPer NumberDay 
NdbDatabaseScaleTimeMachineScheduleDailySchedule, NdbDatabaseScaleTimeMachineScheduleDailyScheduleArgs                
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
NdbDatabaseScaleTimeMachineScheduleMonthlySchedule, NdbDatabaseScaleTimeMachineScheduleMonthlyScheduleArgs                
- DayOf intMonth 
- Enabled bool
- DayOf intMonth 
- Enabled bool
- dayOf IntegerMonth 
- enabled Boolean
- dayOf numberMonth 
- enabled boolean
- day_of_ intmonth 
- enabled bool
- dayOf NumberMonth 
- enabled Boolean
NdbDatabaseScaleTimeMachineScheduleQuartelySchedule, NdbDatabaseScaleTimeMachineScheduleQuartelyScheduleArgs                
- DayOf intMonth 
- Enabled bool
- StartMonth string
- StartMonth stringValue 
- DayOf intMonth 
- Enabled bool
- StartMonth string
- StartMonth stringValue 
- dayOf IntegerMonth 
- enabled Boolean
- startMonth String
- startMonth StringValue 
- dayOf numberMonth 
- enabled boolean
- startMonth string
- startMonth stringValue 
- day_of_ intmonth 
- enabled bool
- start_month str
- start_month_ strvalue 
- dayOf NumberMonth 
- enabled Boolean
- startMonth String
- startMonth StringValue 
NdbDatabaseScaleTimeMachineScheduleSnapshotTimeOfDay, NdbDatabaseScaleTimeMachineScheduleSnapshotTimeOfDayArgs                    
NdbDatabaseScaleTimeMachineScheduleWeeklySchedule, NdbDatabaseScaleTimeMachineScheduleWeeklyScheduleArgs                
- DayOf stringWeek 
- DayOf stringWeek Value 
- Enabled bool
- DayOf stringWeek 
- DayOf stringWeek Value 
- Enabled bool
- dayOf StringWeek 
- dayOf StringWeek Value 
- enabled Boolean
- dayOf stringWeek 
- dayOf stringWeek Value 
- enabled boolean
- day_of_ strweek 
- day_of_ strweek_ value 
- enabled bool
- dayOf StringWeek 
- dayOf StringWeek Value 
- enabled Boolean
NdbDatabaseScaleTimeMachineScheduleYearlySchedule, NdbDatabaseScaleTimeMachineScheduleYearlyScheduleArgs                
- DayOf intMonth 
- Enabled bool
- Month string
- MonthValue string
- DayOf intMonth 
- Enabled bool
- Month string
- MonthValue string
- dayOf IntegerMonth 
- enabled Boolean
- month String
- monthValue String
- dayOf numberMonth 
- enabled boolean
- month string
- monthValue string
- day_of_ intmonth 
- enabled bool
- month str
- month_value str
- dayOf NumberMonth 
- enabled Boolean
- month String
- monthValue String
NdbDatabaseScaleTimeMachineSla, NdbDatabaseScaleTimeMachineSlaArgs            
- ContinuousRetention int
- CurrentActive stringFrequency 
- DailyRetention int
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- Id string
- MonthlyRetention int
- Name string
- Name of database instance
- OwnerId string
- PitrEnabled bool
- QuarterlyRetention int
- ReferenceCount int
- SystemSla bool
- UniqueName string
- WeeklyRetention int
- YearlyRetention int
- ContinuousRetention int
- CurrentActive stringFrequency 
- DailyRetention int
- DateCreated string
- date created for db instance
- DateModified string
- date modified for instance
- Description string
- description of database instance
- Id string
- MonthlyRetention int
- Name string
- Name of database instance
- OwnerId string
- PitrEnabled bool
- QuarterlyRetention int
- ReferenceCount int
- SystemSla bool
- UniqueName string
- WeeklyRetention int
- YearlyRetention int
- continuousRetention Integer
- currentActive StringFrequency 
- dailyRetention Integer
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- id String
- monthlyRetention Integer
- name String
- Name of database instance
- ownerId String
- pitrEnabled Boolean
- quarterlyRetention Integer
- referenceCount Integer
- systemSla Boolean
- uniqueName String
- weeklyRetention Integer
- yearlyRetention Integer
- continuousRetention number
- currentActive stringFrequency 
- dailyRetention number
- dateCreated string
- date created for db instance
- dateModified string
- date modified for instance
- description string
- description of database instance
- id string
- monthlyRetention number
- name string
- Name of database instance
- ownerId string
- pitrEnabled boolean
- quarterlyRetention number
- referenceCount number
- systemSla boolean
- uniqueName string
- weeklyRetention number
- yearlyRetention number
- continuous_retention int
- current_active_ strfrequency 
- daily_retention int
- date_created str
- date created for db instance
- date_modified str
- date modified for instance
- description str
- description of database instance
- id str
- monthly_retention int
- name str
- Name of database instance
- owner_id str
- pitr_enabled bool
- quarterly_retention int
- reference_count int
- system_sla bool
- unique_name str
- weekly_retention int
- yearly_retention int
- continuousRetention Number
- currentActive StringFrequency 
- dailyRetention Number
- dateCreated String
- date created for db instance
- dateModified String
- date modified for instance
- description String
- description of database instance
- id String
- monthlyRetention Number
- name String
- Name of database instance
- ownerId String
- pitrEnabled Boolean
- quarterlyRetention Number
- referenceCount Number
- systemSla Boolean
- uniqueName String
- weeklyRetention Number
- yearlyRetention Number
NdbDatabaseScaleTimeMachineTag, NdbDatabaseScaleTimeMachineTagArgs            
- EntityId string
- EntityType string
- TagId string
- TagName string
- Value string
- EntityId string
- EntityType string
- TagId string
- TagName string
- Value string
- entityId String
- entityType String
- tagId String
- tagName String
- value String
- entityId string
- entityType string
- tagId string
- tagName string
- value string
- entity_id str
- entity_type str
- tag_id str
- tag_name str
- value str
- entityId String
- entityType String
- tagId String
- tagName String
- value String
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the nutanixTerraform Provider.
