1. Packages
  2. Yandex
  3. API Docs
  4. getMdbElasticSearchCluster
Yandex v0.13.0 published on Tuesday, Feb 22, 2022 by Pulumi

yandex.getMdbElasticSearchCluster

Explore with Pulumi AI

Get information about a Yandex Managed Elasticsearch cluster. For more information, see the official documentation.

Example Usage

using Pulumi;
using Yandex = Pulumi.Yandex;

class MyStack : Stack
{
    public MyStack()
    {
        var foo = Output.Create(Yandex.GetMdbElasticSearchCluster.InvokeAsync(new Yandex.GetMdbElasticSearchClusterArgs
        {
            Name = "test",
        }));
        this.NetworkId = foo.Apply(foo => foo.NetworkId);
    }

    [Output("networkId")]
    public Output<string> NetworkId { get; set; }
}
Copy
package main

import (
	"github.com/pulumi/pulumi-yandex/sdk/go/yandex"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		opt0 := "test"
		foo, err := yandex.LookupMdbElasticSearchCluster(ctx, &GetMdbElasticSearchClusterArgs{
			Name: &opt0,
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("networkId", foo.NetworkId)
		return nil
	})
}
Copy

Coming soon!

import * as pulumi from "@pulumi/pulumi";
import * as yandex from "@pulumi/yandex";

const foo = pulumi.output(yandex.getMdbElasticSearchCluster({
    name: "test",
}));

export const networkId = foo.networkId;
Copy
import pulumi
import pulumi_yandex as yandex

foo = yandex.get_mdb_elastic_search_cluster(name="test")
pulumi.export("networkId", foo.network_id)
Copy

Coming soon!

Using getMdbElasticSearchCluster

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getMdbElasticSearchCluster(args: GetMdbElasticSearchClusterArgs, opts?: InvokeOptions): Promise<GetMdbElasticSearchClusterResult>
function getMdbElasticSearchClusterOutput(args: GetMdbElasticSearchClusterOutputArgs, opts?: InvokeOptions): Output<GetMdbElasticSearchClusterResult>
Copy
def get_mdb_elastic_search_cluster(cluster_id: Optional[str] = None,
                                   deletion_protection: Optional[bool] = None,
                                   description: Optional[str] = None,
                                   folder_id: Optional[str] = None,
                                   labels: Optional[Mapping[str, str]] = None,
                                   name: Optional[str] = None,
                                   security_group_ids: Optional[Sequence[str]] = None,
                                   service_account_id: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetMdbElasticSearchClusterResult
def get_mdb_elastic_search_cluster_output(cluster_id: Optional[pulumi.Input[str]] = None,
                                   deletion_protection: Optional[pulumi.Input[bool]] = None,
                                   description: Optional[pulumi.Input[str]] = None,
                                   folder_id: Optional[pulumi.Input[str]] = None,
                                   labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                                   name: Optional[pulumi.Input[str]] = None,
                                   security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                   service_account_id: Optional[pulumi.Input[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetMdbElasticSearchClusterResult]
Copy
func LookupMdbElasticSearchCluster(ctx *Context, args *LookupMdbElasticSearchClusterArgs, opts ...InvokeOption) (*LookupMdbElasticSearchClusterResult, error)
func LookupMdbElasticSearchClusterOutput(ctx *Context, args *LookupMdbElasticSearchClusterOutputArgs, opts ...InvokeOption) LookupMdbElasticSearchClusterResultOutput
Copy

> Note: This function is named LookupMdbElasticSearchCluster in the Go SDK.

public static class GetMdbElasticSearchCluster 
{
    public static Task<GetMdbElasticSearchClusterResult> InvokeAsync(GetMdbElasticSearchClusterArgs args, InvokeOptions? opts = null)
    public static Output<GetMdbElasticSearchClusterResult> Invoke(GetMdbElasticSearchClusterInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetMdbElasticSearchClusterResult> getMdbElasticSearchCluster(GetMdbElasticSearchClusterArgs args, InvokeOptions options)
public static Output<GetMdbElasticSearchClusterResult> getMdbElasticSearchCluster(GetMdbElasticSearchClusterArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: yandex:index/getMdbElasticSearchCluster:getMdbElasticSearchCluster
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ClusterId string
The ID of the Elasticsearch cluster.
DeletionProtection bool
Description string
Description of the Elasticsearch 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 Elasticsearch cluster.
Name string
The name of the Elasticsearch cluster.
SecurityGroupIds List<string>
A set of ids of security groups assigned to hosts of the cluster.
ServiceAccountId string
ID of the service account authorized for this cluster.
ClusterId string
The ID of the Elasticsearch cluster.
DeletionProtection bool
Description string
Description of the Elasticsearch 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 Elasticsearch cluster.
Name string
The name of the Elasticsearch cluster.
SecurityGroupIds []string
A set of ids of security groups assigned to hosts of the cluster.
ServiceAccountId string
ID of the service account authorized for this cluster.
clusterId String
The ID of the Elasticsearch cluster.
deletionProtection Boolean
description String
Description of the Elasticsearch 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 Elasticsearch cluster.
name String
The name of the Elasticsearch cluster.
securityGroupIds List<String>
A set of ids of security groups assigned to hosts of the cluster.
serviceAccountId String
ID of the service account authorized for this cluster.
clusterId string
The ID of the Elasticsearch cluster.
deletionProtection boolean
description string
Description of the Elasticsearch 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 Elasticsearch cluster.
name string
The name of the Elasticsearch cluster.
securityGroupIds string[]
A set of ids of security groups assigned to hosts of the cluster.
serviceAccountId string
ID of the service account authorized for this cluster.
cluster_id str
The ID of the Elasticsearch cluster.
deletion_protection bool
description str
Description of the Elasticsearch 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 Elasticsearch cluster.
name str
The name of the Elasticsearch cluster.
security_group_ids Sequence[str]
A set of ids of security groups assigned to hosts of the cluster.
service_account_id str
ID of the service account authorized for this cluster.
clusterId String
The ID of the Elasticsearch cluster.
deletionProtection Boolean
description String
Description of the Elasticsearch 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 Elasticsearch cluster.
name String
The name of the Elasticsearch cluster.
securityGroupIds List<String>
A set of ids of security groups assigned to hosts of the cluster.
serviceAccountId String
ID of the service account authorized for this cluster.

getMdbElasticSearchCluster Result

The following output properties are available:

ClusterId string
Configs List<GetMdbElasticSearchClusterConfig>
Configuration of the Elasticsearch cluster. The structure is documented below.
CreatedAt string
Creation timestamp of the key.
DeletionProtection bool
Description string
Description of the Elasticsearch cluster.
Environment string
Deployment environment of the Elasticsearch cluster.
FolderId string
Health string
Aggregated health of the cluster.
Hosts List<GetMdbElasticSearchClusterHost>
A host of the Elasticsearch cluster. The structure is documented below.
Id string
The provider-assigned unique ID for this managed resource.
Labels Dictionary<string, string>
A set of key/value label pairs to assign to the Elasticsearch cluster.
MaintenanceWindows List<GetMdbElasticSearchClusterMaintenanceWindow>
Name string
NetworkId string
ID of the network, to which the Elasticsearch cluster belongs.
SecurityGroupIds List<string>
A set of ids of security groups assigned to hosts of the cluster.
ServiceAccountId string
ID of the service account authorized for this cluster.
Status string
Status of the cluster.
ClusterId string
Configs []GetMdbElasticSearchClusterConfig
Configuration of the Elasticsearch cluster. The structure is documented below.
CreatedAt string
Creation timestamp of the key.
DeletionProtection bool
Description string
Description of the Elasticsearch cluster.
Environment string
Deployment environment of the Elasticsearch cluster.
FolderId string
Health string
Aggregated health of the cluster.
Hosts []GetMdbElasticSearchClusterHost
A host of the Elasticsearch cluster. The structure is documented below.
Id string
The provider-assigned unique ID for this managed resource.
Labels map[string]string
A set of key/value label pairs to assign to the Elasticsearch cluster.
MaintenanceWindows []GetMdbElasticSearchClusterMaintenanceWindow
Name string
NetworkId string
ID of the network, to which the Elasticsearch cluster belongs.
SecurityGroupIds []string
A set of ids of security groups assigned to hosts of the cluster.
ServiceAccountId string
ID of the service account authorized for this cluster.
Status string
Status of the cluster.
clusterId String
configs List<GetMdbElasticSearchClusterConfig>
Configuration of the Elasticsearch cluster. The structure is documented below.
createdAt String
Creation timestamp of the key.
deletionProtection Boolean
description String
Description of the Elasticsearch cluster.
environment String
Deployment environment of the Elasticsearch cluster.
folderId String
health String
Aggregated health of the cluster.
hosts List<GetMdbElasticSearchClusterHost>
A host of the Elasticsearch cluster. The structure is documented below.
id String
The provider-assigned unique ID for this managed resource.
labels Map<String,String>
A set of key/value label pairs to assign to the Elasticsearch cluster.
maintenanceWindows List<GetMdbElasticSearchClusterMaintenanceWindow>
name String
networkId String
ID of the network, to which the Elasticsearch cluster belongs.
securityGroupIds List<String>
A set of ids of security groups assigned to hosts of the cluster.
serviceAccountId String
ID of the service account authorized for this cluster.
status String
Status of the cluster.
clusterId string
configs GetMdbElasticSearchClusterConfig[]
Configuration of the Elasticsearch cluster. The structure is documented below.
createdAt string
Creation timestamp of the key.
deletionProtection boolean
description string
Description of the Elasticsearch cluster.
environment string
Deployment environment of the Elasticsearch cluster.
folderId string
health string
Aggregated health of the cluster.
hosts GetMdbElasticSearchClusterHost[]
A host of the Elasticsearch cluster. The structure is documented below.
id string
The provider-assigned unique ID for this managed resource.
labels {[key: string]: string}
A set of key/value label pairs to assign to the Elasticsearch cluster.
maintenanceWindows GetMdbElasticSearchClusterMaintenanceWindow[]
name string
networkId string
ID of the network, to which the Elasticsearch cluster belongs.
securityGroupIds string[]
A set of ids of security groups assigned to hosts of the cluster.
serviceAccountId string
ID of the service account authorized for this cluster.
status string
Status of the cluster.
cluster_id str
configs Sequence[GetMdbElasticSearchClusterConfig]
Configuration of the Elasticsearch cluster. The structure is documented below.
created_at str
Creation timestamp of the key.
deletion_protection bool
description str
Description of the Elasticsearch cluster.
environment str
Deployment environment of the Elasticsearch cluster.
folder_id str
health str
Aggregated health of the cluster.
hosts Sequence[GetMdbElasticSearchClusterHost]
A host of the Elasticsearch cluster. The structure is documented below.
id str
The provider-assigned unique ID for this managed resource.
labels Mapping[str, str]
A set of key/value label pairs to assign to the Elasticsearch cluster.
maintenance_windows Sequence[GetMdbElasticSearchClusterMaintenanceWindow]
name str
network_id str
ID of the network, to which the Elasticsearch cluster belongs.
security_group_ids Sequence[str]
A set of ids of security groups assigned to hosts of the cluster.
service_account_id str
ID of the service account authorized for this cluster.
status str
Status of the cluster.
clusterId String
configs List<Property Map>
Configuration of the Elasticsearch cluster. The structure is documented below.
createdAt String
Creation timestamp of the key.
deletionProtection Boolean
description String
Description of the Elasticsearch cluster.
environment String
Deployment environment of the Elasticsearch cluster.
folderId String
health String
Aggregated health of the cluster.
hosts List<Property Map>
A host of the Elasticsearch cluster. The structure is documented below.
id String
The provider-assigned unique ID for this managed resource.
labels Map<String>
A set of key/value label pairs to assign to the Elasticsearch cluster.
maintenanceWindows List<Property Map>
name String
networkId String
ID of the network, to which the Elasticsearch cluster belongs.
securityGroupIds List<String>
A set of ids of security groups assigned to hosts of the cluster.
serviceAccountId String
ID of the service account authorized for this cluster.
status String
Status of the cluster.

Supporting Types

GetMdbElasticSearchClusterConfig

AdminPassword This property is required. string
DataNodes This property is required. List<GetMdbElasticSearchClusterConfigDataNode>
Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
Edition This property is required. string
Edition of Elasticsearch. For more information, see the official documentation.
MasterNode This property is required. GetMdbElasticSearchClusterConfigMasterNode
Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
Plugins This property is required. List<string>
A set of requested Elasticsearch plugins.
Version This property is required. string
Version of Elasticsearch.
AdminPassword This property is required. string
DataNodes This property is required. []GetMdbElasticSearchClusterConfigDataNode
Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
Edition This property is required. string
Edition of Elasticsearch. For more information, see the official documentation.
MasterNode This property is required. GetMdbElasticSearchClusterConfigMasterNode
Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
Plugins This property is required. []string
A set of requested Elasticsearch plugins.
Version This property is required. string
Version of Elasticsearch.
adminPassword This property is required. String
dataNodes This property is required. List<GetMdbElasticSearchClusterConfigDataNode>
Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
edition This property is required. String
Edition of Elasticsearch. For more information, see the official documentation.
masterNode This property is required. GetMdbElasticSearchClusterConfigMasterNode
Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
plugins This property is required. List<String>
A set of requested Elasticsearch plugins.
version This property is required. String
Version of Elasticsearch.
adminPassword This property is required. string
dataNodes This property is required. GetMdbElasticSearchClusterConfigDataNode[]
Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
edition This property is required. string
Edition of Elasticsearch. For more information, see the official documentation.
masterNode This property is required. GetMdbElasticSearchClusterConfigMasterNode
Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
plugins This property is required. string[]
A set of requested Elasticsearch plugins.
version This property is required. string
Version of Elasticsearch.
admin_password This property is required. str
data_nodes This property is required. Sequence[GetMdbElasticSearchClusterConfigDataNode]
Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
edition This property is required. str
Edition of Elasticsearch. For more information, see the official documentation.
master_node This property is required. GetMdbElasticSearchClusterConfigMasterNode
Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
plugins This property is required. Sequence[str]
A set of requested Elasticsearch plugins.
version This property is required. str
Version of Elasticsearch.
adminPassword This property is required. String
dataNodes This property is required. List<Property Map>
Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
edition This property is required. String
Edition of Elasticsearch. For more information, see the official documentation.
masterNode This property is required. Property Map
Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
plugins This property is required. List<String>
A set of requested Elasticsearch plugins.
version This property is required. String
Version of Elasticsearch.

GetMdbElasticSearchClusterConfigDataNode

Resources This property is required. List<GetMdbElasticSearchClusterConfigDataNodeResource>
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
Resources This property is required. []GetMdbElasticSearchClusterConfigDataNodeResource
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
resources This property is required. List<GetMdbElasticSearchClusterConfigDataNodeResource>
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
resources This property is required. GetMdbElasticSearchClusterConfigDataNodeResource[]
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
resources This property is required. Sequence[GetMdbElasticSearchClusterConfigDataNodeResource]
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
resources This property is required. List<Property Map>
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.

GetMdbElasticSearchClusterConfigDataNodeResource

DiskSize This property is required. int
Volume of the storage available to a Elasticsearch host, in gigabytes.
DiskTypeId This property is required. string
Type of the storage of Elasticsearch hosts.
ResourcePresetId This property is required. string
DiskSize This property is required. int
Volume of the storage available to a Elasticsearch host, in gigabytes.
DiskTypeId This property is required. string
Type of the storage of Elasticsearch hosts.
ResourcePresetId This property is required. string
diskSize This property is required. Integer
Volume of the storage available to a Elasticsearch host, in gigabytes.
diskTypeId This property is required. String
Type of the storage of Elasticsearch hosts.
resourcePresetId This property is required. String
diskSize This property is required. number
Volume of the storage available to a Elasticsearch host, in gigabytes.
diskTypeId This property is required. string
Type of the storage of Elasticsearch hosts.
resourcePresetId This property is required. string
disk_size This property is required. int
Volume of the storage available to a Elasticsearch host, in gigabytes.
disk_type_id This property is required. str
Type of the storage of Elasticsearch hosts.
resource_preset_id This property is required. str
diskSize This property is required. Number
Volume of the storage available to a Elasticsearch host, in gigabytes.
diskTypeId This property is required. String
Type of the storage of Elasticsearch hosts.
resourcePresetId This property is required. String

GetMdbElasticSearchClusterConfigMasterNode

Resources This property is required. List<GetMdbElasticSearchClusterConfigMasterNodeResource>
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
Resources This property is required. []GetMdbElasticSearchClusterConfigMasterNodeResource
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
resources This property is required. List<GetMdbElasticSearchClusterConfigMasterNodeResource>
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
resources This property is required. GetMdbElasticSearchClusterConfigMasterNodeResource[]
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
resources This property is required. Sequence[GetMdbElasticSearchClusterConfigMasterNodeResource]
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
resources This property is required. List<Property Map>
Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.

GetMdbElasticSearchClusterConfigMasterNodeResource

DiskSize This property is required. int
Volume of the storage available to a Elasticsearch host, in gigabytes.
DiskTypeId This property is required. string
Type of the storage of Elasticsearch hosts.
ResourcePresetId This property is required. string
DiskSize This property is required. int
Volume of the storage available to a Elasticsearch host, in gigabytes.
DiskTypeId This property is required. string
Type of the storage of Elasticsearch hosts.
ResourcePresetId This property is required. string
diskSize This property is required. Integer
Volume of the storage available to a Elasticsearch host, in gigabytes.
diskTypeId This property is required. String
Type of the storage of Elasticsearch hosts.
resourcePresetId This property is required. String
diskSize This property is required. number
Volume of the storage available to a Elasticsearch host, in gigabytes.
diskTypeId This property is required. string
Type of the storage of Elasticsearch hosts.
resourcePresetId This property is required. string
disk_size This property is required. int
Volume of the storage available to a Elasticsearch host, in gigabytes.
disk_type_id This property is required. str
Type of the storage of Elasticsearch hosts.
resource_preset_id This property is required. str
diskSize This property is required. Number
Volume of the storage available to a Elasticsearch host, in gigabytes.
diskTypeId This property is required. String
Type of the storage of Elasticsearch hosts.
resourcePresetId This property is required. String

GetMdbElasticSearchClusterHost

AssignPublicIp This property is required. bool
Sets whether the host should get a public IP address on creation.
Fqdn This property is required. string
The fully qualified domain name of the host.
Name This property is required. string
The name of the Elasticsearch cluster.
SubnetId This property is required. string
The ID of the subnet, to which the host belongs. The subnet must be a part of the network to which the cluster belongs.
Type This property is required. string
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
Zone This property is required. string
The availability zone where the Elasticsearch host will be created.
AssignPublicIp This property is required. bool
Sets whether the host should get a public IP address on creation.
Fqdn This property is required. string
The fully qualified domain name of the host.
Name This property is required. string
The name of the Elasticsearch cluster.
SubnetId This property is required. string
The ID of the subnet, to which the host belongs. The subnet must be a part of the network to which the cluster belongs.
Type This property is required. string
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
Zone This property is required. string
The availability zone where the Elasticsearch host will be created.
assignPublicIp This property is required. Boolean
Sets whether the host should get a public IP address on creation.
fqdn This property is required. String
The fully qualified domain name of the host.
name This property is required. String
The name of the Elasticsearch cluster.
subnetId This property is required. String
The ID of the subnet, to which the host belongs. The subnet must be a part of the network to which the cluster belongs.
type This property is required. String
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
zone This property is required. String
The availability zone where the Elasticsearch host will be created.
assignPublicIp This property is required. boolean
Sets whether the host should get a public IP address on creation.
fqdn This property is required. string
The fully qualified domain name of the host.
name This property is required. string
The name of the Elasticsearch cluster.
subnetId This property is required. string
The ID of the subnet, to which the host belongs. The subnet must be a part of the network to which the cluster belongs.
type This property is required. string
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
zone This property is required. string
The availability zone where the Elasticsearch host will be created.
assign_public_ip This property is required. bool
Sets whether the host should get a public IP address on creation.
fqdn This property is required. str
The fully qualified domain name of the host.
name This property is required. str
The name of the Elasticsearch cluster.
subnet_id This property is required. str
The ID of the subnet, to which the host belongs. The subnet must be a part of the network to which the cluster belongs.
type This property is required. str
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
zone This property is required. str
The availability zone where the Elasticsearch host will be created.
assignPublicIp This property is required. Boolean
Sets whether the host should get a public IP address on creation.
fqdn This property is required. String
The fully qualified domain name of the host.
name This property is required. String
The name of the Elasticsearch cluster.
subnetId This property is required. String
The ID of the subnet, to which the host belongs. The subnet must be a part of the network to which the cluster belongs.
type This property is required. String
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
zone This property is required. String
The availability zone where the Elasticsearch host will be created.

GetMdbElasticSearchClusterMaintenanceWindow

Day This property is required. string
Day of the week for a maintenance window if the window type is weekly. Possible values: MON, TUE, WED, THU, FRI, SAT, SUN.
Hour This property is required. int
Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
Type This property is required. string
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
Day This property is required. string
Day of the week for a maintenance window if the window type is weekly. Possible values: MON, TUE, WED, THU, FRI, SAT, SUN.
Hour This property is required. int
Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
Type This property is required. string
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
day This property is required. String
Day of the week for a maintenance window if the window type is weekly. Possible values: MON, TUE, WED, THU, FRI, SAT, SUN.
hour This property is required. Integer
Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
type This property is required. String
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
day This property is required. string
Day of the week for a maintenance window if the window type is weekly. Possible values: MON, TUE, WED, THU, FRI, SAT, SUN.
hour This property is required. number
Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
type This property is required. string
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
day This property is required. str
Day of the week for a maintenance window if the window type is weekly. Possible values: MON, TUE, WED, THU, FRI, SAT, SUN.
hour This property is required. int
Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
type This property is required. str
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.
day This property is required. String
Day of the week for a maintenance window if the window type is weekly. Possible values: MON, TUE, WED, THU, FRI, SAT, SUN.
hour This property is required. Number
Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
type This property is required. String
Type of a maintenance window. Can be either ANYTIME or WEEKLY. A day and hour need to be specified with the weekly window.

Package Details

Repository
Yandex pulumi/pulumi-yandex
License
Apache-2.0
Notes
This Pulumi package is based on the yandex Terraform Provider.