Documentation
¶
Index ¶
- func NewRegistryImageBuildAuthConfigList_Override(r RegistryImageBuildAuthConfigList, ...)
- func NewRegistryImageBuildAuthConfigOutputReference_Override(r RegistryImageBuildAuthConfigOutputReference, ...)
- func NewRegistryImageBuildOutputReference_Override(r RegistryImageBuildOutputReference, ...)
- func NewRegistryImageBuildUlimitList_Override(r RegistryImageBuildUlimitList, terraformResource cdktf.IInterpolatingParent, ...)
- func NewRegistryImageBuildUlimitOutputReference_Override(r RegistryImageBuildUlimitOutputReference, ...)
- func NewRegistryImage_Override(r RegistryImage, scope constructs.Construct, id *string, ...)
- func RegistryImage_IsConstruct(x interface{}) *bool
- func RegistryImage_TfResourceType() *string
- type RegistryImage
- type RegistryImageBuild
- type RegistryImageBuildAuthConfig
- type RegistryImageBuildAuthConfigList
- type RegistryImageBuildAuthConfigOutputReference
- type RegistryImageBuildOutputReference
- type RegistryImageBuildUlimit
- type RegistryImageBuildUlimitList
- type RegistryImageBuildUlimitOutputReference
- type RegistryImageConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewRegistryImageBuildAuthConfigList_Override ¶
func NewRegistryImageBuildAuthConfigList_Override(r RegistryImageBuildAuthConfigList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewRegistryImageBuildAuthConfigOutputReference_Override ¶
func NewRegistryImageBuildAuthConfigOutputReference_Override(r RegistryImageBuildAuthConfigOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewRegistryImageBuildOutputReference_Override ¶
func NewRegistryImageBuildOutputReference_Override(r RegistryImageBuildOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewRegistryImageBuildUlimitList_Override ¶
func NewRegistryImageBuildUlimitList_Override(r RegistryImageBuildUlimitList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewRegistryImageBuildUlimitOutputReference_Override ¶
func NewRegistryImageBuildUlimitOutputReference_Override(r RegistryImageBuildUlimitOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewRegistryImage_Override ¶
func NewRegistryImage_Override(r RegistryImage, scope constructs.Construct, id *string, config *RegistryImageConfig)
Create a new {@link https://www.terraform.io/docs/providers/docker/r/registry_image docker_registry_image} Resource.
func RegistryImage_IsConstruct ¶
func RegistryImage_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Use this method instead of `instanceof` to properly detect `Construct` instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the `constructs` library on disk are seen as independent, completely different libraries. As a consequence, the class `Construct` in each copy of the `constructs` library is seen as a different class, and an instance of one class will not test as `instanceof` the other class. `npm install` will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the `constructs` library can be accidentally installed, and `instanceof` will behave unpredictably. It is safest to avoid using `instanceof`, and using this type-testing method instead.
Returns: true if `x` is an object created from a class which extends `Construct`.
func RegistryImage_TfResourceType ¶
func RegistryImage_TfResourceType() *string
Types ¶
type RegistryImage ¶
type RegistryImage interface { cdktf.TerraformResource BuildAttribute() RegistryImageBuildOutputReference BuildAttributeInput() *RegistryImageBuild // Experimental. CdktfStack() cdktf.TerraformStack // Experimental. Connection() interface{} // Experimental. SetConnection(val interface{}) // Experimental. ConstructNodeMetadata() *map[string]interface{} // Experimental. Count() *float64 // Experimental. SetCount(val *float64) // Experimental. DependsOn() *[]*string // Experimental. SetDependsOn(val *[]*string) // Experimental. ForEach() cdktf.ITerraformIterator // Experimental. SetForEach(val cdktf.ITerraformIterator) // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string Id() *string SetId(val *string) IdInput() *string InsecureSkipVerify() interface{} SetInsecureSkipVerify(val interface{}) InsecureSkipVerifyInput() interface{} KeepRemotely() interface{} SetKeepRemotely(val interface{}) KeepRemotelyInput() interface{} // Experimental. Lifecycle() *cdktf.TerraformResourceLifecycle // Experimental. SetLifecycle(val *cdktf.TerraformResourceLifecycle) Name() *string SetName(val *string) NameInput() *string // The tree node. Node() constructs.Node // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) // Experimental. Provisioners() *[]interface{} // Experimental. SetProvisioners(val *[]interface{}) // Experimental. RawOverrides() interface{} Sha256Digest() *string // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *string // Experimental. AddOverride(path *string, value interface{}) // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationForAttribute(terraformAttribute *string) cdktf.IResolvable // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) PutBuildAttribute(value *RegistryImageBuild) ResetBuildAttribute() ResetId() ResetInsecureSkipVerify() ResetKeepRemotely() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() SynthesizeAttributes() *map[string]interface{} // Experimental. ToMetadata() interface{} // Returns a string representation of this construct. ToString() *string // Adds this resource to the terraform JSON output. // Experimental. ToTerraform() interface{} }
Represents a {@link https://www.terraform.io/docs/providers/docker/r/registry_image docker_registry_image}.
func NewRegistryImage ¶
func NewRegistryImage(scope constructs.Construct, id *string, config *RegistryImageConfig) RegistryImage
Create a new {@link https://www.terraform.io/docs/providers/docker/r/registry_image docker_registry_image} Resource.
type RegistryImageBuild ¶
type RegistryImageBuild struct { // The absolute path to the context folder. You can use the helper function '${path.cwd}/context-dir'. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#context RegistryImage#context} Context *string `field:"required" json:"context" yaml:"context"` // auth_config block. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#auth_config RegistryImage#auth_config} AuthConfig interface{} `field:"optional" json:"authConfig" yaml:"authConfig"` // Pairs for build-time variables in the form TODO. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#build_args RegistryImage#build_args} BuildArgs *map[string]*string `field:"optional" json:"buildArgs" yaml:"buildArgs"` // BuildID is an optional identifier that can be passed together with the build request. // // The same identifier can be used to gracefully cancel the build with the cancel request. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#build_id RegistryImage#build_id} BuildId *string `field:"optional" json:"buildId" yaml:"buildId"` // Images to consider as cache sources. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#cache_from RegistryImage#cache_from} CacheFrom *[]*string `field:"optional" json:"cacheFrom" yaml:"cacheFrom"` // Optional parent cgroup for the container. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#cgroup_parent RegistryImage#cgroup_parent} CgroupParent *string `field:"optional" json:"cgroupParent" yaml:"cgroupParent"` // The length of a CPU period in microseconds. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#cpu_period RegistryImage#cpu_period} CpuPeriod *float64 `field:"optional" json:"cpuPeriod" yaml:"cpuPeriod"` // Microseconds of CPU time that the container can get in a CPU period. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#cpu_quota RegistryImage#cpu_quota} CpuQuota *float64 `field:"optional" json:"cpuQuota" yaml:"cpuQuota"` // CPUs in which to allow execution (e.g., `0-3`, `0`, `1`). // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#cpu_set_cpus RegistryImage#cpu_set_cpus} CpuSetCpus *string `field:"optional" json:"cpuSetCpus" yaml:"cpuSetCpus"` // MEMs in which to allow execution (`0-3`, `0`, `1`). // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#cpu_set_mems RegistryImage#cpu_set_mems} CpuSetMems *string `field:"optional" json:"cpuSetMems" yaml:"cpuSetMems"` // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#cpu_shares RegistryImage#cpu_shares} CpuShares *float64 `field:"optional" json:"cpuShares" yaml:"cpuShares"` // Dockerfile file. Defaults to `Dockerfile`. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#dockerfile RegistryImage#dockerfile} Dockerfile *string `field:"optional" json:"dockerfile" yaml:"dockerfile"` // A list of hostnames/IP mappings to add to the container’s /etc/hosts file. Specified in the form ["hostname:IP"]. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#extra_hosts RegistryImage#extra_hosts} ExtraHosts *[]*string `field:"optional" json:"extraHosts" yaml:"extraHosts"` // Always remove intermediate containers. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#force_remove RegistryImage#force_remove} ForceRemove interface{} `field:"optional" json:"forceRemove" yaml:"forceRemove"` // Isolation represents the isolation technology of a container. The supported values are. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#isolation RegistryImage#isolation} Isolation *string `field:"optional" json:"isolation" yaml:"isolation"` // User-defined key/value metadata. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#labels RegistryImage#labels} Labels *map[string]*string `field:"optional" json:"labels" yaml:"labels"` // Set memory limit for build. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#memory RegistryImage#memory} Memory *float64 `field:"optional" json:"memory" yaml:"memory"` // Total memory (memory + swap), -1 to enable unlimited swap. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#memory_swap RegistryImage#memory_swap} MemorySwap *float64 `field:"optional" json:"memorySwap" yaml:"memorySwap"` // Set the networking mode for the RUN instructions during build. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#network_mode RegistryImage#network_mode} NetworkMode *string `field:"optional" json:"networkMode" yaml:"networkMode"` // Do not use the cache when building the image. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#no_cache RegistryImage#no_cache} NoCache interface{} `field:"optional" json:"noCache" yaml:"noCache"` // Set platform if server is multi-platform capable. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#platform RegistryImage#platform} Platform *string `field:"optional" json:"platform" yaml:"platform"` // Attempt to pull the image even if an older image exists locally. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#pull_parent RegistryImage#pull_parent} PullParent interface{} `field:"optional" json:"pullParent" yaml:"pullParent"` // A Git repository URI or HTTP/HTTPS context URI. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#remote_context RegistryImage#remote_context} RemoteContext *string `field:"optional" json:"remoteContext" yaml:"remoteContext"` // Remove intermediate containers after a successful build (default behavior). // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#remove RegistryImage#remove} Remove interface{} `field:"optional" json:"remove" yaml:"remove"` // The security options. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#security_opt RegistryImage#security_opt} SecurityOpt *[]*string `field:"optional" json:"securityOpt" yaml:"securityOpt"` // Set an ID for the build session. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#session_id RegistryImage#session_id} SessionId *string `field:"optional" json:"sessionId" yaml:"sessionId"` // Size of /dev/shm in bytes. The size must be greater than 0. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#shm_size RegistryImage#shm_size} ShmSize *float64 `field:"optional" json:"shmSize" yaml:"shmSize"` // If true the new layers are squashed into a new image with a single new layer. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#squash RegistryImage#squash} Squash interface{} `field:"optional" json:"squash" yaml:"squash"` // Suppress the build output and print image ID on success. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#suppress_output RegistryImage#suppress_output} SuppressOutput interface{} `field:"optional" json:"suppressOutput" yaml:"suppressOutput"` // Set the target build stage to build. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#target RegistryImage#target} Target *string `field:"optional" json:"target" yaml:"target"` // ulimit block. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#ulimit RegistryImage#ulimit} Ulimit interface{} `field:"optional" json:"ulimit" yaml:"ulimit"` // Version of the underlying builder to use. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#version RegistryImage#version} Version *string `field:"optional" json:"version" yaml:"version"` }
type RegistryImageBuildAuthConfig ¶
type RegistryImageBuildAuthConfig struct { // hostname of the registry. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#host_name RegistryImage#host_name} HostName *string `field:"required" json:"hostName" yaml:"hostName"` // the auth token. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#auth RegistryImage#auth} Auth *string `field:"optional" json:"auth" yaml:"auth"` // the user emal. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#email RegistryImage#email} Email *string `field:"optional" json:"email" yaml:"email"` // the identity token. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#identity_token RegistryImage#identity_token} IdentityToken *string `field:"optional" json:"identityToken" yaml:"identityToken"` // the registry password. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#password RegistryImage#password} Password *string `field:"optional" json:"password" yaml:"password"` // the registry token. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#registry_token RegistryImage#registry_token} RegistryToken *string `field:"optional" json:"registryToken" yaml:"registryToken"` // the server address. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#server_address RegistryImage#server_address} ServerAddress *string `field:"optional" json:"serverAddress" yaml:"serverAddress"` // the registry user name. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#user_name RegistryImage#user_name} UserName *string `field:"optional" json:"userName" yaml:"userName"` }
type RegistryImageBuildAuthConfigList ¶
type RegistryImageBuildAuthConfigList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) RegistryImageBuildAuthConfigOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewRegistryImageBuildAuthConfigList ¶
func NewRegistryImageBuildAuthConfigList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) RegistryImageBuildAuthConfigList
type RegistryImageBuildAuthConfigOutputReference ¶
type RegistryImageBuildAuthConfigOutputReference interface { cdktf.ComplexObject Auth() *string SetAuth(val *string) AuthInput() *string // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string Email() *string SetEmail(val *string) EmailInput() *string // Experimental. Fqn() *string HostName() *string SetHostName(val *string) HostNameInput() *string IdentityToken() *string SetIdentityToken(val *string) IdentityTokenInput() *string InternalValue() interface{} SetInternalValue(val interface{}) Password() *string SetPassword(val *string) PasswordInput() *string RegistryToken() *string SetRegistryToken(val *string) RegistryTokenInput() *string ServerAddress() *string SetServerAddress(val *string) ServerAddressInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) UserName() *string SetUserName(val *string) UserNameInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetAuth() ResetEmail() ResetIdentityToken() ResetPassword() ResetRegistryToken() ResetServerAddress() ResetUserName() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewRegistryImageBuildAuthConfigOutputReference ¶
func NewRegistryImageBuildAuthConfigOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) RegistryImageBuildAuthConfigOutputReference
type RegistryImageBuildOutputReference ¶
type RegistryImageBuildOutputReference interface { cdktf.ComplexObject AuthConfig() RegistryImageBuildAuthConfigList AuthConfigInput() interface{} BuildArgs() *map[string]*string SetBuildArgs(val *map[string]*string) BuildArgsInput() *map[string]*string BuildId() *string SetBuildId(val *string) BuildIdInput() *string CacheFrom() *[]*string SetCacheFrom(val *[]*string) CacheFromInput() *[]*string CgroupParent() *string SetCgroupParent(val *string) CgroupParentInput() *string // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Context() *string SetContext(val *string) ContextInput() *string CpuPeriod() *float64 SetCpuPeriod(val *float64) CpuPeriodInput() *float64 CpuQuota() *float64 SetCpuQuota(val *float64) CpuQuotaInput() *float64 CpuSetCpus() *string SetCpuSetCpus(val *string) CpuSetCpusInput() *string CpuSetMems() *string SetCpuSetMems(val *string) CpuSetMemsInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string Dockerfile() *string SetDockerfile(val *string) DockerfileInput() *string ExtraHosts() *[]*string SetExtraHosts(val *[]*string) ExtraHostsInput() *[]*string ForceRemove() interface{} SetForceRemove(val interface{}) ForceRemoveInput() interface{} // Experimental. Fqn() *string InternalValue() *RegistryImageBuild SetInternalValue(val *RegistryImageBuild) Isolation() *string SetIsolation(val *string) IsolationInput() *string Labels() *map[string]*string SetLabels(val *map[string]*string) LabelsInput() *map[string]*string Memory() *float64 SetMemory(val *float64) MemoryInput() *float64 MemorySwap() *float64 SetMemorySwap(val *float64) MemorySwapInput() *float64 NetworkMode() *string SetNetworkMode(val *string) NetworkModeInput() *string NoCache() interface{} SetNoCache(val interface{}) NoCacheInput() interface{} Platform() *string SetPlatform(val *string) PlatformInput() *string PullParent() interface{} SetPullParent(val interface{}) PullParentInput() interface{} RemoteContext() *string SetRemoteContext(val *string) RemoteContextInput() *string Remove() interface{} SetRemove(val interface{}) RemoveInput() interface{} SecurityOpt() *[]*string SetSecurityOpt(val *[]*string) SecurityOptInput() *[]*string SessionId() *string SetSessionId(val *string) SessionIdInput() *string ShmSize() *float64 SetShmSize(val *float64) ShmSizeInput() *float64 Squash() interface{} SetSquash(val interface{}) SquashInput() interface{} SuppressOutput() interface{} SetSuppressOutput(val interface{}) SuppressOutputInput() interface{} Target() *string SetTarget(val *string) TargetInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) Ulimit() RegistryImageBuildUlimitList UlimitInput() interface{} Version() *string SetVersion(val *string) VersionInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutAuthConfig(value interface{}) PutUlimit(value interface{}) ResetAuthConfig() ResetBuildArgs() ResetBuildId() ResetCacheFrom() ResetCgroupParent() ResetCpuPeriod() ResetCpuQuota() ResetCpuSetCpus() ResetCpuSetMems() ResetDockerfile() ResetExtraHosts() ResetForceRemove() ResetIsolation() ResetLabels() ResetMemory() ResetMemorySwap() ResetNetworkMode() ResetNoCache() ResetPlatform() ResetPullParent() ResetRemoteContext() ResetRemove() ResetSecurityOpt() ResetSessionId() ResetShmSize() ResetSquash() ResetSuppressOutput() ResetTarget() ResetUlimit() ResetVersion() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewRegistryImageBuildOutputReference ¶
func NewRegistryImageBuildOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) RegistryImageBuildOutputReference
type RegistryImageBuildUlimit ¶
type RegistryImageBuildUlimit struct { // soft limit. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#hard RegistryImage#hard} Hard *float64 `field:"required" json:"hard" yaml:"hard"` // type of ulimit, e.g. `nofile`. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#name RegistryImage#name} Name *string `field:"required" json:"name" yaml:"name"` // hard limit. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#soft RegistryImage#soft} Soft *float64 `field:"required" json:"soft" yaml:"soft"` }
type RegistryImageBuildUlimitList ¶
type RegistryImageBuildUlimitList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) RegistryImageBuildUlimitOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewRegistryImageBuildUlimitList ¶
func NewRegistryImageBuildUlimitList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) RegistryImageBuildUlimitList
type RegistryImageBuildUlimitOutputReference ¶
type RegistryImageBuildUlimitOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string Hard() *float64 SetHard(val *float64) HardInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) Name() *string SetName(val *string) NameInput() *string Soft() *float64 SetSoft(val *float64) SoftInput() *float64 // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewRegistryImageBuildUlimitOutputReference ¶
func NewRegistryImageBuildUlimitOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) RegistryImageBuildUlimitOutputReference
type RegistryImageConfig ¶
type RegistryImageConfig struct { // Experimental. Connection interface{} `field:"optional" json:"connection" yaml:"connection"` // Experimental. Count *float64 `field:"optional" json:"count" yaml:"count"` // Experimental. DependsOn *[]cdktf.ITerraformDependable `field:"optional" json:"dependsOn" yaml:"dependsOn"` // Experimental. ForEach cdktf.ITerraformIterator `field:"optional" json:"forEach" yaml:"forEach"` // Experimental. Lifecycle *cdktf.TerraformResourceLifecycle `field:"optional" json:"lifecycle" yaml:"lifecycle"` // Experimental. Provider cdktf.TerraformProvider `field:"optional" json:"provider" yaml:"provider"` // Experimental. Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"` // The name of the Docker image. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#name RegistryImage#name} Name *string `field:"required" json:"name" yaml:"name"` // build block. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#build RegistryImage#build} BuildAttribute *RegistryImageBuild `field:"optional" json:"buildAttribute" yaml:"buildAttribute"` // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#id RegistryImage#id}. // // Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. // If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. Id *string `field:"optional" json:"id" yaml:"id"` // If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#insecure_skip_verify RegistryImage#insecure_skip_verify} InsecureSkipVerify interface{} `field:"optional" json:"insecureSkipVerify" yaml:"insecureSkipVerify"` // If true, then the Docker image won't be deleted on destroy operation. // // If this is false, it will delete the image from the docker registry on destroy operation. Defaults to `false` // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/docker/r/registry_image#keep_remotely RegistryImage#keep_remotely} KeepRemotely interface{} `field:"optional" json:"keepRemotely" yaml:"keepRemotely"` }
Source Files
¶
- registryimage.go
- registryimage_RegistryImage.go
- registryimage_RegistryImageBuild.go
- registryimage_RegistryImageBuildAuthConfig.go
- registryimage_RegistryImageBuildAuthConfigList.go
- registryimage_RegistryImageBuildAuthConfigList__runtime_type_checks.go
- registryimage_RegistryImageBuildAuthConfigOutputReference.go
- registryimage_RegistryImageBuildAuthConfigOutputReference__runtime_type_checks.go
- registryimage_RegistryImageBuildOutputReference.go
- registryimage_RegistryImageBuildOutputReference__runtime_type_checks.go
- registryimage_RegistryImageBuildUlimit.go
- registryimage_RegistryImageBuildUlimitList.go
- registryimage_RegistryImageBuildUlimitList__runtime_type_checks.go
- registryimage_RegistryImageBuildUlimitOutputReference.go
- registryimage_RegistryImageBuildUlimitOutputReference__runtime_type_checks.go
- registryimage_RegistryImageConfig.go
- registryimage_RegistryImage__runtime_type_checks.go