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",
},
},
});
}
}