Package org.cdk8s
Class HelmProps.Jsii$Proxy
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.HelmProps.Jsii$Proxy
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Nested classes/interfaces inherited from interface org.cdk8s.HelmProps
HelmProps.Builder, HelmProps.Jsii$Proxy
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Jsii$Proxy(HelmProps.Builder builder)
Constructor that initializes the object based on literal property values passed by theHelmProps.Builder
.protected
Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNode
$jsii$toJson()
boolean
equals(Object o)
String
getChart()
The chart name to use.String
getHelmExecutable()
The local helm executable to use in order to create the manifest the chart.List<String>
getHelmFlags()
Additional flags to add to the `helm` execution.String
getReleaseName()
The release name.Map<String,Object>
getValues()
Values to pass to the chart.int
hashCode()
-
-
-
Constructor Detail
-
Jsii$Proxy
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.- Parameters:
objRef
- Reference to the JSII managed object.
-
Jsii$Proxy
protected Jsii$Proxy(HelmProps.Builder builder)
Constructor that initializes the object based on literal property values passed by theHelmProps.Builder
.
-
-
Method Detail
-
getChart
public final String getChart()
Description copied from interface:HelmProps
The chart name to use. It can be a chart from a helm repository or a local directory.This name is passed to
helm template
and has all the relevant semantics.Example:
"bitnami/redis"
-
getHelmExecutable
public final String getHelmExecutable()
Description copied from interface:HelmProps
The local helm executable to use in order to create the manifest the chart.Default: "helm"
- Specified by:
getHelmExecutable
in interfaceHelmProps
-
getHelmFlags
public final List<String> getHelmFlags()
Description copied from interface:HelmProps
Additional flags to add to the `helm` execution.Default: []
- Specified by:
getHelmFlags
in interfaceHelmProps
-
getReleaseName
public final String getReleaseName()
Description copied from interface:HelmProps
The release name.Default: - if unspecified, a name will be allocated based on the construct path
- Specified by:
getReleaseName
in interfaceHelmProps
-
getValues
public final Map<String,Object> getValues()
Description copied from interface:HelmProps
Values to pass to the chart.Default: - If no values are specified, chart will use the defaults.
-
$jsii$toJson
@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
- Specified by:
$jsii$toJson
in interfacesoftware.amazon.jsii.JsiiSerializable
-
-