azure-native.cosmosdb.GremlinResourceGremlinDatabase
Explore with Pulumi AI
An Azure Cosmos DB Gremlin database.
Uses Azure REST API version 2024-11-15.
Other available API versions: 2019-08-01, 2019-12-12, 2020-03-01, 2020-04-01, 2020-06-01-preview, 2020-09-01, 2021-01-15, 2021-03-01-preview, 2021-03-15, 2021-04-01-preview, 2021-04-15, 2021-05-15, 2021-06-15, 2021-07-01-preview, 2021-10-15, 2021-10-15-preview, 2021-11-15-preview, 2022-02-15-preview, 2022-05-15, 2022-05-15-preview, 2022-08-15, 2022-08-15-preview, 2022-11-15, 2022-11-15-preview, 2023-03-01-preview, 2023-03-15, 2023-03-15-preview, 2023-04-15, 2023-09-15, 2023-09-15-preview, 2023-11-15, 2023-11-15-preview, 2024-02-15-preview, 2024-05-15, 2024-05-15-preview, 2024-08-15, 2024-09-01-preview, 2024-12-01-preview, 2025-04-15, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native cosmosdb [ApiVersion]
. See the version guide for details.
Example Usage
CosmosDBGremlinDatabaseCreateUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var gremlinResourceGremlinDatabase = new AzureNative.CosmosDB.GremlinResourceGremlinDatabase("gremlinResourceGremlinDatabase", new()
{
AccountName = "ddb1",
DatabaseName = "databaseName",
Location = "West US",
Options = null,
Resource = new AzureNative.CosmosDB.Inputs.GremlinDatabaseResourceArgs
{
Id = "databaseName",
},
ResourceGroupName = "rg1",
Tags = null,
});
});
package main
import (
cosmosdb "github.com/pulumi/pulumi-azure-native-sdk/cosmosdb/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cosmosdb.NewGremlinResourceGremlinDatabase(ctx, "gremlinResourceGremlinDatabase", &cosmosdb.GremlinResourceGremlinDatabaseArgs{
AccountName: pulumi.String("ddb1"),
DatabaseName: pulumi.String("databaseName"),
Location: pulumi.String("West US"),
Options: &cosmosdb.CreateUpdateOptionsArgs{},
Resource: &cosmosdb.GremlinDatabaseResourceArgs{
Id: pulumi.String("databaseName"),
},
ResourceGroupName: pulumi.String("rg1"),
Tags: pulumi.StringMap{},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cosmosdb.GremlinResourceGremlinDatabase;
import com.pulumi.azurenative.cosmosdb.GremlinResourceGremlinDatabaseArgs;
import com.pulumi.azurenative.cosmosdb.inputs.CreateUpdateOptionsArgs;
import com.pulumi.azurenative.cosmosdb.inputs.GremlinDatabaseResourceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var gremlinResourceGremlinDatabase = new GremlinResourceGremlinDatabase("gremlinResourceGremlinDatabase", GremlinResourceGremlinDatabaseArgs.builder()
.accountName("ddb1")
.databaseName("databaseName")
.location("West US")
.options(CreateUpdateOptionsArgs.builder()
.build())
.resource(GremlinDatabaseResourceArgs.builder()
.id("databaseName")
.build())
.resourceGroupName("rg1")
.tags(Map.ofEntries(
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const gremlinResourceGremlinDatabase = new azure_native.cosmosdb.GremlinResourceGremlinDatabase("gremlinResourceGremlinDatabase", {
accountName: "ddb1",
databaseName: "databaseName",
location: "West US",
options: {},
resource: {
id: "databaseName",
},
resourceGroupName: "rg1",
tags: {},
});
import pulumi
import pulumi_azure_native as azure_native
gremlin_resource_gremlin_database = azure_native.cosmosdb.GremlinResourceGremlinDatabase("gremlinResourceGremlinDatabase",
account_name="ddb1",
database_name="databaseName",
location="West US",
options={},
resource={
"id": "databaseName",
},
resource_group_name="rg1",
tags={})
resources:
gremlinResourceGremlinDatabase:
type: azure-native:cosmosdb:GremlinResourceGremlinDatabase
properties:
accountName: ddb1
databaseName: databaseName
location: West US
options: {}
resource:
id: databaseName
resourceGroupName: rg1
tags: {}
Create GremlinResourceGremlinDatabase Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GremlinResourceGremlinDatabase(name: string, args: GremlinResourceGremlinDatabaseArgs, opts?: CustomResourceOptions);
@overload
def GremlinResourceGremlinDatabase(resource_name: str,
args: GremlinResourceGremlinDatabaseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GremlinResourceGremlinDatabase(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
resource: Optional[GremlinDatabaseResourceArgs] = None,
resource_group_name: Optional[str] = None,
database_name: Optional[str] = None,
location: Optional[str] = None,
options: Optional[CreateUpdateOptionsArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewGremlinResourceGremlinDatabase(ctx *Context, name string, args GremlinResourceGremlinDatabaseArgs, opts ...ResourceOption) (*GremlinResourceGremlinDatabase, error)
public GremlinResourceGremlinDatabase(string name, GremlinResourceGremlinDatabaseArgs args, CustomResourceOptions? opts = null)
public GremlinResourceGremlinDatabase(String name, GremlinResourceGremlinDatabaseArgs args)
public GremlinResourceGremlinDatabase(String name, GremlinResourceGremlinDatabaseArgs args, CustomResourceOptions options)
type: azure-native:cosmosdb:GremlinResourceGremlinDatabase
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GremlinResourceGremlinDatabaseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GremlinResourceGremlinDatabaseArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GremlinResourceGremlinDatabaseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GremlinResourceGremlinDatabaseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GremlinResourceGremlinDatabaseArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var gremlinResourceGremlinDatabaseResource = new AzureNative.CosmosDB.GremlinResourceGremlinDatabase("gremlinResourceGremlinDatabaseResource", new()
{
AccountName = "string",
Resource = new AzureNative.CosmosDB.Inputs.GremlinDatabaseResourceArgs
{
Id = "string",
CreateMode = "string",
RestoreParameters = new AzureNative.CosmosDB.Inputs.ResourceRestoreParametersArgs
{
RestoreSource = "string",
RestoreTimestampInUtc = "string",
RestoreWithTtlDisabled = false,
},
},
ResourceGroupName = "string",
DatabaseName = "string",
Location = "string",
Options = new AzureNative.CosmosDB.Inputs.CreateUpdateOptionsArgs
{
AutoscaleSettings = new AzureNative.CosmosDB.Inputs.AutoscaleSettingsArgs
{
MaxThroughput = 0,
},
Throughput = 0,
},
Tags =
{
{ "string", "string" },
},
});
example, err := cosmosdb.NewGremlinResourceGremlinDatabase(ctx, "gremlinResourceGremlinDatabaseResource", &cosmosdb.GremlinResourceGremlinDatabaseArgs{
AccountName: pulumi.String("string"),
Resource: &cosmosdb.GremlinDatabaseResourceArgs{
Id: pulumi.String("string"),
CreateMode: pulumi.String("string"),
RestoreParameters: &cosmosdb.ResourceRestoreParametersArgs{
RestoreSource: pulumi.String("string"),
RestoreTimestampInUtc: pulumi.String("string"),
RestoreWithTtlDisabled: pulumi.Bool(false),
},
},
ResourceGroupName: pulumi.String("string"),
DatabaseName: pulumi.String("string"),
Location: pulumi.String("string"),
Options: &cosmosdb.CreateUpdateOptionsArgs{
AutoscaleSettings: &cosmosdb.AutoscaleSettingsArgs{
MaxThroughput: pulumi.Int(0),
},
Throughput: pulumi.Int(0),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var gremlinResourceGremlinDatabaseResource = new GremlinResourceGremlinDatabase("gremlinResourceGremlinDatabaseResource", GremlinResourceGremlinDatabaseArgs.builder()
.accountName("string")
.resource(GremlinDatabaseResourceArgs.builder()
.id("string")
.createMode("string")
.restoreParameters(ResourceRestoreParametersArgs.builder()
.restoreSource("string")
.restoreTimestampInUtc("string")
.restoreWithTtlDisabled(false)
.build())
.build())
.resourceGroupName("string")
.databaseName("string")
.location("string")
.options(CreateUpdateOptionsArgs.builder()
.autoscaleSettings(AutoscaleSettingsArgs.builder()
.maxThroughput(0)
.build())
.throughput(0)
.build())
.tags(Map.of("string", "string"))
.build());
gremlin_resource_gremlin_database_resource = azure_native.cosmosdb.GremlinResourceGremlinDatabase("gremlinResourceGremlinDatabaseResource",
account_name="string",
resource={
"id": "string",
"create_mode": "string",
"restore_parameters": {
"restore_source": "string",
"restore_timestamp_in_utc": "string",
"restore_with_ttl_disabled": False,
},
},
resource_group_name="string",
database_name="string",
location="string",
options={
"autoscale_settings": {
"max_throughput": 0,
},
"throughput": 0,
},
tags={
"string": "string",
})
const gremlinResourceGremlinDatabaseResource = new azure_native.cosmosdb.GremlinResourceGremlinDatabase("gremlinResourceGremlinDatabaseResource", {
accountName: "string",
resource: {
id: "string",
createMode: "string",
restoreParameters: {
restoreSource: "string",
restoreTimestampInUtc: "string",
restoreWithTtlDisabled: false,
},
},
resourceGroupName: "string",
databaseName: "string",
location: "string",
options: {
autoscaleSettings: {
maxThroughput: 0,
},
throughput: 0,
},
tags: {
string: "string",
},
});
type: azure-native:cosmosdb:GremlinResourceGremlinDatabase
properties:
accountName: string
databaseName: string
location: string
options:
autoscaleSettings:
maxThroughput: 0
throughput: 0
resource:
createMode: string
id: string
restoreParameters:
restoreSource: string
restoreTimestampInUtc: string
restoreWithTtlDisabled: false
resourceGroupName: string
tags:
string: string
GremlinResourceGremlinDatabase Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The GremlinResourceGremlinDatabase resource accepts the following input properties:
- Account
Name string - Cosmos DB database account name.
- Resource
Pulumi.
Azure Native. Cosmos DB. Inputs. Gremlin Database Resource - The standard JSON format of a Gremlin database
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Database
Name string - Cosmos DB database name.
- Location string
- The location of the resource group to which the resource belongs.
- Options
Pulumi.
Azure Native. Cosmos DB. Inputs. Create Update Options - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Dictionary<string, string>
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- Account
Name string - Cosmos DB database account name.
- Resource
Gremlin
Database Resource Args - The standard JSON format of a Gremlin database
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Database
Name string - Cosmos DB database name.
- Location string
- The location of the resource group to which the resource belongs.
- Options
Create
Update Options Args - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- map[string]string
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- account
Name String - Cosmos DB database account name.
- resource
Gremlin
Database Resource - The standard JSON format of a Gremlin database
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- database
Name String - Cosmos DB database name.
- location String
- The location of the resource group to which the resource belongs.
- options
Create
Update Options - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Map<String,String>
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- account
Name string - Cosmos DB database account name.
- resource
Gremlin
Database Resource - The standard JSON format of a Gremlin database
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- database
Name string - Cosmos DB database name.
- location string
- The location of the resource group to which the resource belongs.
- options
Create
Update Options - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- {[key: string]: string}
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- account_
name str - Cosmos DB database account name.
- resource
Gremlin
Database Resource Args - The standard JSON format of a Gremlin database
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- database_
name str - Cosmos DB database name.
- location str
- The location of the resource group to which the resource belongs.
- options
Create
Update Options Args - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Mapping[str, str]
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- account
Name String - Cosmos DB database account name.
- resource Property Map
- The standard JSON format of a Gremlin database
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- database
Name String - Cosmos DB database name.
- location String
- The location of the resource group to which the resource belongs.
- options Property Map
- A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Map<String>
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
Outputs
All input properties are implicitly available as output properties. Additionally, the GremlinResourceGremlinDatabase resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the ARM resource.
- Type string
- The type of Azure resource.
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the ARM resource.
- Type string
- The type of Azure resource.
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the ARM resource.
- type String
- The type of Azure resource.
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the ARM resource.
- type string
- The type of Azure resource.
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the ARM resource.
- type str
- The type of Azure resource.
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the ARM resource.
- type String
- The type of Azure resource.
Supporting Types
AutoscaleSettings, AutoscaleSettingsArgs
- Max
Throughput int - Represents maximum throughput, the resource can scale up to.
- Max
Throughput int - Represents maximum throughput, the resource can scale up to.
- max
Throughput Integer - Represents maximum throughput, the resource can scale up to.
- max
Throughput number - Represents maximum throughput, the resource can scale up to.
- max_
throughput int - Represents maximum throughput, the resource can scale up to.
- max
Throughput Number - Represents maximum throughput, the resource can scale up to.
AutoscaleSettingsResponse, AutoscaleSettingsResponseArgs
- Max
Throughput int - Represents maximum throughput, the resource can scale up to.
- Max
Throughput int - Represents maximum throughput, the resource can scale up to.
- max
Throughput Integer - Represents maximum throughput, the resource can scale up to.
- max
Throughput number - Represents maximum throughput, the resource can scale up to.
- max_
throughput int - Represents maximum throughput, the resource can scale up to.
- max
Throughput Number - Represents maximum throughput, the resource can scale up to.
CreateMode, CreateModeArgs
- Default
- Default
- Restore
- Restore
- Create
Mode Default - Default
- Create
Mode Restore - Restore
- Default
- Default
- Restore
- Restore
- Default
- Default
- Restore
- Restore
- DEFAULT
- Default
- RESTORE
- Restore
- "Default"
- Default
- "Restore"
- Restore
CreateUpdateOptions, CreateUpdateOptionsArgs
- Autoscale
Settings Pulumi.Azure Native. Cosmos DB. Inputs. Autoscale Settings - Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
- Throughput int
- Request Units per second. For example, "throughput": 10000.
- Autoscale
Settings AutoscaleSettings - Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
- Throughput int
- Request Units per second. For example, "throughput": 10000.
- autoscale
Settings AutoscaleSettings - Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
- throughput Integer
- Request Units per second. For example, "throughput": 10000.
- autoscale
Settings AutoscaleSettings - Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
- throughput number
- Request Units per second. For example, "throughput": 10000.
- autoscale_
settings AutoscaleSettings - Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
- throughput int
- Request Units per second. For example, "throughput": 10000.
- autoscale
Settings Property Map - Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
- throughput Number
- Request Units per second. For example, "throughput": 10000.
GremlinDatabaseGetPropertiesResponseOptions, GremlinDatabaseGetPropertiesResponseOptionsArgs
- Autoscale
Settings Pulumi.Azure Native. Cosmos DB. Inputs. Autoscale Settings Response - Specifies the Autoscale settings.
- Throughput int
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- Autoscale
Settings AutoscaleSettings Response - Specifies the Autoscale settings.
- Throughput int
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- autoscale
Settings AutoscaleSettings Response - Specifies the Autoscale settings.
- throughput Integer
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- autoscale
Settings AutoscaleSettings Response - Specifies the Autoscale settings.
- throughput number
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- autoscale_
settings AutoscaleSettings Response - Specifies the Autoscale settings.
- throughput int
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- autoscale
Settings Property Map - Specifies the Autoscale settings.
- throughput Number
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
GremlinDatabaseGetPropertiesResponseResource, GremlinDatabaseGetPropertiesResponseResourceArgs
- Etag string
- A system generated property representing the resource etag required for optimistic concurrency control.
- Id string
- Name of the Cosmos DB Gremlin database
- Rid string
- A system generated property. A unique identifier.
- Ts double
- A system generated property that denotes the last updated timestamp of the resource.
- Create
Mode string - Enum to indicate the mode of resource creation.
- Restore
Parameters Pulumi.Azure Native. Cosmos DB. Inputs. Resource Restore Parameters Response - Parameters to indicate the information about the restore
- Etag string
- A system generated property representing the resource etag required for optimistic concurrency control.
- Id string
- Name of the Cosmos DB Gremlin database
- Rid string
- A system generated property. A unique identifier.
- Ts float64
- A system generated property that denotes the last updated timestamp of the resource.
- Create
Mode string - Enum to indicate the mode of resource creation.
- Restore
Parameters ResourceRestore Parameters Response - Parameters to indicate the information about the restore
- etag String
- A system generated property representing the resource etag required for optimistic concurrency control.
- id String
- Name of the Cosmos DB Gremlin database
- rid String
- A system generated property. A unique identifier.
- ts Double
- A system generated property that denotes the last updated timestamp of the resource.
- create
Mode String - Enum to indicate the mode of resource creation.
- restore
Parameters ResourceRestore Parameters Response - Parameters to indicate the information about the restore
- etag string
- A system generated property representing the resource etag required for optimistic concurrency control.
- id string
- Name of the Cosmos DB Gremlin database
- rid string
- A system generated property. A unique identifier.
- ts number
- A system generated property that denotes the last updated timestamp of the resource.
- create
Mode string - Enum to indicate the mode of resource creation.
- restore
Parameters ResourceRestore Parameters Response - Parameters to indicate the information about the restore
- etag str
- A system generated property representing the resource etag required for optimistic concurrency control.
- id str
- Name of the Cosmos DB Gremlin database
- rid str
- A system generated property. A unique identifier.
- ts float
- A system generated property that denotes the last updated timestamp of the resource.
- create_
mode str - Enum to indicate the mode of resource creation.
- restore_
parameters ResourceRestore Parameters Response - Parameters to indicate the information about the restore
- etag String
- A system generated property representing the resource etag required for optimistic concurrency control.
- id String
- Name of the Cosmos DB Gremlin database
- rid String
- A system generated property. A unique identifier.
- ts Number
- A system generated property that denotes the last updated timestamp of the resource.
- create
Mode String - Enum to indicate the mode of resource creation.
- restore
Parameters Property Map - Parameters to indicate the information about the restore
GremlinDatabaseResource, GremlinDatabaseResourceArgs
- Id string
- Name of the Cosmos DB Gremlin database
- Create
Mode string | Pulumi.Azure Native. Cosmos DB. Create Mode - Enum to indicate the mode of resource creation.
- Restore
Parameters Pulumi.Azure Native. Cosmos DB. Inputs. Resource Restore Parameters - Parameters to indicate the information about the restore
- Id string
- Name of the Cosmos DB Gremlin database
- Create
Mode string | CreateMode - Enum to indicate the mode of resource creation.
- Restore
Parameters ResourceRestore Parameters - Parameters to indicate the information about the restore
- id String
- Name of the Cosmos DB Gremlin database
- create
Mode String | CreateMode - Enum to indicate the mode of resource creation.
- restore
Parameters ResourceRestore Parameters - Parameters to indicate the information about the restore
- id string
- Name of the Cosmos DB Gremlin database
- create
Mode string | CreateMode - Enum to indicate the mode of resource creation.
- restore
Parameters ResourceRestore Parameters - Parameters to indicate the information about the restore
- id str
- Name of the Cosmos DB Gremlin database
- create_
mode str | CreateMode - Enum to indicate the mode of resource creation.
- restore_
parameters ResourceRestore Parameters - Parameters to indicate the information about the restore
- id String
- Name of the Cosmos DB Gremlin database
- create
Mode String | "Default" | "Restore" - Enum to indicate the mode of resource creation.
- restore
Parameters Property Map - Parameters to indicate the information about the restore
ResourceRestoreParameters, ResourceRestoreParametersArgs
- Restore
Source string - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- Restore
Timestamp stringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- Restore
With boolTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- Restore
Source string - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- Restore
Timestamp stringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- Restore
With boolTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- restore
Source String - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- restore
Timestamp StringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- restore
With BooleanTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- restore
Source string - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- restore
Timestamp stringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- restore
With booleanTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- restore_
source str - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- restore_
timestamp_ strin_ utc - Time to which the account has to be restored (ISO-8601 format).
- restore_
with_ boolttl_ disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- restore
Source String - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- restore
Timestamp StringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- restore
With BooleanTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
ResourceRestoreParametersResponse, ResourceRestoreParametersResponseArgs
- Restore
Source string - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- Restore
Timestamp stringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- Restore
With boolTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- Restore
Source string - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- Restore
Timestamp stringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- Restore
With boolTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- restore
Source String - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- restore
Timestamp StringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- restore
With BooleanTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- restore
Source string - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- restore
Timestamp stringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- restore
With booleanTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- restore_
source str - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- restore_
timestamp_ strin_ utc - Time to which the account has to be restored (ISO-8601 format).
- restore_
with_ boolttl_ disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
- restore
Source String - The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
- restore
Timestamp StringIn Utc - Time to which the account has to be restored (ISO-8601 format).
- restore
With BooleanTtl Disabled - Specifies whether the restored account will have Time-To-Live disabled upon the successful restore.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cosmosdb:GremlinResourceGremlinDatabase databaseName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/gremlinDatabases/{databaseName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0