Show / Hide Table of Contents

Namespace Pulumi.Gcp.Filestore

Classes

Instance

A Google Cloud Filestore instance.

To get more information about Instance, see:

  • API documentation
  • How-to Guides
  • Official Documentation
  • Use with Kubernetes
  • Copying Data In/Out

Example Usage - Filestore Instance Basic

using Pulumi;
using Gcp = Pulumi.Gcp;

class MyStack : Stack
{
public MyStack()
{
    var instance = new Gcp.Filestore.Instance("instance", new Gcp.Filestore.InstanceArgs
    {
        FileShares = new Gcp.Filestore.Inputs.InstanceFileSharesArgs
        {
            CapacityGb = 2660,
            Name = "share1",
        },
        Networks = 
        {
            new Gcp.Filestore.Inputs.InstanceNetworkArgs
            {
                Modes = 
                {
                    "MODE_IPV4",
                },
                Network = "default",
            },
        },
        Tier = "PREMIUM",
        Zone = "us-central1-b",
    });
}

}

InstanceArgs

InstanceState

Back to top Copyright 2016-2020, Pulumi Corporation.