Show / Hide Table of Contents

Namespace Pulumi.Gcp.Datastore

Classes

DataStoreIndex

Describes a composite index for Cloud Datastore.

To get more information about Index, see:

  • API documentation
  • How-to Guides
  • Official Documentation

Example Usage - Datastore Index

using Pulumi;
using Gcp = Pulumi.Gcp;

class MyStack : Stack
{
public MyStack()
{
    var @default = new Gcp.Datastore.DataStoreIndex("default", new Gcp.Datastore.DataStoreIndexArgs
    {
        Kind = "foo",
        Properties = 
        {
            new Gcp.Datastore.Inputs.DataStoreIndexPropertyArgs
            {
                Direction = "ASCENDING",
                Name = "property_a",
            },
            new Gcp.Datastore.Inputs.DataStoreIndexPropertyArgs
            {
                Direction = "ASCENDING",
                Name = "property_b",
            },
        },
    });
}

}

DataStoreIndexArgs

DataStoreIndexState

Back to top Copyright 2016-2020, Pulumi Corporation.