Show / Hide Table of Contents

Class ServerlessKubernetesArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServerlessKubernetesArgs
Inherited Members
ResourceArgs.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.AliCloud.CS
Assembly: Pulumi.AliCloud.dll
Syntax
public sealed class ServerlessKubernetesArgs : ResourceArgs

Constructors

View Source

ServerlessKubernetesArgs()

Declaration
public ServerlessKubernetesArgs()

Properties

View Source

ClientCert

The path of client certificate, like ~/.kube/client-cert.pem.

Declaration
public Input<string> ClientCert { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ClientKey

The path of client key, like ~/.kube/client-key.pem.

Declaration
public Input<string> ClientKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ClusterCaCert

The path of cluster ca certificate, like ~/.kube/cluster-ca-cert.pem

Declaration
public Input<string> ClusterCaCert { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DeletionProtection

Whether enable the deletion protection or not.

  • true: Enable deletion protection.
  • false: Disable deletion protection.
Declaration
public Input<bool> DeletionProtection { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

EndpointPublicAccessEnabled

Whether to create internet eip for API Server. Default to false.

Declaration
public Input<bool> EndpointPublicAccessEnabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

ForceUpdate

Default false, when you want to change vpc_id and vswitch_id, you have to set this field to true, then the cluster will be recreated.

Declaration
public Input<bool> ForceUpdate { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

KubeConfig

The path of kube config, like ~/.kube/config.

Declaration
public Input<string> KubeConfig { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The kubernetes cluster's name. It is the only in one Alicloud account.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NamePrefix

Declaration
public Input<string> NamePrefix { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NewNatGateway

Whether to create a new nat gateway while creating kubernetes cluster. Default to true.

Declaration
public Input<bool> NewNatGateway { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

PrivateZone

Enable Privatezone if you need to use the service discovery feature within the serverless cluster. Default to false.

Declaration
public Input<bool> PrivateZone { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Tags

Default nil, A map of tags assigned to the kubernetes cluster .

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

VpcId

The vpc where new kubernetes cluster will be located. Specify one vpc's id, if it is not specified, a new VPC will be built.

Declaration
public Input<string> VpcId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VswitchId

The vswitch where new kubernetes cluster will be located. Specify one vswitch's id, if it is not specified, a new VPC and VSwicth will be built. It must be in the zone which availability_zone specified.

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