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; }
}
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
	})
}
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;
import pulumi
import pulumi_yandex as yandex
foo = yandex.get_mdb_elastic_search_cluster(name="test")
pulumi.export("networkId", foo.network_id)
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>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]func LookupMdbElasticSearchCluster(ctx *Context, args *LookupMdbElasticSearchClusterArgs, opts ...InvokeOption) (*LookupMdbElasticSearchClusterResult, error)
func LookupMdbElasticSearchClusterOutput(ctx *Context, args *LookupMdbElasticSearchClusterOutputArgs, opts ...InvokeOption) LookupMdbElasticSearchClusterResultOutput> 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)
}public static CompletableFuture<GetMdbElasticSearchClusterResult> getMdbElasticSearchCluster(GetMdbElasticSearchClusterArgs args, InvokeOptions options)
public static Output<GetMdbElasticSearchClusterResult> getMdbElasticSearchCluster(GetMdbElasticSearchClusterArgs args, InvokeOptions options)
fn::invoke:
  function: yandex:index/getMdbElasticSearchCluster:getMdbElasticSearchCluster
  arguments:
    # arguments dictionaryThe 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.
- SecurityGroup List<string>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- ServiceAccount stringId 
- 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.
- SecurityGroup []stringIds 
- A set of ids of security groups assigned to hosts of the cluster.
- ServiceAccount stringId 
- 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.
- securityGroup List<String>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- serviceAccount StringId 
- 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.
- securityGroup string[]Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- serviceAccount stringId 
- 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_ Sequence[str]ids 
- A set of ids of security groups assigned to hosts of the cluster.
- service_account_ strid 
- 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.
- securityGroup List<String>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- serviceAccount StringId 
- ID of the service account authorized for this cluster.
getMdbElasticSearchCluster Result
The following output properties are available:
- ClusterId string
- Configs
List<GetMdb Elastic Search Cluster Config> 
- 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<GetMdb Elastic Search Cluster Host> 
- 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<GetMdb Elastic Search Cluster Maintenance Window> 
- Name string
- NetworkId string
- ID of the network, to which the Elasticsearch cluster belongs.
- SecurityGroup List<string>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- ServiceAccount stringId 
- ID of the service account authorized for this cluster.
- Status string
- Status of the cluster.
- ClusterId string
- Configs
[]GetMdb Elastic Search Cluster Config 
- 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
[]GetMdb Elastic Search Cluster Host 
- 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 []GetMdb Elastic Search Cluster Maintenance Window 
- Name string
- NetworkId string
- ID of the network, to which the Elasticsearch cluster belongs.
- SecurityGroup []stringIds 
- A set of ids of security groups assigned to hosts of the cluster.
- ServiceAccount stringId 
- ID of the service account authorized for this cluster.
- Status string
- Status of the cluster.
- clusterId String
- configs
List<GetMdb Elastic Search Cluster Config> 
- 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<GetMdb Elastic Search Cluster Host> 
- 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<GetMdb Elastic Search Cluster Maintenance Window> 
- name String
- networkId String
- ID of the network, to which the Elasticsearch cluster belongs.
- securityGroup List<String>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- serviceAccount StringId 
- ID of the service account authorized for this cluster.
- status String
- Status of the cluster.
- clusterId string
- configs
GetMdb Elastic Search Cluster Config[] 
- 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
GetMdb Elastic Search Cluster Host[] 
- 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 GetMdb Elastic Search Cluster Maintenance Window[] 
- name string
- networkId string
- ID of the network, to which the Elasticsearch cluster belongs.
- securityGroup string[]Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- serviceAccount stringId 
- ID of the service account authorized for this cluster.
- status string
- Status of the cluster.
- cluster_id str
- configs
Sequence[GetMdb Elastic Search Cluster Config] 
- 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[GetMdb Elastic Search Cluster Host] 
- 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[GetMdb Elastic Search Cluster Maintenance Window] 
- name str
- network_id str
- ID of the network, to which the Elasticsearch cluster belongs.
- security_group_ Sequence[str]ids 
- A set of ids of security groups assigned to hosts of the cluster.
- service_account_ strid 
- 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.
- securityGroup List<String>Ids 
- A set of ids of security groups assigned to hosts of the cluster.
- serviceAccount StringId 
- ID of the service account authorized for this cluster.
- status String
- Status of the cluster.
Supporting Types
GetMdbElasticSearchClusterConfig     
- AdminPassword string
- DataNodes List<GetMdb Elastic Search Cluster Config Data Node> 
- Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
- Edition string
- Edition of Elasticsearch. For more information, see the official documentation.
- MasterNode GetMdb Elastic Search Cluster Config Master Node 
- Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
- Plugins List<string>
- A set of requested Elasticsearch plugins.
- Version string
- Version of Elasticsearch.
- AdminPassword string
- DataNodes []GetMdb Elastic Search Cluster Config Data Node 
- Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
- Edition string
- Edition of Elasticsearch. For more information, see the official documentation.
- MasterNode GetMdb Elastic Search Cluster Config Master Node 
- Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
- Plugins []string
- A set of requested Elasticsearch plugins.
- Version string
- Version of Elasticsearch.
- adminPassword String
- dataNodes List<GetMdb Elastic Search Cluster Config Data Node> 
- Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
- edition String
- Edition of Elasticsearch. For more information, see the official documentation.
- masterNode GetMdb Elastic Search Cluster Config Master Node 
- Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
- plugins List<String>
- A set of requested Elasticsearch plugins.
- version String
- Version of Elasticsearch.
- adminPassword string
- dataNodes GetMdb Elastic Search Cluster Config Data Node[] 
- Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
- edition string
- Edition of Elasticsearch. For more information, see the official documentation.
- masterNode GetMdb Elastic Search Cluster Config Master Node 
- Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
- plugins string[]
- A set of requested Elasticsearch plugins.
- version string
- Version of Elasticsearch.
- admin_password str
- data_nodes Sequence[GetMdb Elastic Search Cluster Config Data Node] 
- Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
- edition str
- Edition of Elasticsearch. For more information, see the official documentation.
- master_node GetMdb Elastic Search Cluster Config Master Node 
- Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
- plugins Sequence[str]
- A set of requested Elasticsearch plugins.
- version str
- Version of Elasticsearch.
- adminPassword String
- dataNodes List<Property Map>
- Configuration for Elasticsearch data nodes subcluster. The structure is documented below.
- edition String
- Edition of Elasticsearch. For more information, see the official documentation.
- masterNode Property Map
- Configuration for Elasticsearch master nodes subcluster. The structure is documented below.
- plugins List<String>
- A set of requested Elasticsearch plugins.
- version String
- Version of Elasticsearch.
GetMdbElasticSearchClusterConfigDataNode       
- Resources
List<GetMdb Elastic Search Cluster Config Data Node Resource> 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- Resources
[]GetMdb Elastic Search Cluster Config Data Node Resource 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
List<GetMdb Elastic Search Cluster Config Data Node Resource> 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
GetMdb Elastic Search Cluster Config Data Node Resource[] 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
Sequence[GetMdb Elastic Search Cluster Config Data Node Resource] 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources List<Property Map>
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
GetMdbElasticSearchClusterConfigDataNodeResource        
- DiskSize int
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- DiskType stringId 
- Type of the storage of Elasticsearch hosts.
- ResourcePreset stringId 
- DiskSize int
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- DiskType stringId 
- Type of the storage of Elasticsearch hosts.
- ResourcePreset stringId 
- diskSize Integer
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- diskType StringId 
- Type of the storage of Elasticsearch hosts.
- resourcePreset StringId 
- diskSize number
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- diskType stringId 
- Type of the storage of Elasticsearch hosts.
- resourcePreset stringId 
- disk_size int
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- disk_type_ strid 
- Type of the storage of Elasticsearch hosts.
- resource_preset_ strid 
- diskSize Number
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- diskType StringId 
- Type of the storage of Elasticsearch hosts.
- resourcePreset StringId 
GetMdbElasticSearchClusterConfigMasterNode       
- Resources
List<GetMdb Elastic Search Cluster Config Master Node Resource> 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- Resources
[]GetMdb Elastic Search Cluster Config Master Node Resource 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
List<GetMdb Elastic Search Cluster Config Master Node Resource> 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
GetMdb Elastic Search Cluster Config Master Node Resource[] 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
Sequence[GetMdb Elastic Search Cluster Config Master Node Resource] 
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources List<Property Map>
- Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
GetMdbElasticSearchClusterConfigMasterNodeResource        
- DiskSize int
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- DiskType stringId 
- Type of the storage of Elasticsearch hosts.
- ResourcePreset stringId 
- DiskSize int
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- DiskType stringId 
- Type of the storage of Elasticsearch hosts.
- ResourcePreset stringId 
- diskSize Integer
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- diskType StringId 
- Type of the storage of Elasticsearch hosts.
- resourcePreset StringId 
- diskSize number
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- diskType stringId 
- Type of the storage of Elasticsearch hosts.
- resourcePreset stringId 
- disk_size int
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- disk_type_ strid 
- Type of the storage of Elasticsearch hosts.
- resource_preset_ strid 
- diskSize Number
- Volume of the storage available to a Elasticsearch host, in gigabytes.
- diskType StringId 
- Type of the storage of Elasticsearch hosts.
- resourcePreset StringId 
GetMdbElasticSearchClusterHost     
- AssignPublic boolIp 
- Sets whether the host should get a public IP address on creation.
- Fqdn string
- The fully qualified domain name of the host.
- Name string
- The name of the Elasticsearch cluster.
- SubnetId 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 string
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- Zone string
- The availability zone where the Elasticsearch host will be created.
- AssignPublic boolIp 
- Sets whether the host should get a public IP address on creation.
- Fqdn string
- The fully qualified domain name of the host.
- Name string
- The name of the Elasticsearch cluster.
- SubnetId 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 string
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- Zone string
- The availability zone where the Elasticsearch host will be created.
- assignPublic BooleanIp 
- Sets whether the host should get a public IP address on creation.
- fqdn String
- The fully qualified domain name of the host.
- name String
- The name of the Elasticsearch cluster.
- subnetId 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 String
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- zone String
- The availability zone where the Elasticsearch host will be created.
- assignPublic booleanIp 
- Sets whether the host should get a public IP address on creation.
- fqdn string
- The fully qualified domain name of the host.
- name string
- The name of the Elasticsearch cluster.
- subnetId 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 string
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- zone string
- The availability zone where the Elasticsearch host will be created.
- assign_public_ boolip 
- Sets whether the host should get a public IP address on creation.
- fqdn str
- The fully qualified domain name of the host.
- name str
- The name of the Elasticsearch cluster.
- subnet_id 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 str
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- zone str
- The availability zone where the Elasticsearch host will be created.
- assignPublic BooleanIp 
- Sets whether the host should get a public IP address on creation.
- fqdn String
- The fully qualified domain name of the host.
- name String
- The name of the Elasticsearch cluster.
- subnetId 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 String
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- zone String
- The availability zone where the Elasticsearch host will be created.
GetMdbElasticSearchClusterMaintenanceWindow      
- Day 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 int
- Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
- Type string
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- Day 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 int
- Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
- Type string
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- day 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 Integer
- Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
- type String
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- day 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 number
- Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
- type string
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- day 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 int
- Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
- type str
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. A day and hour need to be specified with the weekly window.
- day 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 Number
- Hour of the day in UTC time zone (1-24) for a maintenance window if the window type is weekly.
- type String
- Type of a maintenance window. Can be either ANYTIMEorWEEKLY. 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 yandexTerraform Provider.