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 MongoDB 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.GetMdbMongodbCluster.InvokeAsync(new Yandex.GetMdbMongodbClusterArgs
{
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.LookupMdbMongodbCluster(ctx, &GetMdbMongodbClusterArgs{
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.getMdbMongodbCluster({
name: "test",
}));
export const networkId = foo.networkId;
import pulumi
import pulumi_yandex as yandex
foo = yandex.get_mdb_mongodb_cluster(name="test")
pulumi.export("networkId", foo.network_id)
Example coming soon!
Using getMdbMongodbCluster
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 getMdbMongodbCluster(args: GetMdbMongodbClusterArgs, opts?: InvokeOptions): Promise<GetMdbMongodbClusterResult>
function getMdbMongodbClusterOutput(args: GetMdbMongodbClusterOutputArgs, opts?: InvokeOptions): Output<GetMdbMongodbClusterResult>def get_mdb_mongodb_cluster(cluster_id: Optional[str] = None,
deletion_protection: Optional[bool] = None,
folder_id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetMdbMongodbClusterResult
def get_mdb_mongodb_cluster_output(cluster_id: Optional[pulumi.Input[str]] = None,
deletion_protection: Optional[pulumi.Input[bool]] = None,
folder_id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMdbMongodbClusterResult]func LookupMdbMongodbCluster(ctx *Context, args *LookupMdbMongodbClusterArgs, opts ...InvokeOption) (*LookupMdbMongodbClusterResult, error)
func LookupMdbMongodbClusterOutput(ctx *Context, args *LookupMdbMongodbClusterOutputArgs, opts ...InvokeOption) LookupMdbMongodbClusterResultOutput> Note: This function is named LookupMdbMongodbCluster in the Go SDK.
public static class GetMdbMongodbCluster
{
public static Task<GetMdbMongodbClusterResult> InvokeAsync(GetMdbMongodbClusterArgs args, InvokeOptions? opts = null)
public static Output<GetMdbMongodbClusterResult> Invoke(GetMdbMongodbClusterInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMdbMongodbClusterResult> getMdbMongodbCluster(GetMdbMongodbClusterArgs args, InvokeOptions options)
public static Output<GetMdbMongodbClusterResult> getMdbMongodbCluster(GetMdbMongodbClusterArgs args, InvokeOptions options)
fn::invoke:
function: yandex:index/getMdbMongodbCluster:getMdbMongodbCluster
arguments:
# arguments dictionaryThe following arguments are supported:
- Cluster
Id string - The ID of the MongoDB cluster.
- Deletion
Protection bool - Folder
Id string - Folder that the resource belongs to. If value is omitted, the default provider folder is used.
- Name string
- The name of the MongoDB cluster.
- Cluster
Id string - The ID of the MongoDB cluster.
- Deletion
Protection bool - Folder
Id string - Folder that the resource belongs to. If value is omitted, the default provider folder is used.
- Name string
- The name of the MongoDB cluster.
- cluster
Id String - The ID of the MongoDB cluster.
- deletion
Protection Boolean - folder
Id String - Folder that the resource belongs to. If value is omitted, the default provider folder is used.
- name String
- The name of the MongoDB cluster.
- cluster
Id string - The ID of the MongoDB cluster.
- deletion
Protection boolean - folder
Id string - Folder that the resource belongs to. If value is omitted, the default provider folder is used.
- name string
- The name of the MongoDB cluster.
- cluster_
id str - The ID of the MongoDB cluster.
- deletion_
protection bool - folder_
id str - Folder that the resource belongs to. If value is omitted, the default provider folder is used.
- name str
- The name of the MongoDB cluster.
- cluster
Id String - The ID of the MongoDB cluster.
- deletion
Protection Boolean - folder
Id String - Folder that the resource belongs to. If value is omitted, the default provider folder is used.
- name String
- The name of the MongoDB cluster.
getMdbMongodbCluster Result
The following output properties are available:
- Cluster
Configs List<GetMdb Mongodb Cluster Cluster Config> - Configuration of the MongoDB cluster. The structure is documented below.
- Cluster
Id string - Created
At string - Creation timestamp of the key.
- Databases
List<Get
Mdb Mongodb Cluster Database> - A database of the MongoDB cluster. The structure is documented below.
- Deletion
Protection bool - Description string
- Description of the MongoDB cluster.
- Environment string
- Deployment environment of the MongoDB cluster.
- Folder
Id string - Health string
- The health of the host.
- Hosts
List<Get
Mdb Mongodb Cluster Host> - A host of the MongoDB 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 MongoDB cluster.
- Maintenance
Windows List<GetMdb Mongodb Cluster Maintenance Window> - Name string
- The name of the database.
- Network
Id string - ID of the network, to which the MongoDB cluster belongs.
- Resources
List<Get
Mdb Mongodb Cluster Resource> - Resources allocated to hosts of the MongoDB cluster. The structure is documented below.
- Security
Group List<string>Ids - A set of ids of security groups assigned to hosts of the cluster.
- bool
- MongoDB Cluster mode enabled/disabled.
- Status string
- Status of the cluster.
- Users
List<Get
Mdb Mongodb Cluster User> - A user of the MongoDB cluster. The structure is documented below.
- Cluster
Configs []GetMdb Mongodb Cluster Cluster Config - Configuration of the MongoDB cluster. The structure is documented below.
- Cluster
Id string - Created
At string - Creation timestamp of the key.
- Databases
[]Get
Mdb Mongodb Cluster Database - A database of the MongoDB cluster. The structure is documented below.
- Deletion
Protection bool - Description string
- Description of the MongoDB cluster.
- Environment string
- Deployment environment of the MongoDB cluster.
- Folder
Id string - Health string
- The health of the host.
- Hosts
[]Get
Mdb Mongodb Cluster Host - A host of the MongoDB 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 MongoDB cluster.
- Maintenance
Windows []GetMdb Mongodb Cluster Maintenance Window - Name string
- The name of the database.
- Network
Id string - ID of the network, to which the MongoDB cluster belongs.
- Resources
[]Get
Mdb Mongodb Cluster Resource - Resources allocated to hosts of the MongoDB cluster. The structure is documented below.
- Security
Group []stringIds - A set of ids of security groups assigned to hosts of the cluster.
- bool
- MongoDB Cluster mode enabled/disabled.
- Status string
- Status of the cluster.
- Users
[]Get
Mdb Mongodb Cluster User - A user of the MongoDB cluster. The structure is documented below.
- cluster
Configs List<GetMdb Mongodb Cluster Cluster Config> - Configuration of the MongoDB cluster. The structure is documented below.
- cluster
Id String - created
At String - Creation timestamp of the key.
- databases
List<Get
Mdb Mongodb Cluster Database> - A database of the MongoDB cluster. The structure is documented below.
- deletion
Protection Boolean - description String
- Description of the MongoDB cluster.
- environment String
- Deployment environment of the MongoDB cluster.
- folder
Id String - health String
- The health of the host.
- hosts
List<Get
Mdb Mongodb Cluster Host> - A host of the MongoDB 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 MongoDB cluster.
- maintenance
Windows List<GetMdb Mongodb Cluster Maintenance Window> - name String
- The name of the database.
- network
Id String - ID of the network, to which the MongoDB cluster belongs.
- resources
List<Get
Mdb Mongodb Cluster Resource> - Resources allocated to hosts of the MongoDB cluster. The structure is documented below.
- security
Group List<String>Ids - A set of ids of security groups assigned to hosts of the cluster.
- Boolean
- MongoDB Cluster mode enabled/disabled.
- status String
- Status of the cluster.
- users
List<Get
Mdb Mongodb Cluster User> - A user of the MongoDB cluster. The structure is documented below.
- cluster
Configs GetMdb Mongodb Cluster Cluster Config[] - Configuration of the MongoDB cluster. The structure is documented below.
- cluster
Id string - created
At string - Creation timestamp of the key.
- databases
Get
Mdb Mongodb Cluster Database[] - A database of the MongoDB cluster. The structure is documented below.
- deletion
Protection boolean - description string
- Description of the MongoDB cluster.
- environment string
- Deployment environment of the MongoDB cluster.
- folder
Id string - health string
- The health of the host.
- hosts
Get
Mdb Mongodb Cluster Host[] - A host of the MongoDB 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 MongoDB cluster.
- maintenance
Windows GetMdb Mongodb Cluster Maintenance Window[] - name string
- The name of the database.
- network
Id string - ID of the network, to which the MongoDB cluster belongs.
- resources
Get
Mdb Mongodb Cluster Resource[] - Resources allocated to hosts of the MongoDB cluster. The structure is documented below.
- security
Group string[]Ids - A set of ids of security groups assigned to hosts of the cluster.
- boolean
- MongoDB Cluster mode enabled/disabled.
- status string
- Status of the cluster.
- users
Get
Mdb Mongodb Cluster User[] - A user of the MongoDB cluster. The structure is documented below.
- cluster_
configs Sequence[GetMdb Mongodb Cluster Cluster Config] - Configuration of the MongoDB cluster. The structure is documented below.
- cluster_
id str - created_
at str - Creation timestamp of the key.
- databases
Sequence[Get
Mdb Mongodb Cluster Database] - A database of the MongoDB cluster. The structure is documented below.
- deletion_
protection bool - description str
- Description of the MongoDB cluster.
- environment str
- Deployment environment of the MongoDB cluster.
- folder_
id str - health str
- The health of the host.
- hosts
Sequence[Get
Mdb Mongodb Cluster Host] - A host of the MongoDB 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 MongoDB cluster.
- maintenance_
windows Sequence[GetMdb Mongodb Cluster Maintenance Window] - name str
- The name of the database.
- network_
id str - ID of the network, to which the MongoDB cluster belongs.
- resources
Sequence[Get
Mdb Mongodb Cluster Resource] - Resources allocated to hosts of the MongoDB cluster. The structure is documented below.
- security_
group_ Sequence[str]ids - A set of ids of security groups assigned to hosts of the cluster.
- bool
- MongoDB Cluster mode enabled/disabled.
- status str
- Status of the cluster.
- users
Sequence[Get
Mdb Mongodb Cluster User] - A user of the MongoDB cluster. The structure is documented below.
- cluster
Configs List<Property Map> - Configuration of the MongoDB cluster. The structure is documented below.
- cluster
Id String - created
At String - Creation timestamp of the key.
- databases List<Property Map>
- A database of the MongoDB cluster. The structure is documented below.
- deletion
Protection Boolean - description String
- Description of the MongoDB cluster.
- environment String
- Deployment environment of the MongoDB cluster.
- folder
Id String - health String
- The health of the host.
- hosts List<Property Map>
- A host of the MongoDB 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 MongoDB cluster.
- maintenance
Windows List<Property Map> - name String
- The name of the database.
- network
Id String - ID of the network, to which the MongoDB cluster belongs.
- resources List<Property Map>
- Resources allocated to hosts of the MongoDB cluster. The structure is documented below.
- security
Group List<String>Ids - A set of ids of security groups assigned to hosts of the cluster.
- Boolean
- MongoDB Cluster mode enabled/disabled.
- status String
- Status of the cluster.
- users List<Property Map>
- A user of the MongoDB cluster. The structure is documented below.
Supporting Types
GetMdbMongodbClusterClusterConfig
- Accesses
List<Get
Mdb Mongodb Cluster Cluster Config Access> - Access policy to MongoDB cluster. The structure is documented below.
- Backup
Window List<GetStarts Mdb Mongodb Cluster Cluster Config Backup Window Start> - Time to start the daily backup, in the UTC timezone. The structure is documented below.
- Feature
Compatibility stringVersion - Feature compatibility version of MongoDB.
- Version string
- Version of MongoDB (either 5.0, 4.4, 4.2, 4.0 or 3.6).
- Accesses
[]Get
Mdb Mongodb Cluster Cluster Config Access - Access policy to MongoDB cluster. The structure is documented below.
- Backup
Window []GetStarts Mdb Mongodb Cluster Cluster Config Backup Window Start - Time to start the daily backup, in the UTC timezone. The structure is documented below.
- Feature
Compatibility stringVersion - Feature compatibility version of MongoDB.
- Version string
- Version of MongoDB (either 5.0, 4.4, 4.2, 4.0 or 3.6).
- accesses
List<Get
Mdb Mongodb Cluster Cluster Config Access> - Access policy to MongoDB cluster. The structure is documented below.
- backup
Window List<GetStarts Mdb Mongodb Cluster Cluster Config Backup Window Start> - Time to start the daily backup, in the UTC timezone. The structure is documented below.
- feature
Compatibility StringVersion - Feature compatibility version of MongoDB.
- version String
- Version of MongoDB (either 5.0, 4.4, 4.2, 4.0 or 3.6).
- accesses
Get
Mdb Mongodb Cluster Cluster Config Access[] - Access policy to MongoDB cluster. The structure is documented below.
- backup
Window GetStarts Mdb Mongodb Cluster Cluster Config Backup Window Start[] - Time to start the daily backup, in the UTC timezone. The structure is documented below.
- feature
Compatibility stringVersion - Feature compatibility version of MongoDB.
- version string
- Version of MongoDB (either 5.0, 4.4, 4.2, 4.0 or 3.6).
- accesses
Sequence[Get
Mdb Mongodb Cluster Cluster Config Access] - Access policy to MongoDB cluster. The structure is documented below.
- backup_
window_ Sequence[Getstarts Mdb Mongodb Cluster Cluster Config Backup Window Start] - Time to start the daily backup, in the UTC timezone. The structure is documented below.
- feature_
compatibility_ strversion - Feature compatibility version of MongoDB.
- version str
- Version of MongoDB (either 5.0, 4.4, 4.2, 4.0 or 3.6).
- accesses List<Property Map>
- Access policy to MongoDB cluster. The structure is documented below.
- backup
Window List<Property Map>Starts - Time to start the daily backup, in the UTC timezone. The structure is documented below.
- feature
Compatibility StringVersion - Feature compatibility version of MongoDB.
- version String
- Version of MongoDB (either 5.0, 4.4, 4.2, 4.0 or 3.6).
GetMdbMongodbClusterClusterConfigAccess
- Data
Lens bool - Shows whether cluster has access to data lens.
- Data
Lens bool - Shows whether cluster has access to data lens.
- data
Lens Boolean - Shows whether cluster has access to data lens.
- data
Lens boolean - Shows whether cluster has access to data lens.
- data_
lens bool - Shows whether cluster has access to data lens.
- data
Lens Boolean - Shows whether cluster has access to data lens.
GetMdbMongodbClusterClusterConfigBackupWindowStart
GetMdbMongodbClusterDatabase
- Name string
- The name of the MongoDB cluster.
- Name string
- The name of the MongoDB cluster.
- name String
- The name of the MongoDB cluster.
- name string
- The name of the MongoDB cluster.
- name str
- The name of the MongoDB cluster.
- name String
- The name of the MongoDB cluster.
GetMdbMongodbClusterHost
- Assign
Public boolIp - Has assigned public IP.
- Health string
- The health of the host.
- Name string
- The name of the MongoDB cluster.
- Role string
- The role of the cluster (either PRIMARY or SECONDARY).
- string
- The name of the shard to which the host belongs.
- 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 maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window. - Zone
Id string - The availability zone where the MongoDB host will be created.
- Assign
Public boolIp - Has assigned public IP.
- Health string
- The health of the host.
- Name string
- The name of the MongoDB cluster.
- Role string
- The role of the cluster (either PRIMARY or SECONDARY).
- string
- The name of the shard to which the host belongs.
- 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 maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window. - Zone
Id string - The availability zone where the MongoDB host will be created.
- assign
Public BooleanIp - Has assigned public IP.
- health String
- The health of the host.
- name String
- The name of the MongoDB cluster.
- role String
- The role of the cluster (either PRIMARY or SECONDARY).
- String
- The name of the shard to which the host belongs.
- 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 maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window. - zone
Id String - The availability zone where the MongoDB host will be created.
- assign
Public booleanIp - Has assigned public IP.
- health string
- The health of the host.
- name string
- The name of the MongoDB cluster.
- role string
- The role of the cluster (either PRIMARY or SECONDARY).
- string
- The name of the shard to which the host belongs.
- 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 maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window. - zone
Id string - The availability zone where the MongoDB host will be created.
- assign_
public_ boolip - Has assigned public IP.
- health str
- The health of the host.
- name str
- The name of the MongoDB cluster.
- role str
- The role of the cluster (either PRIMARY or SECONDARY).
- str
- The name of the shard to which the host belongs.
- 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 maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window. - zone_
id str - The availability zone where the MongoDB host will be created.
- assign
Public BooleanIp - Has assigned public IP.
- health String
- The health of the host.
- name String
- The name of the MongoDB cluster.
- role String
- The role of the cluster (either PRIMARY or SECONDARY).
- String
- The name of the shard to which the host belongs.
- 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 maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window. - zone
Id String - The availability zone where the MongoDB host will be created.
GetMdbMongodbClusterMaintenanceWindow
- Day string
- Day of week for maintenance window if window type is weekly. Possible values:
MON,TUE,WED,THU,FRI,SAT,SUN. - Hour int
- Hour of day in UTC time zone (1-24) for maintenance window if window type is weekly.
- Type string
- Type of maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window.
- Day string
- Day of week for maintenance window if window type is weekly. Possible values:
MON,TUE,WED,THU,FRI,SAT,SUN. - Hour int
- Hour of day in UTC time zone (1-24) for maintenance window if window type is weekly.
- Type string
- Type of maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window.
- day String
- Day of week for maintenance window if window type is weekly. Possible values:
MON,TUE,WED,THU,FRI,SAT,SUN. - hour Integer
- Hour of day in UTC time zone (1-24) for maintenance window if window type is weekly.
- type String
- Type of maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window.
- day string
- Day of week for maintenance window if window type is weekly. Possible values:
MON,TUE,WED,THU,FRI,SAT,SUN. - hour number
- Hour of day in UTC time zone (1-24) for maintenance window if window type is weekly.
- type string
- Type of maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window.
- day str
- Day of week for maintenance window if window type is weekly. Possible values:
MON,TUE,WED,THU,FRI,SAT,SUN. - hour int
- Hour of day in UTC time zone (1-24) for maintenance window if window type is weekly.
- type str
- Type of maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window.
- day String
- Day of week for maintenance window if window type is weekly. Possible values:
MON,TUE,WED,THU,FRI,SAT,SUN. - hour Number
- Hour of day in UTC time zone (1-24) for maintenance window if window type is weekly.
- type String
- Type of maintenance window. Can be either
ANYTIMEorWEEKLY. A day and hour of window need to be specified with weekly window.
GetMdbMongodbClusterResource
- Disk
Size int - Volume of the storage available to a host, in gigabytes.
- Disk
Type stringId - The ID of the storage type. For more information, see the official documentation
- Resource
Preset stringId
- Disk
Size int - Volume of the storage available to a host, in gigabytes.
- Disk
Type stringId - The ID of the storage type. For more information, see the official documentation
- Resource
Preset stringId
- disk
Size Integer - Volume of the storage available to a host, in gigabytes.
- disk
Type StringId - The ID of the storage type. For more information, see the official documentation
- resource
Preset StringId
- disk
Size number - Volume of the storage available to a host, in gigabytes.
- disk
Type stringId - The ID of the storage type. For more information, see the official documentation
- resource
Preset stringId
- disk_
size int - Volume of the storage available to a host, in gigabytes.
- disk_
type_ strid - The ID of the storage type. For more information, see the official documentation
- resource_
preset_ strid
- disk
Size Number - Volume of the storage available to a host, in gigabytes.
- disk
Type StringId - The ID of the storage type. For more information, see the official documentation
- resource
Preset StringId
GetMdbMongodbClusterUser
- Name string
- The name of the MongoDB cluster.
- Permissions
List<Get
Mdb Mongodb Cluster User Permission> - Set of permissions granted to the user. The structure is documented below.
- Name string
- The name of the MongoDB cluster.
- Permissions
[]Get
Mdb Mongodb Cluster User Permission - Set of permissions granted to the user. The structure is documented below.
- name String
- The name of the MongoDB cluster.
- permissions
List<Get
Mdb Mongodb Cluster User Permission> - Set of permissions granted to the user. The structure is documented below.
- name string
- The name of the MongoDB cluster.
- permissions
Get
Mdb Mongodb Cluster User Permission[] - Set of permissions granted to the user. The structure is documented below.
- name str
- The name of the MongoDB cluster.
- permissions
Sequence[Get
Mdb Mongodb Cluster User Permission] - Set of permissions granted to the user. The structure is documented below.
- name String
- The name of the MongoDB cluster.
- permissions List<Property Map>
- Set of permissions granted to the user. The structure is documented below.
GetMdbMongodbClusterUserPermission
- Database
Name string - The name of the database that the permission grants access to.
- Roles List<string>
- (Optional) List of strings. The roles of the user in this database. For more information see the official documentation.
- Database
Name string - The name of the database that the permission grants access to.
- Roles []string
- (Optional) List of strings. The roles of the user in this database. For more information see the official documentation.
- database
Name String - The name of the database that the permission grants access to.
- roles List<String>
- (Optional) List of strings. The roles of the user in this database. For more information see the official documentation.
- database
Name string - The name of the database that the permission grants access to.
- roles string[]
- (Optional) List of strings. The roles of the user in this database. For more information see the official documentation.
- database_
name str - The name of the database that the permission grants access to.
- roles Sequence[str]
- (Optional) List of strings. The roles of the user in this database. For more information see the official documentation.
- database
Name String - The name of the database that the permission grants access to.
- roles List<String>
- (Optional) List of strings. The roles of the user in this database. For more information see the official documentation.
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
