Show / Hide Table of Contents

Class GetEngineVersionsArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetEngineVersionsArgs
Inherited Members
InvokeArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Container
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class GetEngineVersionsArgs : InvokeArgs

Constructors

View Source

GetEngineVersionsArgs()

Declaration
public GetEngineVersionsArgs()

Properties

View Source

Location

The location (region or zone) to list versions for. Must exactly match the location the cluster will be deployed in, or listed versions may not be available. If location, region, and zone are not specified, the provider-level zone must be set and is used instead.

Declaration
public string Location { get; set; }
Property Value
Type Description
System.String
View Source

Project

ID of the project to list available cluster versions for. Should match the project the cluster will be deployed to. Defaults to the project that the provider is authenticated with.

Declaration
public string Project { get; set; }
Property Value
Type Description
System.String
View Source

VersionPrefix

If provided, the provider will only return versions that match the string prefix. For example, 1.11. will match all 1.11 series releases. Since this is just a string match, it's recommended that you append a . after minor versions to ensure that prefixes such as 1.1 don't match versions like 1.12.5-gke.10 accidentally. See the docs on versioning schema for full details on how version strings are formatted.

Declaration
public string VersionPrefix { get; set; }
Property Value
Type Description
System.String
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.