Show / Hide Table of Contents

Class MongoDatabaseArgs

Inheritance
System.Object
InputArgs
ResourceArgs
MongoDatabaseArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.CosmosDB
Assembly: Pulumi.Azure.dll
Syntax
public sealed class MongoDatabaseArgs : ResourceArgs

Constructors

View Source

MongoDatabaseArgs()

Declaration
public MongoDatabaseArgs()

Properties

View Source

AccountName

The name of the Cosmos DB Mongo Database to create the table within. Changing this forces a new resource to be created.

Declaration
public Input<string> AccountName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the name of the Cosmos DB Mongo Database. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

The name of the resource group in which the Cosmos DB Mongo Database is created. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Throughput

The throughput of the MongoDB collection (RU/s). Must be set in increments of 100. The minimum value is 400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.

Declaration
public Input<int> Throughput { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.