Show / Hide Table of Contents

Namespace Pulumi.Gcp.GameServices

Classes

GameServerCluster

A game server cluster resource.

To get more information about GameServerCluster, see:

  • API documentation
  • How-to Guides
  • Official Documentation

GameServerClusterArgs

GameServerClusterState

GameServerConfig

A game server config resource. Configs are global and immutable.

To get more information about GameServerConfig, see:

  • API documentation
  • How-to Guides
  • Official Documentation

GameServerConfigArgs

GameServerConfigState

GameServerDeployment

A game server deployment resource.

To get more information about GameServerDeployment, see:

  • API documentation
  • How-to Guides
  • Official Documentation

Example Usage - Game Service Deployment Basic

using Pulumi;
using Gcp = Pulumi.Gcp;

class MyStack : Stack
{
public MyStack()
{
    var @default = new Gcp.GameServices.GameServerDeployment("default", new Gcp.GameServices.GameServerDeploymentArgs
    {
        DeploymentId = "tf-test-deployment",
        Description = "a deployment description",
    });
}

}

GameServerDeploymentArgs

GameServerDeploymentRollout

This represents the rollout state. This is part of the game server deployment.

To get more information about GameServerDeploymentRollout, see:

  • API documentation
  • How-to Guides
  • Official Documentation

GameServerDeploymentRolloutArgs

GameServerDeploymentRolloutState

GameServerDeploymentState

Realm

A Realm resource.

To get more information about Realm, see:

  • API documentation
  • How-to Guides
  • Official Documentation

Example Usage - Game Service Realm Basic

using Pulumi;
using Gcp = Pulumi.Gcp;

class MyStack : Stack
{
public MyStack()
{
    var @default = new Gcp.GameServices.Realm("default", new Gcp.GameServices.RealmArgs
    {
        RealmId = "tf-test-realm",
        TimeZone = "EST",
        Location = "global",
        Description = "one of the nine",
    });
}

}

RealmArgs

RealmState

Back to top Copyright 2016-2020, Pulumi Corporation.