yandex.MdbGreenplumCluster
Explore with Pulumi AI
Manages a Greenplum cluster within the Yandex.Cloud. For more information, see the official documentation.
Please read Pricing for Managed Service for Greenplum before using Greenplum cluster.
Yandex Managed Service for Greenplum® is now in preview
Example Usage
Example of creating a Single Node Greenplum.
Coming soon!
Coming soon!
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as yandex from "@pulumi/yandex";
const fooVpcNetwork = new yandex.VpcNetwork("fooVpcNetwork", {});
const fooVpcSubnet = new yandex.VpcSubnet("fooVpcSubnet", {
    zone: "ru-central1-a",
    networkId: fooVpcNetwork.id,
    v4CidrBlocks: ["10.5.0.0/24"],
});
const test_sg_x = new yandex.VpcSecurityGroup("test-sg-x", {
    networkId: fooVpcNetwork.id,
    ingresses: [{
        protocol: "ANY",
        description: "Allow incoming traffic from members of the same security group",
        fromPort: 0,
        toPort: 65535,
        v4CidrBlocks: ["0.0.0.0/0"],
    }],
    egresses: [{
        protocol: "ANY",
        description: "Allow outgoing traffic to members of the same security group",
        fromPort: 0,
        toPort: 65535,
        v4CidrBlocks: ["0.0.0.0/0"],
    }],
});
const fooMdbGreenplumCluster = new yandex.MdbGreenplumCluster("fooMdbGreenplumCluster", {
    description: "test greenplum cluster",
    environment: "PRESTABLE",
    networkId: fooVpcNetwork.id,
    zoneId: "ru-central1-a",
    subnetId: fooVpcSubnet.id,
    assignPublicIp: true,
    version: "6.17",
    masterHostCount: 2,
    segmentHostCount: 5,
    segmentInHost: 1,
    masterSubcluster: {
        resources: {
            resourcePresetId: "s2.micro",
            diskSize: 24,
            diskTypeId: "network-ssd",
        },
    },
    segmentSubcluster: {
        resources: {
            resourcePresetId: "s2.micro",
            diskSize: 24,
            diskTypeId: "network-ssd",
        },
    },
    access: {
        webSql: true,
    },
    userName: "admin_user",
    userPassword: "your_super_secret_password",
    securityGroupIds: [test_sg_x.id],
});
Coming soon!
Coming soon!
Create MdbGreenplumCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MdbGreenplumCluster(name: string, args: MdbGreenplumClusterArgs, opts?: CustomResourceOptions);@overload
def MdbGreenplumCluster(resource_name: str,
                        args: MdbGreenplumClusterArgs,
                        opts: Optional[ResourceOptions] = None)
@overload
def MdbGreenplumCluster(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        segment_subcluster: Optional[MdbGreenplumClusterSegmentSubclusterArgs] = None,
                        segment_host_count: Optional[int] = None,
                        zone: Optional[str] = None,
                        version: Optional[str] = None,
                        network_id: Optional[str] = None,
                        environment: Optional[str] = None,
                        assign_public_ip: Optional[bool] = None,
                        user_password: Optional[str] = None,
                        master_host_count: Optional[int] = None,
                        master_subcluster: Optional[MdbGreenplumClusterMasterSubclusterArgs] = None,
                        user_name: Optional[str] = None,
                        subnet_id: Optional[str] = None,
                        segment_in_host: Optional[int] = None,
                        folder_id: Optional[str] = None,
                        deletion_protection: Optional[bool] = None,
                        access: Optional[MdbGreenplumClusterAccessArgs] = None,
                        description: Optional[str] = None,
                        backup_window_start: Optional[MdbGreenplumClusterBackupWindowStartArgs] = None,
                        labels: Optional[Mapping[str, str]] = None,
                        security_group_ids: Optional[Sequence[str]] = None,
                        name: Optional[str] = None)func NewMdbGreenplumCluster(ctx *Context, name string, args MdbGreenplumClusterArgs, opts ...ResourceOption) (*MdbGreenplumCluster, error)public MdbGreenplumCluster(string name, MdbGreenplumClusterArgs args, CustomResourceOptions? opts = null)
public MdbGreenplumCluster(String name, MdbGreenplumClusterArgs args)
public MdbGreenplumCluster(String name, MdbGreenplumClusterArgs args, CustomResourceOptions options)
type: yandex:MdbGreenplumCluster
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 MdbGreenplumClusterArgs
- 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 MdbGreenplumClusterArgs
- 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 MdbGreenplumClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MdbGreenplumClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MdbGreenplumClusterArgs
- 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 mdbGreenplumClusterResource = new Yandex.MdbGreenplumCluster("mdbGreenplumClusterResource", new()
{
    SegmentSubcluster = new Yandex.Inputs.MdbGreenplumClusterSegmentSubclusterArgs
    {
        Resources = new Yandex.Inputs.MdbGreenplumClusterSegmentSubclusterResourcesArgs
        {
            DiskSize = 0,
            DiskTypeId = "string",
            ResourcePresetId = "string",
        },
    },
    SegmentHostCount = 0,
    Zone = "string",
    Version = "string",
    NetworkId = "string",
    Environment = "string",
    AssignPublicIp = false,
    UserPassword = "string",
    MasterHostCount = 0,
    MasterSubcluster = new Yandex.Inputs.MdbGreenplumClusterMasterSubclusterArgs
    {
        Resources = new Yandex.Inputs.MdbGreenplumClusterMasterSubclusterResourcesArgs
        {
            DiskSize = 0,
            DiskTypeId = "string",
            ResourcePresetId = "string",
        },
    },
    UserName = "string",
    SubnetId = "string",
    SegmentInHost = 0,
    FolderId = "string",
    DeletionProtection = false,
    Access = new Yandex.Inputs.MdbGreenplumClusterAccessArgs
    {
        DataLens = false,
        WebSql = false,
    },
    Description = "string",
    BackupWindowStart = new Yandex.Inputs.MdbGreenplumClusterBackupWindowStartArgs
    {
        Hours = 0,
        Minutes = 0,
    },
    Labels = 
    {
        { "string", "string" },
    },
    SecurityGroupIds = new[]
    {
        "string",
    },
    Name = "string",
});
example, err := yandex.NewMdbGreenplumCluster(ctx, "mdbGreenplumClusterResource", &yandex.MdbGreenplumClusterArgs{
	SegmentSubcluster: &yandex.MdbGreenplumClusterSegmentSubclusterArgs{
		Resources: &yandex.MdbGreenplumClusterSegmentSubclusterResourcesArgs{
			DiskSize:         pulumi.Int(0),
			DiskTypeId:       pulumi.String("string"),
			ResourcePresetId: pulumi.String("string"),
		},
	},
	SegmentHostCount: pulumi.Int(0),
	Zone:             pulumi.String("string"),
	Version:          pulumi.String("string"),
	NetworkId:        pulumi.String("string"),
	Environment:      pulumi.String("string"),
	AssignPublicIp:   pulumi.Bool(false),
	UserPassword:     pulumi.String("string"),
	MasterHostCount:  pulumi.Int(0),
	MasterSubcluster: &yandex.MdbGreenplumClusterMasterSubclusterArgs{
		Resources: &yandex.MdbGreenplumClusterMasterSubclusterResourcesArgs{
			DiskSize:         pulumi.Int(0),
			DiskTypeId:       pulumi.String("string"),
			ResourcePresetId: pulumi.String("string"),
		},
	},
	UserName:           pulumi.String("string"),
	SubnetId:           pulumi.String("string"),
	SegmentInHost:      pulumi.Int(0),
	FolderId:           pulumi.String("string"),
	DeletionProtection: pulumi.Bool(false),
	Access: &yandex.MdbGreenplumClusterAccessArgs{
		DataLens: pulumi.Bool(false),
		WebSql:   pulumi.Bool(false),
	},
	Description: pulumi.String("string"),
	BackupWindowStart: &yandex.MdbGreenplumClusterBackupWindowStartArgs{
		Hours:   pulumi.Int(0),
		Minutes: pulumi.Int(0),
	},
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	SecurityGroupIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
})
var mdbGreenplumClusterResource = new MdbGreenplumCluster("mdbGreenplumClusterResource", MdbGreenplumClusterArgs.builder()
    .segmentSubcluster(MdbGreenplumClusterSegmentSubclusterArgs.builder()
        .resources(MdbGreenplumClusterSegmentSubclusterResourcesArgs.builder()
            .diskSize(0)
            .diskTypeId("string")
            .resourcePresetId("string")
            .build())
        .build())
    .segmentHostCount(0)
    .zone("string")
    .version("string")
    .networkId("string")
    .environment("string")
    .assignPublicIp(false)
    .userPassword("string")
    .masterHostCount(0)
    .masterSubcluster(MdbGreenplumClusterMasterSubclusterArgs.builder()
        .resources(MdbGreenplumClusterMasterSubclusterResourcesArgs.builder()
            .diskSize(0)
            .diskTypeId("string")
            .resourcePresetId("string")
            .build())
        .build())
    .userName("string")
    .subnetId("string")
    .segmentInHost(0)
    .folderId("string")
    .deletionProtection(false)
    .access(MdbGreenplumClusterAccessArgs.builder()
        .dataLens(false)
        .webSql(false)
        .build())
    .description("string")
    .backupWindowStart(MdbGreenplumClusterBackupWindowStartArgs.builder()
        .hours(0)
        .minutes(0)
        .build())
    .labels(Map.of("string", "string"))
    .securityGroupIds("string")
    .name("string")
    .build());
mdb_greenplum_cluster_resource = yandex.MdbGreenplumCluster("mdbGreenplumClusterResource",
    segment_subcluster={
        "resources": {
            "disk_size": 0,
            "disk_type_id": "string",
            "resource_preset_id": "string",
        },
    },
    segment_host_count=0,
    zone="string",
    version="string",
    network_id="string",
    environment="string",
    assign_public_ip=False,
    user_password="string",
    master_host_count=0,
    master_subcluster={
        "resources": {
            "disk_size": 0,
            "disk_type_id": "string",
            "resource_preset_id": "string",
        },
    },
    user_name="string",
    subnet_id="string",
    segment_in_host=0,
    folder_id="string",
    deletion_protection=False,
    access={
        "data_lens": False,
        "web_sql": False,
    },
    description="string",
    backup_window_start={
        "hours": 0,
        "minutes": 0,
    },
    labels={
        "string": "string",
    },
    security_group_ids=["string"],
    name="string")
const mdbGreenplumClusterResource = new yandex.MdbGreenplumCluster("mdbGreenplumClusterResource", {
    segmentSubcluster: {
        resources: {
            diskSize: 0,
            diskTypeId: "string",
            resourcePresetId: "string",
        },
    },
    segmentHostCount: 0,
    zone: "string",
    version: "string",
    networkId: "string",
    environment: "string",
    assignPublicIp: false,
    userPassword: "string",
    masterHostCount: 0,
    masterSubcluster: {
        resources: {
            diskSize: 0,
            diskTypeId: "string",
            resourcePresetId: "string",
        },
    },
    userName: "string",
    subnetId: "string",
    segmentInHost: 0,
    folderId: "string",
    deletionProtection: false,
    access: {
        dataLens: false,
        webSql: false,
    },
    description: "string",
    backupWindowStart: {
        hours: 0,
        minutes: 0,
    },
    labels: {
        string: "string",
    },
    securityGroupIds: ["string"],
    name: "string",
});
type: yandex:MdbGreenplumCluster
properties:
    access:
        dataLens: false
        webSql: false
    assignPublicIp: false
    backupWindowStart:
        hours: 0
        minutes: 0
    deletionProtection: false
    description: string
    environment: string
    folderId: string
    labels:
        string: string
    masterHostCount: 0
    masterSubcluster:
        resources:
            diskSize: 0
            diskTypeId: string
            resourcePresetId: string
    name: string
    networkId: string
    securityGroupIds:
        - string
    segmentHostCount: 0
    segmentInHost: 0
    segmentSubcluster:
        resources:
            diskSize: 0
            diskTypeId: string
            resourcePresetId: string
    subnetId: string
    userName: string
    userPassword: string
    version: string
    zone: string
MdbGreenplumCluster 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 MdbGreenplumCluster resource accepts the following input properties:
- AssignPublic boolIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- Environment string
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- MasterHost intCount 
- Number of hosts in master subcluster (1 or 2).
- MasterSubcluster MdbGreenplum Cluster Master Subcluster 
- Settings for master subcluster. The structure is documented below.
- NetworkId string
- ID of the network, to which the Greenplum cluster uses.
- SegmentHost intCount 
- Number of hosts in segment subcluster (from 1 to 32).
- SegmentIn intHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- SegmentSubcluster MdbGreenplum Cluster Segment Subcluster 
- Settings for segment subcluster. The structure is documented below.
- SubnetId string
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- UserName string
- Greenplum cluster admin user name.
- UserPassword string
- Greenplum cluster admin password name.
- Version string
- Version of the Greenplum cluster. (6.17)
- Zone string
- The availability zone where the Greenplum hosts will be created.
- Access
MdbGreenplum Cluster Access 
- Access policy to the Greenplum cluster. The structure is documented below.
- BackupWindow MdbStart Greenplum Cluster Backup Window Start 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- DeletionProtection bool
- Inhibits deletion of the cluster. Can be either trueorfalse.
- Description string
- Description of the Greenplum cluster.
- FolderId string
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- Labels Dictionary<string, string>
- A set of key/value label pairs to assign to the Greenplum cluster.
- Name string
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- SecurityGroup List<string>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- AssignPublic boolIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- Environment string
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- MasterHost intCount 
- Number of hosts in master subcluster (1 or 2).
- MasterSubcluster MdbGreenplum Cluster Master Subcluster Args 
- Settings for master subcluster. The structure is documented below.
- NetworkId string
- ID of the network, to which the Greenplum cluster uses.
- SegmentHost intCount 
- Number of hosts in segment subcluster (from 1 to 32).
- SegmentIn intHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- SegmentSubcluster MdbGreenplum Cluster Segment Subcluster Args 
- Settings for segment subcluster. The structure is documented below.
- SubnetId string
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- UserName string
- Greenplum cluster admin user name.
- UserPassword string
- Greenplum cluster admin password name.
- Version string
- Version of the Greenplum cluster. (6.17)
- Zone string
- The availability zone where the Greenplum hosts will be created.
- Access
MdbGreenplum Cluster Access Args 
- Access policy to the Greenplum cluster. The structure is documented below.
- BackupWindow MdbStart Greenplum Cluster Backup Window Start Args 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- DeletionProtection bool
- Inhibits deletion of the cluster. Can be either trueorfalse.
- Description string
- Description of the Greenplum cluster.
- FolderId string
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- Labels map[string]string
- A set of key/value label pairs to assign to the Greenplum cluster.
- Name string
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- SecurityGroup []stringIds 
- A set of ids of security groups assigned to hosts of the cluster.
- assignPublic BooleanIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- environment String
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- masterHost IntegerCount 
- Number of hosts in master subcluster (1 or 2).
- masterSubcluster MdbGreenplum Cluster Master Subcluster 
- Settings for master subcluster. The structure is documented below.
- networkId String
- ID of the network, to which the Greenplum cluster uses.
- segmentHost IntegerCount 
- Number of hosts in segment subcluster (from 1 to 32).
- segmentIn IntegerHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- segmentSubcluster MdbGreenplum Cluster Segment Subcluster 
- Settings for segment subcluster. The structure is documented below.
- subnetId String
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- userName String
- Greenplum cluster admin user name.
- userPassword String
- Greenplum cluster admin password name.
- version String
- Version of the Greenplum cluster. (6.17)
- zone String
- The availability zone where the Greenplum hosts will be created.
- access
MdbGreenplum Cluster Access 
- Access policy to the Greenplum cluster. The structure is documented below.
- backupWindow MdbStart Greenplum Cluster Backup Window Start 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- deletionProtection Boolean
- Inhibits deletion of the cluster. Can be either trueorfalse.
- description String
- Description of the Greenplum cluster.
- folderId String
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- labels Map<String,String>
- A set of key/value label pairs to assign to the Greenplum cluster.
- name String
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- securityGroup List<String>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- assignPublic booleanIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- environment string
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- masterHost numberCount 
- Number of hosts in master subcluster (1 or 2).
- masterSubcluster MdbGreenplum Cluster Master Subcluster 
- Settings for master subcluster. The structure is documented below.
- networkId string
- ID of the network, to which the Greenplum cluster uses.
- segmentHost numberCount 
- Number of hosts in segment subcluster (from 1 to 32).
- segmentIn numberHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- segmentSubcluster MdbGreenplum Cluster Segment Subcluster 
- Settings for segment subcluster. The structure is documented below.
- subnetId string
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- userName string
- Greenplum cluster admin user name.
- userPassword string
- Greenplum cluster admin password name.
- version string
- Version of the Greenplum cluster. (6.17)
- zone string
- The availability zone where the Greenplum hosts will be created.
- access
MdbGreenplum Cluster Access 
- Access policy to the Greenplum cluster. The structure is documented below.
- backupWindow MdbStart Greenplum Cluster Backup Window Start 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- deletionProtection boolean
- Inhibits deletion of the cluster. Can be either trueorfalse.
- description string
- Description of the Greenplum cluster.
- folderId string
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- labels {[key: string]: string}
- A set of key/value label pairs to assign to the Greenplum cluster.
- name string
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- securityGroup string[]Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- assign_public_ boolip 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- environment str
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- master_host_ intcount 
- Number of hosts in master subcluster (1 or 2).
- master_subcluster MdbGreenplum Cluster Master Subcluster Args 
- Settings for master subcluster. The structure is documented below.
- network_id str
- ID of the network, to which the Greenplum cluster uses.
- segment_host_ intcount 
- Number of hosts in segment subcluster (from 1 to 32).
- segment_in_ inthost 
- Number of segments on segment host (not more then 1 + RAM/8).
- segment_subcluster MdbGreenplum Cluster Segment Subcluster Args 
- Settings for segment subcluster. The structure is documented below.
- subnet_id str
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- user_name str
- Greenplum cluster admin user name.
- user_password str
- Greenplum cluster admin password name.
- version str
- Version of the Greenplum cluster. (6.17)
- zone str
- The availability zone where the Greenplum hosts will be created.
- access
MdbGreenplum Cluster Access Args 
- Access policy to the Greenplum cluster. The structure is documented below.
- backup_window_ Mdbstart Greenplum Cluster Backup Window Start Args 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- deletion_protection bool
- Inhibits deletion of the cluster. Can be either trueorfalse.
- description str
- Description of the Greenplum cluster.
- folder_id str
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- labels Mapping[str, str]
- A set of key/value label pairs to assign to the Greenplum cluster.
- name str
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- security_group_ Sequence[str]ids 
- A set of ids of security groups assigned to hosts of the cluster.
- assignPublic BooleanIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- environment String
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- masterHost NumberCount 
- Number of hosts in master subcluster (1 or 2).
- masterSubcluster Property Map
- Settings for master subcluster. The structure is documented below.
- networkId String
- ID of the network, to which the Greenplum cluster uses.
- segmentHost NumberCount 
- Number of hosts in segment subcluster (from 1 to 32).
- segmentIn NumberHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- segmentSubcluster Property Map
- Settings for segment subcluster. The structure is documented below.
- subnetId String
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- userName String
- Greenplum cluster admin user name.
- userPassword String
- Greenplum cluster admin password name.
- version String
- Version of the Greenplum cluster. (6.17)
- zone String
- The availability zone where the Greenplum hosts will be created.
- access Property Map
- Access policy to the Greenplum cluster. The structure is documented below.
- backupWindow Property MapStart 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- deletionProtection Boolean
- Inhibits deletion of the cluster. Can be either trueorfalse.
- description String
- Description of the Greenplum cluster.
- folderId String
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- labels Map<String>
- A set of key/value label pairs to assign to the Greenplum cluster.
- name String
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- securityGroup List<String>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
Outputs
All input properties are implicitly available as output properties. Additionally, the MdbGreenplumCluster resource produces the following output properties:
- CreatedAt string
- Creation timestamp of the cluster.
- Health string
- Aggregated health of the cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- MasterHosts List<MdbGreenplum Cluster Master Host> 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- SegmentHosts List<MdbGreenplum Cluster Segment Host> 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- Status string
- Status of the cluster.
- CreatedAt string
- Creation timestamp of the cluster.
- Health string
- Aggregated health of the cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- MasterHosts []MdbGreenplum Cluster Master Host 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- SegmentHosts []MdbGreenplum Cluster Segment Host 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- Status string
- Status of the cluster.
- createdAt String
- Creation timestamp of the cluster.
- health String
- Aggregated health of the cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- masterHosts List<MdbGreenplum Cluster Master Host> 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- segmentHosts List<MdbGreenplum Cluster Segment Host> 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- status String
- Status of the cluster.
- createdAt string
- Creation timestamp of the cluster.
- health string
- Aggregated health of the cluster.
- id string
- The provider-assigned unique ID for this managed resource.
- masterHosts MdbGreenplum Cluster Master Host[] 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- segmentHosts MdbGreenplum Cluster Segment Host[] 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- status string
- Status of the cluster.
- created_at str
- Creation timestamp of the cluster.
- health str
- Aggregated health of the cluster.
- id str
- The provider-assigned unique ID for this managed resource.
- master_hosts Sequence[MdbGreenplum Cluster Master Host] 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- segment_hosts Sequence[MdbGreenplum Cluster Segment Host] 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- status str
- Status of the cluster.
- createdAt String
- Creation timestamp of the cluster.
- health String
- Aggregated health of the cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- masterHosts List<Property Map>
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- segmentHosts List<Property Map>
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- status String
- Status of the cluster.
Look up Existing MdbGreenplumCluster Resource
Get an existing MdbGreenplumCluster 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?: MdbGreenplumClusterState, opts?: CustomResourceOptions): MdbGreenplumCluster@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access: Optional[MdbGreenplumClusterAccessArgs] = None,
        assign_public_ip: Optional[bool] = None,
        backup_window_start: Optional[MdbGreenplumClusterBackupWindowStartArgs] = None,
        created_at: Optional[str] = None,
        deletion_protection: Optional[bool] = None,
        description: Optional[str] = None,
        environment: Optional[str] = None,
        folder_id: Optional[str] = None,
        health: Optional[str] = None,
        labels: Optional[Mapping[str, str]] = None,
        master_host_count: Optional[int] = None,
        master_hosts: Optional[Sequence[MdbGreenplumClusterMasterHostArgs]] = None,
        master_subcluster: Optional[MdbGreenplumClusterMasterSubclusterArgs] = None,
        name: Optional[str] = None,
        network_id: Optional[str] = None,
        security_group_ids: Optional[Sequence[str]] = None,
        segment_host_count: Optional[int] = None,
        segment_hosts: Optional[Sequence[MdbGreenplumClusterSegmentHostArgs]] = None,
        segment_in_host: Optional[int] = None,
        segment_subcluster: Optional[MdbGreenplumClusterSegmentSubclusterArgs] = None,
        status: Optional[str] = None,
        subnet_id: Optional[str] = None,
        user_name: Optional[str] = None,
        user_password: Optional[str] = None,
        version: Optional[str] = None,
        zone: Optional[str] = None) -> MdbGreenplumClusterfunc GetMdbGreenplumCluster(ctx *Context, name string, id IDInput, state *MdbGreenplumClusterState, opts ...ResourceOption) (*MdbGreenplumCluster, error)public static MdbGreenplumCluster Get(string name, Input<string> id, MdbGreenplumClusterState? state, CustomResourceOptions? opts = null)public static MdbGreenplumCluster get(String name, Output<String> id, MdbGreenplumClusterState state, CustomResourceOptions options)resources:  _:    type: yandex:MdbGreenplumCluster    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.
- Access
MdbGreenplum Cluster Access 
- Access policy to the Greenplum cluster. The structure is documented below.
- AssignPublic boolIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- BackupWindow MdbStart Greenplum Cluster Backup Window Start 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- CreatedAt string
- Creation timestamp of the cluster.
- DeletionProtection bool
- Inhibits deletion of the cluster. Can be either trueorfalse.
- Description string
- Description of the Greenplum cluster.
- Environment string
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- FolderId string
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- Health string
- Aggregated health of the cluster.
- Labels Dictionary<string, string>
- A set of key/value label pairs to assign to the Greenplum cluster.
- MasterHost intCount 
- Number of hosts in master subcluster (1 or 2).
- MasterHosts List<MdbGreenplum Cluster Master Host> 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- MasterSubcluster MdbGreenplum Cluster Master Subcluster 
- Settings for master subcluster. The structure is documented below.
- Name string
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- NetworkId string
- ID of the network, to which the Greenplum cluster uses.
- SecurityGroup List<string>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- SegmentHost intCount 
- Number of hosts in segment subcluster (from 1 to 32).
- SegmentHosts List<MdbGreenplum Cluster Segment Host> 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- SegmentIn intHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- SegmentSubcluster MdbGreenplum Cluster Segment Subcluster 
- Settings for segment subcluster. The structure is documented below.
- Status string
- Status of the cluster.
- SubnetId string
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- UserName string
- Greenplum cluster admin user name.
- UserPassword string
- Greenplum cluster admin password name.
- Version string
- Version of the Greenplum cluster. (6.17)
- Zone string
- The availability zone where the Greenplum hosts will be created.
- Access
MdbGreenplum Cluster Access Args 
- Access policy to the Greenplum cluster. The structure is documented below.
- AssignPublic boolIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- BackupWindow MdbStart Greenplum Cluster Backup Window Start Args 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- CreatedAt string
- Creation timestamp of the cluster.
- DeletionProtection bool
- Inhibits deletion of the cluster. Can be either trueorfalse.
- Description string
- Description of the Greenplum cluster.
- Environment string
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- FolderId string
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- Health string
- Aggregated health of the cluster.
- Labels map[string]string
- A set of key/value label pairs to assign to the Greenplum cluster.
- MasterHost intCount 
- Number of hosts in master subcluster (1 or 2).
- MasterHosts []MdbGreenplum Cluster Master Host Args 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- MasterSubcluster MdbGreenplum Cluster Master Subcluster Args 
- Settings for master subcluster. The structure is documented below.
- Name string
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- NetworkId string
- ID of the network, to which the Greenplum cluster uses.
- SecurityGroup []stringIds 
- A set of ids of security groups assigned to hosts of the cluster.
- SegmentHost intCount 
- Number of hosts in segment subcluster (from 1 to 32).
- SegmentHosts []MdbGreenplum Cluster Segment Host Args 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- SegmentIn intHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- SegmentSubcluster MdbGreenplum Cluster Segment Subcluster Args 
- Settings for segment subcluster. The structure is documented below.
- Status string
- Status of the cluster.
- SubnetId string
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- UserName string
- Greenplum cluster admin user name.
- UserPassword string
- Greenplum cluster admin password name.
- Version string
- Version of the Greenplum cluster. (6.17)
- Zone string
- The availability zone where the Greenplum hosts will be created.
- access
MdbGreenplum Cluster Access 
- Access policy to the Greenplum cluster. The structure is documented below.
- assignPublic BooleanIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- backupWindow MdbStart Greenplum Cluster Backup Window Start 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- createdAt String
- Creation timestamp of the cluster.
- deletionProtection Boolean
- Inhibits deletion of the cluster. Can be either trueorfalse.
- description String
- Description of the Greenplum cluster.
- environment String
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- folderId String
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- health String
- Aggregated health of the cluster.
- labels Map<String,String>
- A set of key/value label pairs to assign to the Greenplum cluster.
- masterHost IntegerCount 
- Number of hosts in master subcluster (1 or 2).
- masterHosts List<MdbGreenplum Cluster Master Host> 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- masterSubcluster MdbGreenplum Cluster Master Subcluster 
- Settings for master subcluster. The structure is documented below.
- name String
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- networkId String
- ID of the network, to which the Greenplum cluster uses.
- securityGroup List<String>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- segmentHost IntegerCount 
- Number of hosts in segment subcluster (from 1 to 32).
- segmentHosts List<MdbGreenplum Cluster Segment Host> 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- segmentIn IntegerHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- segmentSubcluster MdbGreenplum Cluster Segment Subcluster 
- Settings for segment subcluster. The structure is documented below.
- status String
- Status of the cluster.
- subnetId String
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- userName String
- Greenplum cluster admin user name.
- userPassword String
- Greenplum cluster admin password name.
- version String
- Version of the Greenplum cluster. (6.17)
- zone String
- The availability zone where the Greenplum hosts will be created.
- access
MdbGreenplum Cluster Access 
- Access policy to the Greenplum cluster. The structure is documented below.
- assignPublic booleanIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- backupWindow MdbStart Greenplum Cluster Backup Window Start 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- createdAt string
- Creation timestamp of the cluster.
- deletionProtection boolean
- Inhibits deletion of the cluster. Can be either trueorfalse.
- description string
- Description of the Greenplum cluster.
- environment string
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- folderId string
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- health string
- Aggregated health of the cluster.
- labels {[key: string]: string}
- A set of key/value label pairs to assign to the Greenplum cluster.
- masterHost numberCount 
- Number of hosts in master subcluster (1 or 2).
- masterHosts MdbGreenplum Cluster Master Host[] 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- masterSubcluster MdbGreenplum Cluster Master Subcluster 
- Settings for master subcluster. The structure is documented below.
- name string
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- networkId string
- ID of the network, to which the Greenplum cluster uses.
- securityGroup string[]Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- segmentHost numberCount 
- Number of hosts in segment subcluster (from 1 to 32).
- segmentHosts MdbGreenplum Cluster Segment Host[] 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- segmentIn numberHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- segmentSubcluster MdbGreenplum Cluster Segment Subcluster 
- Settings for segment subcluster. The structure is documented below.
- status string
- Status of the cluster.
- subnetId string
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- userName string
- Greenplum cluster admin user name.
- userPassword string
- Greenplum cluster admin password name.
- version string
- Version of the Greenplum cluster. (6.17)
- zone string
- The availability zone where the Greenplum hosts will be created.
- access
MdbGreenplum Cluster Access Args 
- Access policy to the Greenplum cluster. The structure is documented below.
- assign_public_ boolip 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- backup_window_ Mdbstart Greenplum Cluster Backup Window Start Args 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- created_at str
- Creation timestamp of the cluster.
- deletion_protection bool
- Inhibits deletion of the cluster. Can be either trueorfalse.
- description str
- Description of the Greenplum cluster.
- environment str
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- folder_id str
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- health str
- Aggregated health of the cluster.
- labels Mapping[str, str]
- A set of key/value label pairs to assign to the Greenplum cluster.
- master_host_ intcount 
- Number of hosts in master subcluster (1 or 2).
- master_hosts Sequence[MdbGreenplum Cluster Master Host Args] 
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- master_subcluster MdbGreenplum Cluster Master Subcluster Args 
- Settings for master subcluster. The structure is documented below.
- name str
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- network_id str
- ID of the network, to which the Greenplum cluster uses.
- security_group_ Sequence[str]ids 
- A set of ids of security groups assigned to hosts of the cluster.
- segment_host_ intcount 
- Number of hosts in segment subcluster (from 1 to 32).
- segment_hosts Sequence[MdbGreenplum Cluster Segment Host Args] 
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- segment_in_ inthost 
- Number of segments on segment host (not more then 1 + RAM/8).
- segment_subcluster MdbGreenplum Cluster Segment Subcluster Args 
- Settings for segment subcluster. The structure is documented below.
- status str
- Status of the cluster.
- subnet_id str
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- user_name str
- Greenplum cluster admin user name.
- user_password str
- Greenplum cluster admin password name.
- version str
- Version of the Greenplum cluster. (6.17)
- zone str
- The availability zone where the Greenplum hosts will be created.
- access Property Map
- Access policy to the Greenplum cluster. The structure is documented below.
- assignPublic BooleanIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- backupWindow Property MapStart 
- Time to start the daily backup, in the UTC timezone. The structure is documented below.
- createdAt String
- Creation timestamp of the cluster.
- deletionProtection Boolean
- Inhibits deletion of the cluster. Can be either trueorfalse.
- description String
- Description of the Greenplum cluster.
- environment String
- Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
- folderId String
- The ID of the folder that the resource belongs to. If it is not provided, the default provider folder is used.
- health String
- Aggregated health of the cluster.
- labels Map<String>
- A set of key/value label pairs to assign to the Greenplum cluster.
- masterHost NumberCount 
- Number of hosts in master subcluster (1 or 2).
- masterHosts List<Property Map>
- (Computed) Info about hosts in master subcluster. The structure is documented below.
- masterSubcluster Property Map
- Settings for master subcluster. The structure is documented below.
- name String
- Name of the Greenplum cluster. Provided by the client when the cluster is created.
- networkId String
- ID of the network, to which the Greenplum cluster uses.
- securityGroup List<String>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- segmentHost NumberCount 
- Number of hosts in segment subcluster (from 1 to 32).
- segmentHosts List<Property Map>
- (Computed) Info about hosts in segment subcluster. The structure is documented below.
- segmentIn NumberHost 
- Number of segments on segment host (not more then 1 + RAM/8).
- segmentSubcluster Property Map
- Settings for segment subcluster. The structure is documented below.
- status String
- Status of the cluster.
- subnetId String
- The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
- userName String
- Greenplum cluster admin user name.
- userPassword String
- Greenplum cluster admin password name.
- version String
- Version of the Greenplum cluster. (6.17)
- zone String
- The availability zone where the Greenplum hosts will be created.
Supporting Types
MdbGreenplumClusterAccess, MdbGreenplumClusterAccessArgs        
- DataLens bool
- Allow access for Yandex DataLens.
- WebSql bool
- Allows access for SQL queries in the management console
- DataLens bool
- Allow access for Yandex DataLens.
- WebSql bool
- Allows access for SQL queries in the management console
- dataLens Boolean
- Allow access for Yandex DataLens.
- webSql Boolean
- Allows access for SQL queries in the management console
- dataLens boolean
- Allow access for Yandex DataLens.
- webSql boolean
- Allows access for SQL queries in the management console
- data_lens bool
- Allow access for Yandex DataLens.
- web_sql bool
- Allows access for SQL queries in the management console
- dataLens Boolean
- Allow access for Yandex DataLens.
- webSql Boolean
- Allows access for SQL queries in the management console
MdbGreenplumClusterBackupWindowStart, MdbGreenplumClusterBackupWindowStartArgs            
MdbGreenplumClusterMasterHost, MdbGreenplumClusterMasterHostArgs          
- AssignPublic boolIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- Fqdn string
- (Computed) The fully qualified domain name of the host.
- AssignPublic boolIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- Fqdn string
- (Computed) The fully qualified domain name of the host.
- assignPublic BooleanIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- fqdn String
- (Computed) The fully qualified domain name of the host.
- assignPublic booleanIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- fqdn string
- (Computed) The fully qualified domain name of the host.
- assign_public_ boolip 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- fqdn str
- (Computed) The fully qualified domain name of the host.
- assignPublic BooleanIp 
- Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
- fqdn String
- (Computed) The fully qualified domain name of the host.
MdbGreenplumClusterMasterSubcluster, MdbGreenplumClusterMasterSubclusterArgs          
- Resources
MdbGreenplum Cluster Master Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- Resources
MdbGreenplum Cluster Master Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- resources
MdbGreenplum Cluster Master Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- resources
MdbGreenplum Cluster Master Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- resources
MdbGreenplum Cluster Master Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- resources Property Map
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
MdbGreenplumClusterMasterSubclusterResources, MdbGreenplumClusterMasterSubclusterResourcesArgs            
- DiskSize int
- DiskType stringId 
- ResourcePreset stringId 
- DiskSize int
- DiskType stringId 
- ResourcePreset stringId 
- diskSize Integer
- diskType StringId 
- resourcePreset StringId 
- diskSize number
- diskType stringId 
- resourcePreset stringId 
- disk_size int
- disk_type_ strid 
- resource_preset_ strid 
- diskSize Number
- diskType StringId 
- resourcePreset StringId 
MdbGreenplumClusterSegmentHost, MdbGreenplumClusterSegmentHostArgs          
- Fqdn string
- (Computed) The fully qualified domain name of the host.
- Fqdn string
- (Computed) The fully qualified domain name of the host.
- fqdn String
- (Computed) The fully qualified domain name of the host.
- fqdn string
- (Computed) The fully qualified domain name of the host.
- fqdn str
- (Computed) The fully qualified domain name of the host.
- fqdn String
- (Computed) The fully qualified domain name of the host.
MdbGreenplumClusterSegmentSubcluster, MdbGreenplumClusterSegmentSubclusterArgs          
- Resources
MdbGreenplum Cluster Segment Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- Resources
MdbGreenplum Cluster Segment Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- resources
MdbGreenplum Cluster Segment Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- resources
MdbGreenplum Cluster Segment Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- resources
MdbGreenplum Cluster Segment Subcluster Resources 
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
- resources Property Map
- Resources allocated to hosts for segment subcluster of the Greenplum cluster. The structure is documented below.
MdbGreenplumClusterSegmentSubclusterResources, MdbGreenplumClusterSegmentSubclusterResourcesArgs            
- DiskSize int
- DiskType stringId 
- ResourcePreset stringId 
- DiskSize int
- DiskType stringId 
- ResourcePreset stringId 
- diskSize Integer
- diskType StringId 
- resourcePreset StringId 
- diskSize number
- diskType stringId 
- resourcePreset stringId 
- disk_size int
- disk_type_ strid 
- resource_preset_ strid 
- diskSize Number
- diskType StringId 
- resourcePreset StringId 
Import
A cluster can be imported using the id of the resource, e.g.
 $ pulumi import yandex:index/mdbGreenplumCluster:MdbGreenplumCluster foo cluster_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Yandex pulumi/pulumi-yandex
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the yandexTerraform Provider.