Viewing docs for Yandex v0.13.0
published on Tuesday, Feb 22, 2022 by Pulumi
published on Tuesday, Feb 22, 2022 by Pulumi
Viewing docs for Yandex v0.13.0
published on Tuesday, Feb 22, 2022 by Pulumi
published on Tuesday, Feb 22, 2022 by Pulumi
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
})
}
Example 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)
Example 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:
- Cluster
Id string - The ID of the Elasticsearch cluster.
- Deletion
Protection bool - Description string
- Description of the Elasticsearch cluster.
- Folder
Id 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.
- Security
Group List<string>Ids - A set of ids of security groups assigned to hosts of the cluster.
- Service
Account stringId - ID of the service account authorized for this cluster.
- Cluster
Id string - The ID of the Elasticsearch cluster.
- Deletion
Protection bool - Description string
- Description of the Elasticsearch cluster.
- Folder
Id 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.
- Security
Group []stringIds - A set of ids of security groups assigned to hosts of the cluster.
- Service
Account stringId - ID of the service account authorized for this cluster.
- cluster
Id String - The ID of the Elasticsearch cluster.
- deletion
Protection Boolean - description String
- Description of the Elasticsearch cluster.
- folder
Id 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.
- security
Group List<String>Ids - A set of ids of security groups assigned to hosts of the cluster.
- service
Account StringId - ID of the service account authorized for this cluster.
- cluster
Id string - The ID of the Elasticsearch cluster.
- deletion
Protection boolean - description string
- Description of the Elasticsearch cluster.
- folder
Id 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.
- security
Group string[]Ids - A set of ids of security groups assigned to hosts of the cluster.
- service
Account 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.
- cluster
Id String - The ID of the Elasticsearch cluster.
- deletion
Protection Boolean - description String
- Description of the Elasticsearch cluster.
- folder
Id 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.
- security
Group List<String>Ids - A set of ids of security groups assigned to hosts of the cluster.
- service
Account StringId - ID of the service account authorized for this cluster.
getMdbElasticSearchCluster Result
The following output properties are available:
- Cluster
Id string - Configs
List<Get
Mdb Elastic Search Cluster Config> - Configuration of the Elasticsearch cluster. The structure is documented below.
- Created
At string - Creation timestamp of the key.
- Deletion
Protection bool - Description string
- Description of the Elasticsearch cluster.
- Environment string
- Deployment environment of the Elasticsearch cluster.
- Folder
Id string - Health string
- Aggregated health of the cluster.
- Hosts
List<Get
Mdb 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.
- Maintenance
Windows List<GetMdb Elastic Search Cluster Maintenance Window> - Name string
- Network
Id string - ID of the network, to which the Elasticsearch cluster belongs.
- Security
Group List<string>Ids - A set of ids of security groups assigned to hosts of the cluster.
- Service
Account stringId - ID of the service account authorized for this cluster.
- Status string
- Status of the cluster.
- Cluster
Id string - Configs
[]Get
Mdb Elastic Search Cluster Config - Configuration of the Elasticsearch cluster. The structure is documented below.
- Created
At string - Creation timestamp of the key.
- Deletion
Protection bool - Description string
- Description of the Elasticsearch cluster.
- Environment string
- Deployment environment of the Elasticsearch cluster.
- Folder
Id string - Health string
- Aggregated health of the cluster.
- Hosts
[]Get
Mdb 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.
- Maintenance
Windows []GetMdb Elastic Search Cluster Maintenance Window - Name string
- Network
Id string - ID of the network, to which the Elasticsearch cluster belongs.
- Security
Group []stringIds - A set of ids of security groups assigned to hosts of the cluster.
- Service
Account stringId - ID of the service account authorized for this cluster.
- Status string
- Status of the cluster.
- cluster
Id String - configs
List<Get
Mdb Elastic Search Cluster Config> - Configuration of the Elasticsearch cluster. The structure is documented below.
- created
At String - Creation timestamp of the key.
- deletion
Protection Boolean - description String
- Description of the Elasticsearch cluster.
- environment String
- Deployment environment of the Elasticsearch cluster.
- folder
Id String - health String
- Aggregated health of the cluster.
- hosts
List<Get
Mdb 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.
- maintenance
Windows List<GetMdb Elastic Search Cluster Maintenance Window> - name String
- network
Id String - ID of the network, to which the Elasticsearch cluster belongs.
- security
Group List<String>Ids - A set of ids of security groups assigned to hosts of the cluster.
- service
Account StringId - ID of the service account authorized for this cluster.
- status String
- Status of the cluster.
- cluster
Id string - configs
Get
Mdb Elastic Search Cluster Config[] - Configuration of the Elasticsearch cluster. The structure is documented below.
- created
At string - Creation timestamp of the key.
- deletion
Protection boolean - description string
- Description of the Elasticsearch cluster.
- environment string
- Deployment environment of the Elasticsearch cluster.
- folder
Id string - health string
- Aggregated health of the cluster.
- hosts
Get
Mdb 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.
- maintenance
Windows GetMdb Elastic Search Cluster Maintenance Window[] - name string
- network
Id string - ID of the network, to which the Elasticsearch cluster belongs.
- security
Group string[]Ids - A set of ids of security groups assigned to hosts of the cluster.
- service
Account stringId - ID of the service account authorized for this cluster.
- status string
- Status of the cluster.
- cluster_
id str - configs
Sequence[Get
Mdb 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[Get
Mdb 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.
- cluster
Id String - configs List<Property Map>
- Configuration of the Elasticsearch cluster. The structure is documented below.
- created
At String - Creation timestamp of the key.
- deletion
Protection Boolean - description String
- Description of the Elasticsearch cluster.
- environment String
- Deployment environment of the Elasticsearch cluster.
- folder
Id 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.
- maintenance
Windows List<Property Map> - name String
- network
Id String - ID of the network, to which the Elasticsearch cluster belongs.
- security
Group List<String>Ids - A set of ids of security groups assigned to hosts of the cluster.
- service
Account StringId - ID of the service account authorized for this cluster.
- status String
- Status of the cluster.
Supporting Types
GetMdbElasticSearchClusterConfig
- Admin
Password string - Data
Nodes 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.
- Master
Node 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.
- Admin
Password string - Data
Nodes []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.
- Master
Node 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 String - data
Nodes 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.
- master
Node 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.
- admin
Password string - data
Nodes 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.
- master
Node 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.
- admin
Password String - data
Nodes 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.
- master
Node 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<Get
Mdb Elastic Search Cluster Config Data Node Resource> - Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- Resources
[]Get
Mdb Elastic Search Cluster Config Data Node Resource - Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
List<Get
Mdb Elastic Search Cluster Config Data Node Resource> - Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
Get
Mdb Elastic Search Cluster Config Data Node Resource[] - Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
Sequence[Get
Mdb 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
- Disk
Size int - Volume of the storage available to a Elasticsearch host, in gigabytes.
- Disk
Type stringId - Type of the storage of Elasticsearch hosts.
- Resource
Preset stringId
- Disk
Size int - Volume of the storage available to a Elasticsearch host, in gigabytes.
- Disk
Type stringId - Type of the storage of Elasticsearch hosts.
- Resource
Preset stringId
- disk
Size Integer - Volume of the storage available to a Elasticsearch host, in gigabytes.
- disk
Type StringId - Type of the storage of Elasticsearch hosts.
- resource
Preset StringId
- disk
Size number - Volume of the storage available to a Elasticsearch host, in gigabytes.
- disk
Type stringId - Type of the storage of Elasticsearch hosts.
- resource
Preset 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
- disk
Size Number - Volume of the storage available to a Elasticsearch host, in gigabytes.
- disk
Type StringId - Type of the storage of Elasticsearch hosts.
- resource
Preset StringId
GetMdbElasticSearchClusterConfigMasterNode
- Resources
List<Get
Mdb Elastic Search Cluster Config Master Node Resource> - Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- Resources
[]Get
Mdb Elastic Search Cluster Config Master Node Resource - Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
List<Get
Mdb Elastic Search Cluster Config Master Node Resource> - Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
Get
Mdb Elastic Search Cluster Config Master Node Resource[] - Resources allocated to hosts of the Elasticsearch master nodes subcluster. The structure is documented below.
- resources
Sequence[Get
Mdb 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
- Disk
Size int - Volume of the storage available to a Elasticsearch host, in gigabytes.
- Disk
Type stringId - Type of the storage of Elasticsearch hosts.
- Resource
Preset stringId
- Disk
Size int - Volume of the storage available to a Elasticsearch host, in gigabytes.
- Disk
Type stringId - Type of the storage of Elasticsearch hosts.
- Resource
Preset stringId
- disk
Size Integer - Volume of the storage available to a Elasticsearch host, in gigabytes.
- disk
Type StringId - Type of the storage of Elasticsearch hosts.
- resource
Preset StringId
- disk
Size number - Volume of the storage available to a Elasticsearch host, in gigabytes.
- disk
Type stringId - Type of the storage of Elasticsearch hosts.
- resource
Preset 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
- disk
Size Number - Volume of the storage available to a Elasticsearch host, in gigabytes.
- disk
Type StringId - Type of the storage of Elasticsearch hosts.
- resource
Preset StringId
GetMdbElasticSearchClusterHost
- Assign
Public 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.
- Subnet
Id 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 string
- The fully qualified domain name of the host.
- Name string
- The name of the Elasticsearch cluster.
- Subnet
Id 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 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.
- subnet
Id 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 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.
- subnet
Id 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.
- assign
Public 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.
- subnet
Id 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.
Viewing docs for Yandex v0.13.0
published on Tuesday, Feb 22, 2022 by Pulumi
published on Tuesday, Feb 22, 2022 by Pulumi
