Skip to content

Files

Latest commit

1a1df4a · Jan 10, 2024

History

History
18245 lines (11269 loc) · 788 KB
·

service.go.md

File metadata and controls

18245 lines (11269 loc) · 788 KB
·

service Submodule

Constructs

Service

Represents a {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service docker_service}.

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewService(scope Construct, id *string, config ServiceConfig) Service
Name Type Description
scope github.com/aws/constructs-go/constructs/v10.Construct The scope in which to define this construct.
id *string The scoped construct ID.
config ServiceConfig No description.

scopeRequired
  • Type: github.com/aws/constructs-go/constructs/v10.Construct

The scope in which to define this construct.


idRequired
  • Type: *string

The scoped construct ID.

Must be unique amongst siblings in the same scope


configRequired

Methods

Name Description
ToString Returns a string representation of this construct.
AddOverride No description.
OverrideLogicalId Overrides the auto-generated logical ID with a specific ID.
ResetOverrideLogicalId Resets a previously passed logical Id to use the auto-generated logical id again.
ToHclTerraform No description.
ToMetadata No description.
ToTerraform Adds this resource to the terraform JSON output.
AddMoveTarget Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
HasResourceMove No description.
ImportFrom No description.
InterpolationForAttribute No description.
MoveFromId Move the resource corresponding to "id" to this resource.
MoveTo Moves this resource to the target resource given by moveTarget.
MoveToId Moves this resource to the resource corresponding to "id".
PutAuth No description.
PutConvergeConfig No description.
PutEndpointSpec No description.
PutLabels No description.
PutMode No description.
PutRollbackConfig No description.
PutTaskSpec No description.
PutUpdateConfig No description.
ResetAuth No description.
ResetConvergeConfig No description.
ResetEndpointSpec No description.
ResetId No description.
ResetLabels No description.
ResetMode No description.
ResetRollbackConfig No description.
ResetUpdateConfig No description.

ToString
func ToString() *string

Returns a string representation of this construct.

AddOverride
func AddOverride(path *string, value interface{})
pathRequired
  • Type: *string

valueRequired
  • Type: interface{}

OverrideLogicalId
func OverrideLogicalId(newLogicalId *string)

Overrides the auto-generated logical ID with a specific ID.

newLogicalIdRequired
  • Type: *string

The new logical ID to use for this stack element.


ResetOverrideLogicalId
func ResetOverrideLogicalId()

Resets a previously passed logical Id to use the auto-generated logical id again.

ToHclTerraform
func ToHclTerraform() interface{}
ToMetadata
func ToMetadata() interface{}
ToTerraform
func ToTerraform() interface{}

Adds this resource to the terraform JSON output.

AddMoveTarget
func AddMoveTarget(moveTarget *string)

Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.

moveTargetRequired
  • Type: *string

The string move target that will correspond to this resource.


GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

HasResourceMove
func HasResourceMove() interface{}
ImportFrom
func ImportFrom(id *string, provider TerraformProvider)
idRequired
  • Type: *string

providerOptional
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider

InterpolationForAttribute
func InterpolationForAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

MoveFromId
func MoveFromId(id *string)

Move the resource corresponding to "id" to this resource.

Note that the resource being moved from must be marked as moved using it's instance function.

idRequired
  • Type: *string

Full id of resource being moved from, e.g. "aws_s3_bucket.example".


MoveTo
func MoveTo(moveTarget *string, index interface{})

Moves this resource to the target resource given by moveTarget.

moveTargetRequired
  • Type: *string

The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.


indexOptional
  • Type: interface{}

Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.


MoveToId
func MoveToId(id *string)

Moves this resource to the resource corresponding to "id".

idRequired
  • Type: *string

Full id of resource to move to, e.g. "aws_s3_bucket.example".


PutAuth
func PutAuth(value ServiceAuth)
valueRequired

PutConvergeConfig
func PutConvergeConfig(value ServiceConvergeConfig)
valueRequired

PutEndpointSpec
func PutEndpointSpec(value ServiceEndpointSpec)
valueRequired

PutLabels
func PutLabels(value interface{})
valueRequired
  • Type: interface{}

PutMode
func PutMode(value ServiceMode)
valueRequired

PutRollbackConfig
func PutRollbackConfig(value ServiceRollbackConfig)
valueRequired

PutTaskSpec
func PutTaskSpec(value ServiceTaskSpec)
valueRequired

PutUpdateConfig
func PutUpdateConfig(value ServiceUpdateConfig)
valueRequired

ResetAuth
func ResetAuth()
ResetConvergeConfig
func ResetConvergeConfig()
ResetEndpointSpec
func ResetEndpointSpec()
ResetId
func ResetId()
ResetLabels
func ResetLabels()
ResetMode
func ResetMode()
ResetRollbackConfig
func ResetRollbackConfig()
ResetUpdateConfig
func ResetUpdateConfig()

Static Functions

Name Description
IsConstruct Checks if x is a construct.
IsTerraformElement No description.
IsTerraformResource No description.
GenerateConfigForImport Generates CDKTF code for importing a Service resource upon running "cdktf plan ".

IsConstruct
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.Service_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.

xRequired
  • Type: interface{}

Any object.


IsTerraformElement
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.Service_IsTerraformElement(x interface{}) *bool
xRequired
  • Type: interface{}

IsTerraformResource
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.Service_IsTerraformResource(x interface{}) *bool
xRequired
  • Type: interface{}

GenerateConfigForImport
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.Service_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource

Generates CDKTF code for importing a Service resource upon running "cdktf plan ".

scopeRequired
  • Type: github.com/aws/constructs-go/constructs/v10.Construct

The scope in which to define this construct.


importToIdRequired
  • Type: *string

The construct id used in the generated config for the Service to import.


importFromIdRequired
  • Type: *string

The id of the existing Service that should be imported.

Refer to the {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#import import section} in the documentation of this resource for the id to use


providerOptional
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider

? Optional instance of the provider where the Service to import is found.


Properties

Name Type Description
Node github.com/aws/constructs-go/constructs/v10.Node The tree node.
CdktfStack github.com/hashicorp/terraform-cdk-go/cdktf.TerraformStack No description.
Fqn *string No description.
FriendlyUniqueId *string No description.
TerraformMetaArguments *map[string]interface{} No description.
TerraformResourceType *string No description.
TerraformGeneratorMetadata github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata No description.
Connection interface{} No description.
Count interface{} No description.
DependsOn *[]*string No description.
ForEach github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator No description.
Lifecycle github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle No description.
Provider github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider No description.
Provisioners *[]interface{} No description.
Auth ServiceAuthOutputReference No description.
ConvergeConfig ServiceConvergeConfigOutputReference No description.
EndpointSpec ServiceEndpointSpecOutputReference No description.
Labels ServiceLabelsList No description.
Mode ServiceModeOutputReference No description.
RollbackConfig ServiceRollbackConfigOutputReference No description.
TaskSpec ServiceTaskSpecOutputReference No description.
UpdateConfig ServiceUpdateConfigOutputReference No description.
AuthInput ServiceAuth No description.
ConvergeConfigInput ServiceConvergeConfig No description.
EndpointSpecInput ServiceEndpointSpec No description.
IdInput *string No description.
LabelsInput interface{} No description.
ModeInput ServiceMode No description.
NameInput *string No description.
RollbackConfigInput ServiceRollbackConfig No description.
TaskSpecInput ServiceTaskSpec No description.
UpdateConfigInput ServiceUpdateConfig No description.
Id *string No description.
Name *string No description.

NodeRequired
func Node() Node
  • Type: github.com/aws/constructs-go/constructs/v10.Node

The tree node.


CdktfStackRequired
func CdktfStack() TerraformStack
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformStack

FqnRequired
func Fqn() *string
  • Type: *string

FriendlyUniqueIdRequired
func FriendlyUniqueId() *string
  • Type: *string

TerraformMetaArgumentsRequired
func TerraformMetaArguments() *map[string]interface{}
  • Type: *map[string]interface{}

TerraformResourceTypeRequired
func TerraformResourceType() *string
  • Type: *string

TerraformGeneratorMetadataOptional
func TerraformGeneratorMetadata() TerraformProviderGeneratorMetadata
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata

ConnectionOptional
func Connection() interface{}
  • Type: interface{}

CountOptional
func Count() interface{}
  • Type: interface{}

DependsOnOptional
func DependsOn() *[]*string
  • Type: *[]*string

ForEachOptional
func ForEach() ITerraformIterator
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator

LifecycleOptional
func Lifecycle() TerraformResourceLifecycle
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle

ProviderOptional
func Provider() TerraformProvider
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider

ProvisionersOptional
func Provisioners() *[]interface{}
  • Type: *[]interface{}

AuthRequired
func Auth() ServiceAuthOutputReference

ConvergeConfigRequired
func ConvergeConfig() ServiceConvergeConfigOutputReference

EndpointSpecRequired
func EndpointSpec() ServiceEndpointSpecOutputReference

LabelsRequired
func Labels() ServiceLabelsList

ModeRequired
func Mode() ServiceModeOutputReference

RollbackConfigRequired
func RollbackConfig() ServiceRollbackConfigOutputReference

TaskSpecRequired
func TaskSpec() ServiceTaskSpecOutputReference

UpdateConfigRequired
func UpdateConfig() ServiceUpdateConfigOutputReference

AuthInputOptional
func AuthInput() ServiceAuth

ConvergeConfigInputOptional
func ConvergeConfigInput() ServiceConvergeConfig

EndpointSpecInputOptional
func EndpointSpecInput() ServiceEndpointSpec

IdInputOptional
func IdInput() *string
  • Type: *string

LabelsInputOptional
func LabelsInput() interface{}
  • Type: interface{}

ModeInputOptional
func ModeInput() ServiceMode

NameInputOptional
func NameInput() *string
  • Type: *string

RollbackConfigInputOptional
func RollbackConfigInput() ServiceRollbackConfig

TaskSpecInputOptional
func TaskSpecInput() ServiceTaskSpec

UpdateConfigInputOptional
func UpdateConfigInput() ServiceUpdateConfig

IdRequired
func Id() *string
  • Type: *string

NameRequired
func Name() *string
  • Type: *string

Constants

Name Type Description
TfResourceType *string No description.

TfResourceTypeRequired
func TfResourceType() *string
  • Type: *string

Structs

ServiceAuth

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceAuth {
	ServerAddress: *string,
	Password: *string,
	Username: *string,
}

Properties

Name Type Description
ServerAddress *string The address of the server for the authentication.
Password *string The password.
Username *string The username.

ServerAddressRequired
ServerAddress *string
  • Type: *string

The address of the server for the authentication.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#server_address Service#server_address}


PasswordOptional
Password *string
  • Type: *string

The password.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#password Service#password}


UsernameOptional
Username *string
  • Type: *string

The username.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#username Service#username}


ServiceConfig

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceConfig {
	Connection: interface{},
	Count: interface{},
	DependsOn: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable,
	ForEach: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator,
	Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle,
	Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider,
	Provisioners: *[]interface{},
	Name: *string,
	TaskSpec: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpec,
	Auth: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceAuth,
	ConvergeConfig: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceConvergeConfig,
	EndpointSpec: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceEndpointSpec,
	Id: *string,
	Labels: interface{},
	Mode: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceMode,
	RollbackConfig: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceRollbackConfig,
	UpdateConfig: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceUpdateConfig,
}

Properties

Name Type Description
Connection interface{} No description.
Count interface{} No description.
DependsOn *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable No description.
ForEach github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator No description.
Lifecycle github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle No description.
Provider github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider No description.
Provisioners *[]interface{} No description.
Name *string Name of the service.
TaskSpec ServiceTaskSpec task_spec block.
Auth ServiceAuth auth block.
ConvergeConfig ServiceConvergeConfig converge_config block.
EndpointSpec ServiceEndpointSpec endpoint_spec block.
Id *string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#id Service#id}.
Labels interface{} labels block.
Mode ServiceMode mode block.
RollbackConfig ServiceRollbackConfig rollback_config block.
UpdateConfig ServiceUpdateConfig update_config block.

ConnectionOptional
Connection interface{}
  • Type: interface{}

CountOptional
Count interface{}
  • Type: interface{}

DependsOnOptional
DependsOn *[]ITerraformDependable
  • Type: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable

ForEachOptional
ForEach ITerraformIterator
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator

LifecycleOptional
Lifecycle TerraformResourceLifecycle
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle

ProviderOptional
Provider TerraformProvider
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider

ProvisionersOptional
Provisioners *[]interface{}
  • Type: *[]interface{}

NameRequired
Name *string
  • Type: *string

Name of the service.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#name Service#name}


TaskSpecRequired
TaskSpec ServiceTaskSpec

task_spec block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#task_spec Service#task_spec}


AuthOptional
Auth ServiceAuth

auth block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#auth Service#auth}


ConvergeConfigOptional
ConvergeConfig ServiceConvergeConfig

converge_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#converge_config Service#converge_config}


EndpointSpecOptional
EndpointSpec ServiceEndpointSpec

endpoint_spec block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#endpoint_spec Service#endpoint_spec}


IdOptional
Id *string
  • Type: *string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#id Service#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.


LabelsOptional
Labels interface{}
  • Type: interface{}

labels block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#labels Service#labels}


ModeOptional
Mode ServiceMode

mode block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#mode Service#mode}


RollbackConfigOptional
RollbackConfig ServiceRollbackConfig

rollback_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#rollback_config Service#rollback_config}


UpdateConfigOptional
UpdateConfig ServiceUpdateConfig

update_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#update_config Service#update_config}


ServiceConvergeConfig

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceConvergeConfig {
	Delay: *string,
	Timeout: *string,
}

Properties

Name Type Description
Delay *string The interval to check if the desired state is reached (ms|s). Defaults to 7s.
Timeout *string The timeout of the service to reach the desired state (s|m). Defaults to 3m.

DelayOptional
Delay *string
  • Type: *string

The interval to check if the desired state is reached (ms|s). Defaults to 7s.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#delay Service#delay}


TimeoutOptional
Timeout *string
  • Type: *string

The timeout of the service to reach the desired state (s|m). Defaults to 3m.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#timeout Service#timeout}


ServiceEndpointSpec

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceEndpointSpec {
	Mode: *string,
	Ports: interface{},
}

Properties

Name Type Description
Mode *string The mode of resolution to use for internal load balancing between tasks.
Ports interface{} ports block.

ModeOptional
Mode *string
  • Type: *string

The mode of resolution to use for internal load balancing between tasks.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#mode Service#mode}


PortsOptional
Ports interface{}
  • Type: interface{}

ports block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#ports Service#ports}


ServiceEndpointSpecPorts

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceEndpointSpecPorts {
	TargetPort: *f64,
	Name: *string,
	Protocol: *string,
	PublishedPort: *f64,
	PublishMode: *string,
}

Properties

Name Type Description
TargetPort *f64 The port inside the container.
Name *string A random name for the port.
Protocol *string Rrepresents the protocol of a port: tcp, udp or sctp. Defaults to tcp.
PublishedPort *f64 The port on the swarm hosts.
PublishMode *string Represents the mode in which the port is to be published: 'ingress' or 'host'. Defaults to ingress.

TargetPortRequired
TargetPort *f64
  • Type: *f64

The port inside the container.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#target_port Service#target_port}


NameOptional
Name *string
  • Type: *string

A random name for the port.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#name Service#name}


ProtocolOptional
Protocol *string
  • Type: *string

Rrepresents the protocol of a port: tcp, udp or sctp. Defaults to tcp.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#protocol Service#protocol}


PublishedPortOptional
PublishedPort *f64
  • Type: *f64

The port on the swarm hosts.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#published_port Service#published_port}


PublishModeOptional
PublishMode *string
  • Type: *string

Represents the mode in which the port is to be published: 'ingress' or 'host'. Defaults to ingress.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#publish_mode Service#publish_mode}


ServiceLabels

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceLabels {
	Label: *string,
	Value: *string,
}

Properties

Name Type Description
Label *string Name of the label.
Value *string Value of the label.

LabelRequired
Label *string
  • Type: *string

Name of the label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#label Service#label}


ValueRequired
Value *string
  • Type: *string

Value of the label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#value Service#value}


ServiceMode

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceMode {
	Global: interface{},
	Replicated: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceModeReplicated,
}

Properties

Name Type Description
Global interface{} The global service mode. Defaults to false.
Replicated ServiceModeReplicated replicated block.

GlobalOptional
Global interface{}
  • Type: interface{}

The global service mode. Defaults to false.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#global Service#global}


ReplicatedOptional
Replicated ServiceModeReplicated

replicated block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#replicated Service#replicated}


ServiceModeReplicated

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceModeReplicated {
	Replicas: *f64,
}

Properties

Name Type Description
Replicas *f64 The amount of replicas of the service. Defaults to 1.

ReplicasOptional
Replicas *f64
  • Type: *f64

The amount of replicas of the service. Defaults to 1.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#replicas Service#replicas}


ServiceRollbackConfig

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceRollbackConfig {
	Delay: *string,
	FailureAction: *string,
	MaxFailureRatio: *string,
	Monitor: *string,
	Order: *string,
	Parallelism: *f64,
}

Properties

Name Type Description
Delay *string Delay between task rollbacks (ns|us|ms|s|m|h). Defaults to 0s.
FailureAction *string Action on rollback failure: pause | continue. Defaults to pause.
MaxFailureRatio *string Failure rate to tolerate during a rollback. Defaults to 0.0.
Monitor *string Duration after each task rollback to monitor for failure (ns|us|ms|s|m|h). Defaults to 5s.
Order *string Rollback order: either 'stop-first' or 'start-first'. Defaults to stop-first.
Parallelism *f64 Maximum number of tasks to be rollbacked in one iteration. Defaults to 1.

DelayOptional
Delay *string
  • Type: *string

Delay between task rollbacks (ns|us|ms|s|m|h). Defaults to 0s.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#delay Service#delay}


FailureActionOptional
FailureAction *string
  • Type: *string

Action on rollback failure: pause | continue. Defaults to pause.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#failure_action Service#failure_action}


MaxFailureRatioOptional
MaxFailureRatio *string
  • Type: *string

Failure rate to tolerate during a rollback. Defaults to 0.0.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#max_failure_ratio Service#max_failure_ratio}


MonitorOptional
Monitor *string
  • Type: *string

Duration after each task rollback to monitor for failure (ns|us|ms|s|m|h). Defaults to 5s.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#monitor Service#monitor}


OrderOptional
Order *string
  • Type: *string

Rollback order: either 'stop-first' or 'start-first'. Defaults to stop-first.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#order Service#order}


ParallelismOptional
Parallelism *f64
  • Type: *f64

Maximum number of tasks to be rollbacked in one iteration. Defaults to 1.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#parallelism Service#parallelism}


ServiceTaskSpec

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpec {
	ContainerSpec: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecContainerSpec,
	ForceUpdate: *f64,
	LogDriver: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecLogDriver,
	NetworksAdvanced: interface{},
	Placement: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecPlacement,
	Resources: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecResources,
	RestartPolicy: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecRestartPolicy,
	Runtime: *string,
}

Properties

Name Type Description
ContainerSpec ServiceTaskSpecContainerSpec container_spec block.
ForceUpdate *f64 A counter that triggers an update even if no relevant parameters have been changed. See the spec.
LogDriver ServiceTaskSpecLogDriver log_driver block.
NetworksAdvanced interface{} networks_advanced block.
Placement ServiceTaskSpecPlacement placement block.
Resources ServiceTaskSpecResources resources block.
RestartPolicy ServiceTaskSpecRestartPolicy restart_policy block.
Runtime *string Runtime is the type of runtime specified for the task executor. See the types.

ContainerSpecRequired
ContainerSpec ServiceTaskSpecContainerSpec

container_spec block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#container_spec Service#container_spec}


ForceUpdateOptional
ForceUpdate *f64
  • Type: *f64

A counter that triggers an update even if no relevant parameters have been changed. See the spec.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#force_update Service#force_update}


LogDriverOptional
LogDriver ServiceTaskSpecLogDriver

log_driver block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#log_driver Service#log_driver}


NetworksAdvancedOptional
NetworksAdvanced interface{}
  • Type: interface{}

networks_advanced block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#networks_advanced Service#networks_advanced}


PlacementOptional
Placement ServiceTaskSpecPlacement

placement block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#placement Service#placement}


ResourcesOptional
Resources ServiceTaskSpecResources

resources block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#resources Service#resources}


RestartPolicyOptional
RestartPolicy ServiceTaskSpecRestartPolicy

restart_policy block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#restart_policy Service#restart_policy}


RuntimeOptional
Runtime *string
  • Type: *string

Runtime is the type of runtime specified for the task executor. See the types.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#runtime Service#runtime}


ServiceTaskSpecContainerSpec

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpec {
	Image: *string,
	Args: *[]*string,
	Command: *[]*string,
	Configs: interface{},
	Dir: *string,
	DnsConfig: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecContainerSpecDnsConfig,
	Env: *map[string]*string,
	Groups: *[]*string,
	Healthcheck: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecContainerSpecHealthcheck,
	Hostname: *string,
	Hosts: interface{},
	Isolation: *string,
	Labels: interface{},
	Mounts: interface{},
	Privileges: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecContainerSpecPrivileges,
	ReadOnly: interface{},
	Secrets: interface{},
	StopGracePeriod: *string,
	StopSignal: *string,
	Sysctl: *map[string]*string,
	User: *string,
}

Properties

Name Type Description
Image *string The image name to use for the containers of the service, like nginx:1.17.6. Also use the data-source or resource of docker_image with the repo_digest or docker_registry_image with the name attribute for this, as shown in the examples.
Args *[]*string Arguments to the command.
Command *[]*string The command/entrypoint to be run in the image.
Configs interface{} configs block.
Dir *string The working directory for commands to run in.
DnsConfig ServiceTaskSpecContainerSpecDnsConfig dns_config block.
Env *map[string]*string A list of environment variables in the form VAR="value".
Groups *[]*string A list of additional groups that the container process will run as.
Healthcheck ServiceTaskSpecContainerSpecHealthcheck healthcheck block.
Hostname *string The hostname to use for the container, as a valid RFC 1123 hostname.
Hosts interface{} hosts block.
Isolation *string Isolation technology of the containers running the service. (Windows only). Defaults to default.
Labels interface{} labels block.
Mounts interface{} mounts block.
Privileges ServiceTaskSpecContainerSpecPrivileges privileges block.
ReadOnly interface{} Mount the container's root filesystem as read only.
Secrets interface{} secrets block.
StopGracePeriod *string Amount of time to wait for the container to terminate before forcefully removing it (ms|s|m|h).
StopSignal *string Signal to stop the container.
Sysctl *map[string]*string Sysctls config (Linux only).
User *string The user inside the container.

ImageRequired
Image *string
  • Type: *string

The image name to use for the containers of the service, like nginx:1.17.6. Also use the data-source or resource of docker_image with the repo_digest or docker_registry_image with the name attribute for this, as shown in the examples.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#image Service#image}


ArgsOptional
Args *[]*string
  • Type: *[]*string

Arguments to the command.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#args Service#args}


CommandOptional
Command *[]*string
  • Type: *[]*string

The command/entrypoint to be run in the image.

According to the docker cli the override of the entrypoint is also passed to the command property and there is no entrypoint attribute in the ContainerSpec of the service.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#command Service#command}


ConfigsOptional
Configs interface{}
  • Type: interface{}

configs block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#configs Service#configs}


DirOptional
Dir *string
  • Type: *string

The working directory for commands to run in.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#dir Service#dir}


DnsConfigOptional
DnsConfig ServiceTaskSpecContainerSpecDnsConfig

dns_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#dns_config Service#dns_config}


EnvOptional
Env *map[string]*string
  • Type: *map[string]*string

A list of environment variables in the form VAR="value".

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#env Service#env}


GroupsOptional
Groups *[]*string
  • Type: *[]*string

A list of additional groups that the container process will run as.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#groups Service#groups}


HealthcheckOptional
Healthcheck ServiceTaskSpecContainerSpecHealthcheck

healthcheck block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#healthcheck Service#healthcheck}


HostnameOptional
Hostname *string
  • Type: *string

The hostname to use for the container, as a valid RFC 1123 hostname.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#hostname Service#hostname}


HostsOptional
Hosts interface{}
  • Type: interface{}

hosts block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#hosts Service#hosts}


IsolationOptional
Isolation *string
  • Type: *string

Isolation technology of the containers running the service. (Windows only). Defaults to default.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#isolation Service#isolation}


LabelsOptional
Labels interface{}
  • Type: interface{}

labels block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#labels Service#labels}


MountsOptional
Mounts interface{}
  • Type: interface{}

mounts block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#mounts Service#mounts}


PrivilegesOptional
Privileges ServiceTaskSpecContainerSpecPrivileges

privileges block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#privileges Service#privileges}


ReadOnlyOptional
ReadOnly interface{}
  • Type: interface{}

Mount the container's root filesystem as read only.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#read_only Service#read_only}


SecretsOptional
Secrets interface{}
  • Type: interface{}

secrets block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#secrets Service#secrets}


StopGracePeriodOptional
StopGracePeriod *string
  • Type: *string

Amount of time to wait for the container to terminate before forcefully removing it (ms|s|m|h).

If not specified or '0s' the destroy will not check if all tasks/containers of the service terminate.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#stop_grace_period Service#stop_grace_period}


StopSignalOptional
StopSignal *string
  • Type: *string

Signal to stop the container.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#stop_signal Service#stop_signal}


SysctlOptional
Sysctl *map[string]*string
  • Type: *map[string]*string

Sysctls config (Linux only).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#sysctl Service#sysctl}


UserOptional
User *string
  • Type: *string

The user inside the container.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#user Service#user}


ServiceTaskSpecContainerSpecConfigs

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecConfigs {
	ConfigId: *string,
	FileName: *string,
	ConfigName: *string,
	FileGid: *string,
	FileMode: *f64,
	FileUid: *string,
}

Properties

Name Type Description
ConfigId *string ID of the specific config that we're referencing.
FileName *string Represents the final filename in the filesystem.
ConfigName *string Name of the config that this references, but this is just provided for lookup/display purposes.
FileGid *string Represents the file GID. Defaults to 0.
FileMode *f64 Represents represents the FileMode of the file. Defaults to 0o444.
FileUid *string Represents the file UID. Defaults to 0.

ConfigIdRequired
ConfigId *string
  • Type: *string

ID of the specific config that we're referencing.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#config_id Service#config_id}


FileNameRequired
FileName *string
  • Type: *string

Represents the final filename in the filesystem.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#file_name Service#file_name}


ConfigNameOptional
ConfigName *string
  • Type: *string

Name of the config that this references, but this is just provided for lookup/display purposes.

The config in the reference will be identified by its ID

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#config_name Service#config_name}


FileGidOptional
FileGid *string
  • Type: *string

Represents the file GID. Defaults to 0.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#file_gid Service#file_gid}


FileModeOptional
FileMode *f64
  • Type: *f64

Represents represents the FileMode of the file. Defaults to 0o444.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#file_mode Service#file_mode}


FileUidOptional
FileUid *string
  • Type: *string

Represents the file UID. Defaults to 0.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#file_uid Service#file_uid}


ServiceTaskSpecContainerSpecDnsConfig

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecDnsConfig {
	Nameservers: *[]*string,
	Options: *[]*string,
	Search: *[]*string,
}

Properties

Name Type Description
Nameservers *[]*string The IP addresses of the name servers.
Options *[]*string A list of internal resolver variables to be modified (e.g., debug, ndots:3, etc.).
Search *[]*string A search list for host-name lookup.

NameserversRequired
Nameservers *[]*string
  • Type: *[]*string

The IP addresses of the name servers.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#nameservers Service#nameservers}


OptionsOptional
Options *[]*string
  • Type: *[]*string

A list of internal resolver variables to be modified (e.g., debug, ndots:3, etc.).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#options Service#options}


SearchOptional
Search *[]*string
  • Type: *[]*string

A search list for host-name lookup.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#search Service#search}


ServiceTaskSpecContainerSpecHealthcheck

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecHealthcheck {
	Test: *[]*string,
	Interval: *string,
	Retries: *f64,
	StartPeriod: *string,
	Timeout: *string,
}

Properties

Name Type Description
Test *[]*string The test to perform as list.
Interval *string Time between running the check (ms|s|m|h). Defaults to 0s.
Retries *f64 Consecutive failures needed to report unhealthy. Defaults to 0.
StartPeriod *string Start period for the container to initialize before counting retries towards unstable (ms|s|m|h). Defaults to 0s.
Timeout *string Maximum time to allow one check to run (ms|s|m|h). Defaults to 0s.

TestRequired
Test *[]*string
  • Type: *[]*string

The test to perform as list.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#test Service#test}


IntervalOptional
Interval *string
  • Type: *string

Time between running the check (ms|s|m|h). Defaults to 0s.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#interval Service#interval}


RetriesOptional
Retries *f64
  • Type: *f64

Consecutive failures needed to report unhealthy. Defaults to 0.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#retries Service#retries}


StartPeriodOptional
StartPeriod *string
  • Type: *string

Start period for the container to initialize before counting retries towards unstable (ms|s|m|h). Defaults to 0s.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#start_period Service#start_period}


TimeoutOptional
Timeout *string
  • Type: *string

Maximum time to allow one check to run (ms|s|m|h). Defaults to 0s.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#timeout Service#timeout}


ServiceTaskSpecContainerSpecHosts

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecHosts {
	Host: *string,
	Ip: *string,
}

Properties

Name Type Description
Host *string The name of the host.
Ip *string The ip of the host.

HostRequired
Host *string
  • Type: *string

The name of the host.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#host Service#host}


IpRequired
Ip *string
  • Type: *string

The ip of the host.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#ip Service#ip}


ServiceTaskSpecContainerSpecLabels

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecLabels {
	Label: *string,
	Value: *string,
}

Properties

Name Type Description
Label *string Name of the label.
Value *string Value of the label.

LabelRequired
Label *string
  • Type: *string

Name of the label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#label Service#label}


ValueRequired
Value *string
  • Type: *string

Value of the label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#value Service#value}


ServiceTaskSpecContainerSpecMounts

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecMounts {
	Target: *string,
	Type: *string,
	BindOptions: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecContainerSpecMountsBindOptions,
	ReadOnly: interface{},
	Source: *string,
	TmpfsOptions: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecContainerSpecMountsTmpfsOptions,
	VolumeOptions: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecContainerSpecMountsVolumeOptions,
}

Properties

Name Type Description
Target *string Container path.
Type *string The mount type.
BindOptions ServiceTaskSpecContainerSpecMountsBindOptions bind_options block.
ReadOnly interface{} Whether the mount should be read-only.
Source *string Mount source (e.g. a volume name, a host path).
TmpfsOptions ServiceTaskSpecContainerSpecMountsTmpfsOptions tmpfs_options block.
VolumeOptions ServiceTaskSpecContainerSpecMountsVolumeOptions volume_options block.

TargetRequired
Target *string
  • Type: *string

Container path.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#target Service#target}


TypeRequired
Type *string
  • Type: *string

The mount type.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#type Service#type}


BindOptionsOptional
BindOptions ServiceTaskSpecContainerSpecMountsBindOptions

bind_options block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#bind_options Service#bind_options}


ReadOnlyOptional
ReadOnly interface{}
  • Type: interface{}

Whether the mount should be read-only.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#read_only Service#read_only}


SourceOptional
Source *string
  • Type: *string

Mount source (e.g. a volume name, a host path).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#source Service#source}


TmpfsOptionsOptional
TmpfsOptions ServiceTaskSpecContainerSpecMountsTmpfsOptions

tmpfs_options block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#tmpfs_options Service#tmpfs_options}


VolumeOptionsOptional
VolumeOptions ServiceTaskSpecContainerSpecMountsVolumeOptions

volume_options block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#volume_options Service#volume_options}


ServiceTaskSpecContainerSpecMountsBindOptions

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecMountsBindOptions {
	Propagation: *string,
}

Properties

Name Type Description
Propagation *string Bind propagation refers to whether or not mounts created within a given bind-mount or named volume can be propagated to replicas of that mount.

PropagationOptional
Propagation *string
  • Type: *string

Bind propagation refers to whether or not mounts created within a given bind-mount or named volume can be propagated to replicas of that mount.

See the docs for details. Defaults to rprivate

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#propagation Service#propagation}


ServiceTaskSpecContainerSpecMountsTmpfsOptions

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecMountsTmpfsOptions {
	Mode: *f64,
	SizeBytes: *f64,
}

Properties

Name Type Description
Mode *f64 The permission mode for the tmpfs mount in an integer.
SizeBytes *f64 The size for the tmpfs mount in bytes.

ModeOptional
Mode *f64
  • Type: *f64

The permission mode for the tmpfs mount in an integer.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#mode Service#mode}


SizeBytesOptional
SizeBytes *f64
  • Type: *f64

The size for the tmpfs mount in bytes.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#size_bytes Service#size_bytes}


ServiceTaskSpecContainerSpecMountsVolumeOptions

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecMountsVolumeOptions {
	DriverName: *string,
	DriverOptions: *map[string]*string,
	Labels: interface{},
	NoCopy: interface{},
}

Properties

Name Type Description
DriverName *string Name of the driver to use to create the volume.
DriverOptions *map[string]*string key/value map of driver specific options.
Labels interface{} labels block.
NoCopy interface{} Populate volume with data from the target.

DriverNameOptional
DriverName *string
  • Type: *string

Name of the driver to use to create the volume.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#driver_name Service#driver_name}


DriverOptionsOptional
DriverOptions *map[string]*string
  • Type: *map[string]*string

key/value map of driver specific options.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#driver_options Service#driver_options}


LabelsOptional
Labels interface{}
  • Type: interface{}

labels block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#labels Service#labels}


NoCopyOptional
NoCopy interface{}
  • Type: interface{}

Populate volume with data from the target.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#no_copy Service#no_copy}


ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels {
	Label: *string,
	Value: *string,
}

Properties

Name Type Description
Label *string Name of the label.
Value *string Value of the label.

LabelRequired
Label *string
  • Type: *string

Name of the label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#label Service#label}


ValueRequired
Value *string
  • Type: *string

Value of the label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#value Service#value}


ServiceTaskSpecContainerSpecPrivileges

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecPrivileges {
	CredentialSpec: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecContainerSpecPrivilegesCredentialSpec,
	SeLinuxContext: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext,
}

Properties

Name Type Description
CredentialSpec ServiceTaskSpecContainerSpecPrivilegesCredentialSpec credential_spec block.
SeLinuxContext ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext se_linux_context block.

CredentialSpecOptional
CredentialSpec ServiceTaskSpecContainerSpecPrivilegesCredentialSpec

credential_spec block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#credential_spec Service#credential_spec}


SeLinuxContextOptional
SeLinuxContext ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext

se_linux_context block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#se_linux_context Service#se_linux_context}


ServiceTaskSpecContainerSpecPrivilegesCredentialSpec

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecPrivilegesCredentialSpec {
	File: *string,
	Registry: *string,
}

Properties

Name Type Description
File *string Load credential spec from this file.
Registry *string Load credential spec from this value in the Windows registry.

FileOptional
File *string
  • Type: *string

Load credential spec from this file.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#file Service#file}


RegistryOptional
Registry *string
  • Type: *string

Load credential spec from this value in the Windows registry.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#registry Service#registry}


ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext {
	Disable: interface{},
	Level: *string,
	Role: *string,
	Type: *string,
	User: *string,
}

Properties

Name Type Description
Disable interface{} Disable SELinux.
Level *string SELinux level label.
Role *string SELinux role label.
Type *string SELinux type label.
User *string SELinux user label.

DisableOptional
Disable interface{}
  • Type: interface{}

Disable SELinux.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#disable Service#disable}


LevelOptional
Level *string
  • Type: *string

SELinux level label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#level Service#level}


RoleOptional
Role *string
  • Type: *string

SELinux role label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#role Service#role}


TypeOptional
Type *string
  • Type: *string

SELinux type label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#type Service#type}


UserOptional
User *string
  • Type: *string

SELinux user label.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#user Service#user}


ServiceTaskSpecContainerSpecSecrets

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecContainerSpecSecrets {
	FileName: *string,
	SecretId: *string,
	FileGid: *string,
	FileMode: *f64,
	FileUid: *string,
	SecretName: *string,
}

Properties

Name Type Description
FileName *string Represents the final filename in the filesystem.
SecretId *string ID of the specific secret that we're referencing.
FileGid *string Represents the file GID. Defaults to 0.
FileMode *f64 Represents represents the FileMode of the file. Defaults to 0o444.
FileUid *string Represents the file UID. Defaults to 0.
SecretName *string Name of the secret that this references, but this is just provided for lookup/display purposes.

FileNameRequired
FileName *string
  • Type: *string

Represents the final filename in the filesystem.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#file_name Service#file_name}


SecretIdRequired
SecretId *string
  • Type: *string

ID of the specific secret that we're referencing.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#secret_id Service#secret_id}


FileGidOptional
FileGid *string
  • Type: *string

Represents the file GID. Defaults to 0.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#file_gid Service#file_gid}


FileModeOptional
FileMode *f64
  • Type: *f64

Represents represents the FileMode of the file. Defaults to 0o444.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#file_mode Service#file_mode}


FileUidOptional
FileUid *string
  • Type: *string

Represents the file UID. Defaults to 0.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#file_uid Service#file_uid}


SecretNameOptional
SecretName *string
  • Type: *string

Name of the secret that this references, but this is just provided for lookup/display purposes.

The config in the reference will be identified by its ID

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#secret_name Service#secret_name}


ServiceTaskSpecLogDriver

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecLogDriver {
	Name: *string,
	Options: *map[string]*string,
}

Properties

Name Type Description
Name *string The logging driver to use.
Options *map[string]*string The options for the logging driver.

NameRequired
Name *string
  • Type: *string

The logging driver to use.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#name Service#name}


OptionsOptional
Options *map[string]*string
  • Type: *map[string]*string

The options for the logging driver.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#options Service#options}


ServiceTaskSpecNetworksAdvanced

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecNetworksAdvanced {
	Name: *string,
	Aliases: *[]*string,
	DriverOpts: *[]*string,
}

Properties

Name Type Description
Name *string The name/id of the network.
Aliases *[]*string The network aliases of the container in the specific network.
DriverOpts *[]*string An array of driver options for the network, e.g. opts1=value.

NameRequired
Name *string
  • Type: *string

The name/id of the network.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#name Service#name}


AliasesOptional
Aliases *[]*string
  • Type: *[]*string

The network aliases of the container in the specific network.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#aliases Service#aliases}


DriverOptsOptional
DriverOpts *[]*string
  • Type: *[]*string

An array of driver options for the network, e.g. opts1=value.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#driver_opts Service#driver_opts}


ServiceTaskSpecPlacement

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecPlacement {
	Constraints: *[]*string,
	MaxReplicas: *f64,
	Platforms: interface{},
	Prefs: *[]*string,
}

Properties

Name Type Description
Constraints *[]*string An array of constraints. e.g.: node.role==manager.
MaxReplicas *f64 Maximum number of replicas for per node (default value is 0, which is unlimited).
Platforms interface{} platforms block.
Prefs *[]*string Preferences provide a way to make the scheduler aware of factors such as topology.

ConstraintsOptional
Constraints *[]*string
  • Type: *[]*string

An array of constraints. e.g.: node.role==manager.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#constraints Service#constraints}


MaxReplicasOptional
MaxReplicas *f64
  • Type: *f64

Maximum number of replicas for per node (default value is 0, which is unlimited).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#max_replicas Service#max_replicas}


PlatformsOptional
Platforms interface{}
  • Type: interface{}

platforms block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#platforms Service#platforms}


PrefsOptional
Prefs *[]*string
  • Type: *[]*string

Preferences provide a way to make the scheduler aware of factors such as topology.

They are provided in order from highest to lowest precedence, e.g.: spread=node.role.manager

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#prefs Service#prefs}


ServiceTaskSpecPlacementPlatforms

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecPlacementPlatforms {
	Architecture: *string,
	Os: *string,
}

Properties

Name Type Description
Architecture *string The architecture, e.g. amd64.
Os *string The operation system, e.g. linux.

ArchitectureRequired
Architecture *string
  • Type: *string

The architecture, e.g. amd64.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#architecture Service#architecture}


OsRequired
Os *string
  • Type: *string

The operation system, e.g. linux.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#os Service#os}


ServiceTaskSpecResources

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecResources {
	Limits: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecResourcesLimits,
	Reservation: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecResourcesReservation,
}

Properties

Name Type Description
Limits ServiceTaskSpecResourcesLimits limits block.
Reservation ServiceTaskSpecResourcesReservation reservation block.

LimitsOptional
Limits ServiceTaskSpecResourcesLimits

limits block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#limits Service#limits}


ReservationOptional
Reservation ServiceTaskSpecResourcesReservation

reservation block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#reservation Service#reservation}


ServiceTaskSpecResourcesLimits

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecResourcesLimits {
	MemoryBytes: *f64,
	NanoCpus: *f64,
}

Properties

Name Type Description
MemoryBytes *f64 The amounf of memory in bytes the container allocates.
NanoCpus *f64 CPU shares in units of 1/1e9 (or 10^-9) of the CPU. Should be at least 1000000.

MemoryBytesOptional
MemoryBytes *f64
  • Type: *f64

The amounf of memory in bytes the container allocates.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#memory_bytes Service#memory_bytes}


NanoCpusOptional
NanoCpus *f64
  • Type: *f64

CPU shares in units of 1/1e9 (or 10^-9) of the CPU. Should be at least 1000000.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#nano_cpus Service#nano_cpus}


ServiceTaskSpecResourcesReservation

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecResourcesReservation {
	GenericResources: github.com/cdktf/cdktf-provider-docker-go/docker/v11.service.ServiceTaskSpecResourcesReservationGenericResources,
	MemoryBytes: *f64,
	NanoCpus: *f64,
}

Properties

Name Type Description
GenericResources ServiceTaskSpecResourcesReservationGenericResources generic_resources block.
MemoryBytes *f64 The amounf of memory in bytes the container allocates.
NanoCpus *f64 CPU shares in units of 1/1e9 (or 10^-9) of the CPU. Should be at least 1000000.

GenericResourcesOptional
GenericResources ServiceTaskSpecResourcesReservationGenericResources

generic_resources block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#generic_resources Service#generic_resources}


MemoryBytesOptional
MemoryBytes *f64
  • Type: *f64

The amounf of memory in bytes the container allocates.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#memory_bytes Service#memory_bytes}


NanoCpusOptional
NanoCpus *f64
  • Type: *f64

CPU shares in units of 1/1e9 (or 10^-9) of the CPU. Should be at least 1000000.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#nano_cpus Service#nano_cpus}


ServiceTaskSpecResourcesReservationGenericResources

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecResourcesReservationGenericResources {
	DiscreteResourcesSpec: *[]*string,
	NamedResourcesSpec: *[]*string,
}

Properties

Name Type Description
DiscreteResourcesSpec *[]*string The Integer resources.
NamedResourcesSpec *[]*string The String resources.

DiscreteResourcesSpecOptional
DiscreteResourcesSpec *[]*string
  • Type: *[]*string

The Integer resources.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#discrete_resources_spec Service#discrete_resources_spec}


NamedResourcesSpecOptional
NamedResourcesSpec *[]*string
  • Type: *[]*string

The String resources.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#named_resources_spec Service#named_resources_spec}


ServiceTaskSpecRestartPolicy

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceTaskSpecRestartPolicy {
	Condition: *string,
	Delay: *string,
	MaxAttempts: *f64,
	Window: *string,
}

Properties

Name Type Description
Condition *string Condition for restart.
Delay *string Delay between restart attempts (ms|s|m|h).
MaxAttempts *f64 Maximum attempts to restart a given container before giving up (default value is 0, which is ignored).
Window *string The time window used to evaluate the restart policy (default value is 0, which is unbounded) (ms|s|m|h).

ConditionOptional
Condition *string
  • Type: *string

Condition for restart.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#condition Service#condition}


DelayOptional
Delay *string
  • Type: *string

Delay between restart attempts (ms|s|m|h).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#delay Service#delay}


MaxAttemptsOptional
MaxAttempts *f64
  • Type: *f64

Maximum attempts to restart a given container before giving up (default value is 0, which is ignored).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#max_attempts Service#max_attempts}


WindowOptional
Window *string
  • Type: *string

The time window used to evaluate the restart policy (default value is 0, which is unbounded) (ms|s|m|h).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#window Service#window}


ServiceUpdateConfig

Initializer

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

&service.ServiceUpdateConfig {
	Delay: *string,
	FailureAction: *string,
	MaxFailureRatio: *string,
	Monitor: *string,
	Order: *string,
	Parallelism: *f64,
}

Properties

Name Type Description
Delay *string Delay between task updates (ns|us|ms|s|m|h). Defaults to 0s.
FailureAction *string Action on update failure: pause, continue or rollback. Defaults to pause.
MaxFailureRatio *string Failure rate to tolerate during an update. Defaults to 0.0.
Monitor *string Duration after each task update to monitor for failure (ns|us|ms|s|m|h). Defaults to 5s.
Order *string Update order: either 'stop-first' or 'start-first'. Defaults to stop-first.
Parallelism *f64 Maximum number of tasks to be updated in one iteration. Defaults to 1.

DelayOptional
Delay *string
  • Type: *string

Delay between task updates (ns|us|ms|s|m|h). Defaults to 0s.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#delay Service#delay}


FailureActionOptional
FailureAction *string
  • Type: *string

Action on update failure: pause, continue or rollback. Defaults to pause.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#failure_action Service#failure_action}


MaxFailureRatioOptional
MaxFailureRatio *string
  • Type: *string

Failure rate to tolerate during an update. Defaults to 0.0.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#max_failure_ratio Service#max_failure_ratio}


MonitorOptional
Monitor *string
  • Type: *string

Duration after each task update to monitor for failure (ns|us|ms|s|m|h). Defaults to 5s.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#monitor Service#monitor}


OrderOptional
Order *string
  • Type: *string

Update order: either 'stop-first' or 'start-first'. Defaults to stop-first.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#order Service#order}


ParallelismOptional
Parallelism *f64
  • Type: *f64

Maximum number of tasks to be updated in one iteration. Defaults to 1.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#parallelism Service#parallelism}


Classes

ServiceAuthOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceAuthOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceAuthOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetPassword No description.
ResetUsername No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetPassword
func ResetPassword()
ResetUsername
func ResetUsername()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
PasswordInput *string No description.
ServerAddressInput *string No description.
UsernameInput *string No description.
Password *string No description.
ServerAddress *string No description.
Username *string No description.
InternalValue ServiceAuth No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

PasswordInputOptional
func PasswordInput() *string
  • Type: *string

ServerAddressInputOptional
func ServerAddressInput() *string
  • Type: *string

UsernameInputOptional
func UsernameInput() *string
  • Type: *string

PasswordRequired
func Password() *string
  • Type: *string

ServerAddressRequired
func ServerAddress() *string
  • Type: *string

UsernameRequired
func Username() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceAuth

ServiceConvergeConfigOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceConvergeConfigOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceConvergeConfigOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetDelay No description.
ResetTimeout No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetDelay
func ResetDelay()
ResetTimeout
func ResetTimeout()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
DelayInput *string No description.
TimeoutInput *string No description.
Delay *string No description.
Timeout *string No description.
InternalValue ServiceConvergeConfig No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

DelayInputOptional
func DelayInput() *string
  • Type: *string

TimeoutInputOptional
func TimeoutInput() *string
  • Type: *string

DelayRequired
func Delay() *string
  • Type: *string

TimeoutRequired
func Timeout() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceConvergeConfig

ServiceEndpointSpecOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceEndpointSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceEndpointSpecOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutPorts No description.
ResetMode No description.
ResetPorts No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutPorts
func PutPorts(value interface{})
valueRequired
  • Type: interface{}

ResetMode
func ResetMode()
ResetPorts
func ResetPorts()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
Ports ServiceEndpointSpecPortsList No description.
ModeInput *string No description.
PortsInput interface{} No description.
Mode *string No description.
InternalValue ServiceEndpointSpec No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

PortsRequired
func Ports() ServiceEndpointSpecPortsList

ModeInputOptional
func ModeInput() *string
  • Type: *string

PortsInputOptional
func PortsInput() interface{}
  • Type: interface{}

ModeRequired
func Mode() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceEndpointSpec

ServiceEndpointSpecPortsList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceEndpointSpecPortsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceEndpointSpecPortsList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceEndpointSpecPortsOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceEndpointSpecPortsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceEndpointSpecPortsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceEndpointSpecPortsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetName No description.
ResetProtocol No description.
ResetPublishedPort No description.
ResetPublishMode No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetName
func ResetName()
ResetProtocol
func ResetProtocol()
ResetPublishedPort
func ResetPublishedPort()
ResetPublishMode
func ResetPublishMode()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
NameInput *string No description.
ProtocolInput *string No description.
PublishedPortInput *f64 No description.
PublishModeInput *string No description.
TargetPortInput *f64 No description.
Name *string No description.
Protocol *string No description.
PublishedPort *f64 No description.
PublishMode *string No description.
TargetPort *f64 No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

NameInputOptional
func NameInput() *string
  • Type: *string

ProtocolInputOptional
func ProtocolInput() *string
  • Type: *string

PublishedPortInputOptional
func PublishedPortInput() *f64
  • Type: *f64

PublishModeInputOptional
func PublishModeInput() *string
  • Type: *string

TargetPortInputOptional
func TargetPortInput() *f64
  • Type: *f64

NameRequired
func Name() *string
  • Type: *string

ProtocolRequired
func Protocol() *string
  • Type: *string

PublishedPortRequired
func PublishedPort() *f64
  • Type: *f64

PublishModeRequired
func PublishMode() *string
  • Type: *string

TargetPortRequired
func TargetPort() *f64
  • Type: *f64

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceLabelsList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceLabelsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceLabelsList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceLabelsOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceLabelsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceLabelsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceLabelsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
LabelInput *string No description.
ValueInput *string No description.
Label *string No description.
Value *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

LabelInputOptional
func LabelInput() *string
  • Type: *string

ValueInputOptional
func ValueInput() *string
  • Type: *string

LabelRequired
func Label() *string
  • Type: *string

ValueRequired
func Value() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceModeOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceModeOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceModeOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutReplicated No description.
ResetGlobal No description.
ResetReplicated No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutReplicated
func PutReplicated(value ServiceModeReplicated)
valueRequired

ResetGlobal
func ResetGlobal()
ResetReplicated
func ResetReplicated()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
Replicated ServiceModeReplicatedOutputReference No description.
GlobalInput interface{} No description.
ReplicatedInput ServiceModeReplicated No description.
Global interface{} No description.
InternalValue ServiceMode No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

ReplicatedRequired
func Replicated() ServiceModeReplicatedOutputReference

GlobalInputOptional
func GlobalInput() interface{}
  • Type: interface{}

ReplicatedInputOptional
func ReplicatedInput() ServiceModeReplicated

GlobalRequired
func Global() interface{}
  • Type: interface{}

InternalValueOptional
func InternalValue() ServiceMode

ServiceModeReplicatedOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceModeReplicatedOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceModeReplicatedOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetReplicas No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetReplicas
func ResetReplicas()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
ReplicasInput *f64 No description.
Replicas *f64 No description.
InternalValue ServiceModeReplicated No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

ReplicasInputOptional
func ReplicasInput() *f64
  • Type: *f64

ReplicasRequired
func Replicas() *f64
  • Type: *f64

InternalValueOptional
func InternalValue() ServiceModeReplicated

ServiceRollbackConfigOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceRollbackConfigOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceRollbackConfigOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetDelay No description.
ResetFailureAction No description.
ResetMaxFailureRatio No description.
ResetMonitor No description.
ResetOrder No description.
ResetParallelism No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetDelay
func ResetDelay()
ResetFailureAction
func ResetFailureAction()
ResetMaxFailureRatio
func ResetMaxFailureRatio()
ResetMonitor
func ResetMonitor()
ResetOrder
func ResetOrder()
ResetParallelism
func ResetParallelism()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
DelayInput *string No description.
FailureActionInput *string No description.
MaxFailureRatioInput *string No description.
MonitorInput *string No description.
OrderInput *string No description.
ParallelismInput *f64 No description.
Delay *string No description.
FailureAction *string No description.
MaxFailureRatio *string No description.
Monitor *string No description.
Order *string No description.
Parallelism *f64 No description.
InternalValue ServiceRollbackConfig No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

DelayInputOptional
func DelayInput() *string
  • Type: *string

FailureActionInputOptional
func FailureActionInput() *string
  • Type: *string

MaxFailureRatioInputOptional
func MaxFailureRatioInput() *string
  • Type: *string

MonitorInputOptional
func MonitorInput() *string
  • Type: *string

OrderInputOptional
func OrderInput() *string
  • Type: *string

ParallelismInputOptional
func ParallelismInput() *f64
  • Type: *f64

DelayRequired
func Delay() *string
  • Type: *string

FailureActionRequired
func FailureAction() *string
  • Type: *string

MaxFailureRatioRequired
func MaxFailureRatio() *string
  • Type: *string

MonitorRequired
func Monitor() *string
  • Type: *string

OrderRequired
func Order() *string
  • Type: *string

ParallelismRequired
func Parallelism() *f64
  • Type: *f64

InternalValueOptional
func InternalValue() ServiceRollbackConfig

ServiceTaskSpecContainerSpecConfigsList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecConfigsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceTaskSpecContainerSpecConfigsList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceTaskSpecContainerSpecConfigsOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecConfigsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecConfigsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceTaskSpecContainerSpecConfigsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetConfigName No description.
ResetFileGid No description.
ResetFileMode No description.
ResetFileUid No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetConfigName
func ResetConfigName()
ResetFileGid
func ResetFileGid()
ResetFileMode
func ResetFileMode()
ResetFileUid
func ResetFileUid()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
ConfigIdInput *string No description.
ConfigNameInput *string No description.
FileGidInput *string No description.
FileModeInput *f64 No description.
FileNameInput *string No description.
FileUidInput *string No description.
ConfigId *string No description.
ConfigName *string No description.
FileGid *string No description.
FileMode *f64 No description.
FileName *string No description.
FileUid *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

ConfigIdInputOptional
func ConfigIdInput() *string
  • Type: *string

ConfigNameInputOptional
func ConfigNameInput() *string
  • Type: *string

FileGidInputOptional
func FileGidInput() *string
  • Type: *string

FileModeInputOptional
func FileModeInput() *f64
  • Type: *f64

FileNameInputOptional
func FileNameInput() *string
  • Type: *string

FileUidInputOptional
func FileUidInput() *string
  • Type: *string

ConfigIdRequired
func ConfigId() *string
  • Type: *string

ConfigNameRequired
func ConfigName() *string
  • Type: *string

FileGidRequired
func FileGid() *string
  • Type: *string

FileModeRequired
func FileMode() *f64
  • Type: *f64

FileNameRequired
func FileName() *string
  • Type: *string

FileUidRequired
func FileUid() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecDnsConfigOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecDnsConfigOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecContainerSpecDnsConfigOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetOptions No description.
ResetSearch No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetOptions
func ResetOptions()
ResetSearch
func ResetSearch()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
NameserversInput *[]*string No description.
OptionsInput *[]*string No description.
SearchInput *[]*string No description.
Nameservers *[]*string No description.
Options *[]*string No description.
Search *[]*string No description.
InternalValue ServiceTaskSpecContainerSpecDnsConfig No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

NameserversInputOptional
func NameserversInput() *[]*string
  • Type: *[]*string

OptionsInputOptional
func OptionsInput() *[]*string
  • Type: *[]*string

SearchInputOptional
func SearchInput() *[]*string
  • Type: *[]*string

NameserversRequired
func Nameservers() *[]*string
  • Type: *[]*string

OptionsRequired
func Options() *[]*string
  • Type: *[]*string

SearchRequired
func Search() *[]*string
  • Type: *[]*string

InternalValueOptional
func InternalValue() ServiceTaskSpecContainerSpecDnsConfig

ServiceTaskSpecContainerSpecHealthcheckOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecHealthcheckOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecContainerSpecHealthcheckOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetInterval No description.
ResetRetries No description.
ResetStartPeriod No description.
ResetTimeout No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetInterval
func ResetInterval()
ResetRetries
func ResetRetries()
ResetStartPeriod
func ResetStartPeriod()
ResetTimeout
func ResetTimeout()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
IntervalInput *string No description.
RetriesInput *f64 No description.
StartPeriodInput *string No description.
TestInput *[]*string No description.
TimeoutInput *string No description.
Interval *string No description.
Retries *f64 No description.
StartPeriod *string No description.
Test *[]*string No description.
Timeout *string No description.
InternalValue ServiceTaskSpecContainerSpecHealthcheck No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

IntervalInputOptional
func IntervalInput() *string
  • Type: *string

RetriesInputOptional
func RetriesInput() *f64
  • Type: *f64

StartPeriodInputOptional
func StartPeriodInput() *string
  • Type: *string

TestInputOptional
func TestInput() *[]*string
  • Type: *[]*string

TimeoutInputOptional
func TimeoutInput() *string
  • Type: *string

IntervalRequired
func Interval() *string
  • Type: *string

RetriesRequired
func Retries() *f64
  • Type: *f64

StartPeriodRequired
func StartPeriod() *string
  • Type: *string

TestRequired
func Test() *[]*string
  • Type: *[]*string

TimeoutRequired
func Timeout() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceTaskSpecContainerSpecHealthcheck

ServiceTaskSpecContainerSpecHostsList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecHostsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceTaskSpecContainerSpecHostsList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceTaskSpecContainerSpecHostsOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecHostsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecHostsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceTaskSpecContainerSpecHostsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
HostInput *string No description.
IpInput *string No description.
Host *string No description.
Ip *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

HostInputOptional
func HostInput() *string
  • Type: *string

IpInputOptional
func IpInput() *string
  • Type: *string

HostRequired
func Host() *string
  • Type: *string

IpRequired
func Ip() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecLabelsList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecLabelsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceTaskSpecContainerSpecLabelsList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceTaskSpecContainerSpecLabelsOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecLabelsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecLabelsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceTaskSpecContainerSpecLabelsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
LabelInput *string No description.
ValueInput *string No description.
Label *string No description.
Value *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

LabelInputOptional
func LabelInput() *string
  • Type: *string

ValueInputOptional
func ValueInput() *string
  • Type: *string

LabelRequired
func Label() *string
  • Type: *string

ValueRequired
func Value() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecMountsBindOptionsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecMountsBindOptionsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecContainerSpecMountsBindOptionsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetPropagation No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetPropagation
func ResetPropagation()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
PropagationInput *string No description.
Propagation *string No description.
InternalValue ServiceTaskSpecContainerSpecMountsBindOptions No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

PropagationInputOptional
func PropagationInput() *string
  • Type: *string

PropagationRequired
func Propagation() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceTaskSpecContainerSpecMountsBindOptions

ServiceTaskSpecContainerSpecMountsList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecMountsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceTaskSpecContainerSpecMountsList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceTaskSpecContainerSpecMountsOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecMountsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecMountsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceTaskSpecContainerSpecMountsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutBindOptions No description.
PutTmpfsOptions No description.
PutVolumeOptions No description.
ResetBindOptions No description.
ResetReadOnly No description.
ResetSource No description.
ResetTmpfsOptions No description.
ResetVolumeOptions No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutBindOptions
func PutBindOptions(value ServiceTaskSpecContainerSpecMountsBindOptions)
valueRequired

PutTmpfsOptions
func PutTmpfsOptions(value ServiceTaskSpecContainerSpecMountsTmpfsOptions)
valueRequired

PutVolumeOptions
func PutVolumeOptions(value ServiceTaskSpecContainerSpecMountsVolumeOptions)
valueRequired

ResetBindOptions
func ResetBindOptions()
ResetReadOnly
func ResetReadOnly()
ResetSource
func ResetSource()
ResetTmpfsOptions
func ResetTmpfsOptions()
ResetVolumeOptions
func ResetVolumeOptions()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
BindOptions ServiceTaskSpecContainerSpecMountsBindOptionsOutputReference No description.
TmpfsOptions ServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference No description.
VolumeOptions ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference No description.
BindOptionsInput ServiceTaskSpecContainerSpecMountsBindOptions No description.
ReadOnlyInput interface{} No description.
SourceInput *string No description.
TargetInput *string No description.
TmpfsOptionsInput ServiceTaskSpecContainerSpecMountsTmpfsOptions No description.
TypeInput *string No description.
VolumeOptionsInput ServiceTaskSpecContainerSpecMountsVolumeOptions No description.
ReadOnly interface{} No description.
Source *string No description.
Target *string No description.
Type *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

BindOptionsRequired
func BindOptions() ServiceTaskSpecContainerSpecMountsBindOptionsOutputReference

TmpfsOptionsRequired
func TmpfsOptions() ServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference

VolumeOptionsRequired
func VolumeOptions() ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference

BindOptionsInputOptional
func BindOptionsInput() ServiceTaskSpecContainerSpecMountsBindOptions

ReadOnlyInputOptional
func ReadOnlyInput() interface{}
  • Type: interface{}

SourceInputOptional
func SourceInput() *string
  • Type: *string

TargetInputOptional
func TargetInput() *string
  • Type: *string

TmpfsOptionsInputOptional
func TmpfsOptionsInput() ServiceTaskSpecContainerSpecMountsTmpfsOptions

TypeInputOptional
func TypeInput() *string
  • Type: *string

VolumeOptionsInputOptional
func VolumeOptionsInput() ServiceTaskSpecContainerSpecMountsVolumeOptions

ReadOnlyRequired
func ReadOnly() interface{}
  • Type: interface{}

SourceRequired
func Source() *string
  • Type: *string

TargetRequired
func Target() *string
  • Type: *string

TypeRequired
func Type() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetMode No description.
ResetSizeBytes No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetMode
func ResetMode()
ResetSizeBytes
func ResetSizeBytes()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
ModeInput *f64 No description.
SizeBytesInput *f64 No description.
Mode *f64 No description.
SizeBytes *f64 No description.
InternalValue ServiceTaskSpecContainerSpecMountsTmpfsOptions No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

ModeInputOptional
func ModeInput() *f64
  • Type: *f64

SizeBytesInputOptional
func SizeBytesInput() *f64
  • Type: *f64

ModeRequired
func Mode() *f64
  • Type: *f64

SizeBytesRequired
func SizeBytes() *f64
  • Type: *f64

InternalValueOptional
func InternalValue() ServiceTaskSpecContainerSpecMountsTmpfsOptions

ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
LabelInput *string No description.
ValueInput *string No description.
Label *string No description.
Value *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

LabelInputOptional
func LabelInput() *string
  • Type: *string

ValueInputOptional
func ValueInput() *string
  • Type: *string

LabelRequired
func Label() *string
  • Type: *string

ValueRequired
func Value() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutLabels No description.
ResetDriverName No description.
ResetDriverOptions No description.
ResetLabels No description.
ResetNoCopy No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutLabels
func PutLabels(value interface{})
valueRequired
  • Type: interface{}

ResetDriverName
func ResetDriverName()
ResetDriverOptions
func ResetDriverOptions()
ResetLabels
func ResetLabels()
ResetNoCopy
func ResetNoCopy()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
Labels ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsList No description.
DriverNameInput *string No description.
DriverOptionsInput *map[string]*string No description.
LabelsInput interface{} No description.
NoCopyInput interface{} No description.
DriverName *string No description.
DriverOptions *map[string]*string No description.
NoCopy interface{} No description.
InternalValue ServiceTaskSpecContainerSpecMountsVolumeOptions No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

LabelsRequired
func Labels() ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsList

DriverNameInputOptional
func DriverNameInput() *string
  • Type: *string

DriverOptionsInputOptional
func DriverOptionsInput() *map[string]*string
  • Type: *map[string]*string

LabelsInputOptional
func LabelsInput() interface{}
  • Type: interface{}

NoCopyInputOptional
func NoCopyInput() interface{}
  • Type: interface{}

DriverNameRequired
func DriverName() *string
  • Type: *string

DriverOptionsRequired
func DriverOptions() *map[string]*string
  • Type: *map[string]*string

NoCopyRequired
func NoCopy() interface{}
  • Type: interface{}

InternalValueOptional
func InternalValue() ServiceTaskSpecContainerSpecMountsVolumeOptions

ServiceTaskSpecContainerSpecOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecContainerSpecOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutConfigs No description.
PutDnsConfig No description.
PutHealthcheck No description.
PutHosts No description.
PutLabels No description.
PutMounts No description.
PutPrivileges No description.
PutSecrets No description.
ResetArgs No description.
ResetCommand No description.
ResetConfigs No description.
ResetDir No description.
ResetDnsConfig No description.
ResetEnv No description.
ResetGroups No description.
ResetHealthcheck No description.
ResetHostname No description.
ResetHosts No description.
ResetIsolation No description.
ResetLabels No description.
ResetMounts No description.
ResetPrivileges No description.
ResetReadOnly No description.
ResetSecrets No description.
ResetStopGracePeriod No description.
ResetStopSignal No description.
ResetSysctl No description.
ResetUser No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutConfigs
func PutConfigs(value interface{})
valueRequired
  • Type: interface{}

PutDnsConfig
func PutDnsConfig(value ServiceTaskSpecContainerSpecDnsConfig)
valueRequired

PutHealthcheck
func PutHealthcheck(value ServiceTaskSpecContainerSpecHealthcheck)
valueRequired

PutHosts
func PutHosts(value interface{})
valueRequired
  • Type: interface{}

PutLabels
func PutLabels(value interface{})
valueRequired
  • Type: interface{}

PutMounts
func PutMounts(value interface{})
valueRequired
  • Type: interface{}

PutPrivileges
func PutPrivileges(value ServiceTaskSpecContainerSpecPrivileges)
valueRequired

PutSecrets
func PutSecrets(value interface{})
valueRequired
  • Type: interface{}

ResetArgs
func ResetArgs()
ResetCommand
func ResetCommand()
ResetConfigs
func ResetConfigs()
ResetDir
func ResetDir()
ResetDnsConfig
func ResetDnsConfig()
ResetEnv
func ResetEnv()
ResetGroups
func ResetGroups()
ResetHealthcheck
func ResetHealthcheck()
ResetHostname
func ResetHostname()
ResetHosts
func ResetHosts()
ResetIsolation
func ResetIsolation()
ResetLabels
func ResetLabels()
ResetMounts
func ResetMounts()
ResetPrivileges
func ResetPrivileges()
ResetReadOnly
func ResetReadOnly()
ResetSecrets
func ResetSecrets()
ResetStopGracePeriod
func ResetStopGracePeriod()
ResetStopSignal
func ResetStopSignal()
ResetSysctl
func ResetSysctl()
ResetUser
func ResetUser()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
Configs ServiceTaskSpecContainerSpecConfigsList No description.
DnsConfig ServiceTaskSpecContainerSpecDnsConfigOutputReference No description.
Healthcheck ServiceTaskSpecContainerSpecHealthcheckOutputReference No description.
Hosts ServiceTaskSpecContainerSpecHostsList No description.
Labels ServiceTaskSpecContainerSpecLabelsList No description.
Mounts ServiceTaskSpecContainerSpecMountsList No description.
Privileges ServiceTaskSpecContainerSpecPrivilegesOutputReference No description.
Secrets ServiceTaskSpecContainerSpecSecretsList No description.
ArgsInput *[]*string No description.
CommandInput *[]*string No description.
ConfigsInput interface{} No description.
DirInput *string No description.
DnsConfigInput ServiceTaskSpecContainerSpecDnsConfig No description.
EnvInput *map[string]*string No description.
GroupsInput *[]*string No description.
HealthcheckInput ServiceTaskSpecContainerSpecHealthcheck No description.
HostnameInput *string No description.
HostsInput interface{} No description.
ImageInput *string No description.
IsolationInput *string No description.
LabelsInput interface{} No description.
MountsInput interface{} No description.
PrivilegesInput ServiceTaskSpecContainerSpecPrivileges No description.
ReadOnlyInput interface{} No description.
SecretsInput interface{} No description.
StopGracePeriodInput *string No description.
StopSignalInput *string No description.
SysctlInput *map[string]*string No description.
UserInput *string No description.
Args *[]*string No description.
Command *[]*string No description.
Dir *string No description.
Env *map[string]*string No description.
Groups *[]*string No description.
Hostname *string No description.
Image *string No description.
Isolation *string No description.
ReadOnly interface{} No description.
StopGracePeriod *string No description.
StopSignal *string No description.
Sysctl *map[string]*string No description.
User *string No description.
InternalValue ServiceTaskSpecContainerSpec No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

ConfigsRequired
func Configs() ServiceTaskSpecContainerSpecConfigsList

DnsConfigRequired
func DnsConfig() ServiceTaskSpecContainerSpecDnsConfigOutputReference

HealthcheckRequired
func Healthcheck() ServiceTaskSpecContainerSpecHealthcheckOutputReference

HostsRequired
func Hosts() ServiceTaskSpecContainerSpecHostsList

LabelsRequired
func Labels() ServiceTaskSpecContainerSpecLabelsList

MountsRequired
func Mounts() ServiceTaskSpecContainerSpecMountsList

PrivilegesRequired
func Privileges() ServiceTaskSpecContainerSpecPrivilegesOutputReference

SecretsRequired
func Secrets() ServiceTaskSpecContainerSpecSecretsList

ArgsInputOptional
func ArgsInput() *[]*string
  • Type: *[]*string

CommandInputOptional
func CommandInput() *[]*string
  • Type: *[]*string

ConfigsInputOptional
func ConfigsInput() interface{}
  • Type: interface{}

DirInputOptional
func DirInput() *string
  • Type: *string

DnsConfigInputOptional
func DnsConfigInput() ServiceTaskSpecContainerSpecDnsConfig

EnvInputOptional
func EnvInput() *map[string]*string
  • Type: *map[string]*string

GroupsInputOptional
func GroupsInput() *[]*string
  • Type: *[]*string

HealthcheckInputOptional
func HealthcheckInput() ServiceTaskSpecContainerSpecHealthcheck

HostnameInputOptional
func HostnameInput() *string
  • Type: *string

HostsInputOptional
func HostsInput() interface{}
  • Type: interface{}

ImageInputOptional
func ImageInput() *string
  • Type: *string

IsolationInputOptional
func IsolationInput() *string
  • Type: *string

LabelsInputOptional
func LabelsInput() interface{}
  • Type: interface{}

MountsInputOptional
func MountsInput() interface{}
  • Type: interface{}

PrivilegesInputOptional
func PrivilegesInput() ServiceTaskSpecContainerSpecPrivileges

ReadOnlyInputOptional
func ReadOnlyInput() interface{}
  • Type: interface{}

SecretsInputOptional
func SecretsInput() interface{}
  • Type: interface{}

StopGracePeriodInputOptional
func StopGracePeriodInput() *string
  • Type: *string

StopSignalInputOptional
func StopSignalInput() *string
  • Type: *string

SysctlInputOptional
func SysctlInput() *map[string]*string
  • Type: *map[string]*string

UserInputOptional
func UserInput() *string
  • Type: *string

ArgsRequired
func Args() *[]*string
  • Type: *[]*string

CommandRequired
func Command() *[]*string
  • Type: *[]*string

DirRequired
func Dir() *string
  • Type: *string

EnvRequired
func Env() *map[string]*string
  • Type: *map[string]*string

GroupsRequired
func Groups() *[]*string
  • Type: *[]*string

HostnameRequired
func Hostname() *string
  • Type: *string

ImageRequired
func Image() *string
  • Type: *string

IsolationRequired
func Isolation() *string
  • Type: *string

ReadOnlyRequired
func ReadOnly() interface{}
  • Type: interface{}

StopGracePeriodRequired
func StopGracePeriod() *string
  • Type: *string

StopSignalRequired
func StopSignal() *string
  • Type: *string

SysctlRequired
func Sysctl() *map[string]*string
  • Type: *map[string]*string

UserRequired
func User() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceTaskSpecContainerSpec

ServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetFile No description.
ResetRegistry No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetFile
func ResetFile()
ResetRegistry
func ResetRegistry()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
FileInput *string No description.
RegistryInput *string No description.
File *string No description.
Registry *string No description.
InternalValue ServiceTaskSpecContainerSpecPrivilegesCredentialSpec No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

FileInputOptional
func FileInput() *string
  • Type: *string

RegistryInputOptional
func RegistryInput() *string
  • Type: *string

FileRequired
func File() *string
  • Type: *string

RegistryRequired
func Registry() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceTaskSpecContainerSpecPrivilegesCredentialSpec

ServiceTaskSpecContainerSpecPrivilegesOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecPrivilegesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecContainerSpecPrivilegesOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutCredentialSpec No description.
PutSeLinuxContext No description.
ResetCredentialSpec No description.
ResetSeLinuxContext No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutCredentialSpec
func PutCredentialSpec(value ServiceTaskSpecContainerSpecPrivilegesCredentialSpec)
valueRequired

PutSeLinuxContext
func PutSeLinuxContext(value ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext)
valueRequired

ResetCredentialSpec
func ResetCredentialSpec()
ResetSeLinuxContext
func ResetSeLinuxContext()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
CredentialSpec ServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference No description.
SeLinuxContext ServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference No description.
CredentialSpecInput ServiceTaskSpecContainerSpecPrivilegesCredentialSpec No description.
SeLinuxContextInput ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext No description.
InternalValue ServiceTaskSpecContainerSpecPrivileges No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

CredentialSpecRequired
func CredentialSpec() ServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference

SeLinuxContextRequired
func SeLinuxContext() ServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference

CredentialSpecInputOptional
func CredentialSpecInput() ServiceTaskSpecContainerSpecPrivilegesCredentialSpec

SeLinuxContextInputOptional
func SeLinuxContextInput() ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext

InternalValueOptional
func InternalValue() ServiceTaskSpecContainerSpecPrivileges

ServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetDisable No description.
ResetLevel No description.
ResetRole No description.
ResetType No description.
ResetUser No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetDisable
func ResetDisable()
ResetLevel
func ResetLevel()
ResetRole
func ResetRole()
ResetType
func ResetType()
ResetUser
func ResetUser()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
DisableInput interface{} No description.
LevelInput *string No description.
RoleInput *string No description.
TypeInput *string No description.
UserInput *string No description.
Disable interface{} No description.
Level *string No description.
Role *string No description.
Type *string No description.
User *string No description.
InternalValue ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

DisableInputOptional
func DisableInput() interface{}
  • Type: interface{}

LevelInputOptional
func LevelInput() *string
  • Type: *string

RoleInputOptional
func RoleInput() *string
  • Type: *string

TypeInputOptional
func TypeInput() *string
  • Type: *string

UserInputOptional
func UserInput() *string
  • Type: *string

DisableRequired
func Disable() interface{}
  • Type: interface{}

LevelRequired
func Level() *string
  • Type: *string

RoleRequired
func Role() *string
  • Type: *string

TypeRequired
func Type() *string
  • Type: *string

UserRequired
func User() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext

ServiceTaskSpecContainerSpecSecretsList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecSecretsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceTaskSpecContainerSpecSecretsList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceTaskSpecContainerSpecSecretsOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecContainerSpecSecretsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecContainerSpecSecretsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceTaskSpecContainerSpecSecretsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetFileGid No description.
ResetFileMode No description.
ResetFileUid No description.
ResetSecretName No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetFileGid
func ResetFileGid()
ResetFileMode
func ResetFileMode()
ResetFileUid
func ResetFileUid()
ResetSecretName
func ResetSecretName()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
FileGidInput *string No description.
FileModeInput *f64 No description.
FileNameInput *string No description.
FileUidInput *string No description.
SecretIdInput *string No description.
SecretNameInput *string No description.
FileGid *string No description.
FileMode *f64 No description.
FileName *string No description.
FileUid *string No description.
SecretId *string No description.
SecretName *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

FileGidInputOptional
func FileGidInput() *string
  • Type: *string

FileModeInputOptional
func FileModeInput() *f64
  • Type: *f64

FileNameInputOptional
func FileNameInput() *string
  • Type: *string

FileUidInputOptional
func FileUidInput() *string
  • Type: *string

SecretIdInputOptional
func SecretIdInput() *string
  • Type: *string

SecretNameInputOptional
func SecretNameInput() *string
  • Type: *string

FileGidRequired
func FileGid() *string
  • Type: *string

FileModeRequired
func FileMode() *f64
  • Type: *f64

FileNameRequired
func FileName() *string
  • Type: *string

FileUidRequired
func FileUid() *string
  • Type: *string

SecretIdRequired
func SecretId() *string
  • Type: *string

SecretNameRequired
func SecretName() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecLogDriverOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecLogDriverOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecLogDriverOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetOptions No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetOptions
func ResetOptions()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
NameInput *string No description.
OptionsInput *map[string]*string No description.
Name *string No description.
Options *map[string]*string No description.
InternalValue ServiceTaskSpecLogDriver No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

NameInputOptional
func NameInput() *string
  • Type: *string

OptionsInputOptional
func OptionsInput() *map[string]*string
  • Type: *map[string]*string

NameRequired
func Name() *string
  • Type: *string

OptionsRequired
func Options() *map[string]*string
  • Type: *map[string]*string

InternalValueOptional
func InternalValue() ServiceTaskSpecLogDriver

ServiceTaskSpecNetworksAdvancedList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecNetworksAdvancedList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceTaskSpecNetworksAdvancedList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceTaskSpecNetworksAdvancedOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecNetworksAdvancedOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecNetworksAdvancedOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceTaskSpecNetworksAdvancedOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetAliases No description.
ResetDriverOpts No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetAliases
func ResetAliases()
ResetDriverOpts
func ResetDriverOpts()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
AliasesInput *[]*string No description.
DriverOptsInput *[]*string No description.
NameInput *string No description.
Aliases *[]*string No description.
DriverOpts *[]*string No description.
Name *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

AliasesInputOptional
func AliasesInput() *[]*string
  • Type: *[]*string

DriverOptsInputOptional
func DriverOptsInput() *[]*string
  • Type: *[]*string

NameInputOptional
func NameInput() *string
  • Type: *string

AliasesRequired
func Aliases() *[]*string
  • Type: *[]*string

DriverOptsRequired
func DriverOpts() *[]*string
  • Type: *[]*string

NameRequired
func Name() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutContainerSpec No description.
PutLogDriver No description.
PutNetworksAdvanced No description.
PutPlacement No description.
PutResources No description.
PutRestartPolicy No description.
ResetForceUpdate No description.
ResetLogDriver No description.
ResetNetworksAdvanced No description.
ResetPlacement No description.
ResetResources No description.
ResetRestartPolicy No description.
ResetRuntime No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutContainerSpec
func PutContainerSpec(value ServiceTaskSpecContainerSpec)
valueRequired

PutLogDriver
func PutLogDriver(value ServiceTaskSpecLogDriver)
valueRequired

PutNetworksAdvanced
func PutNetworksAdvanced(value interface{})
valueRequired
  • Type: interface{}

PutPlacement
func PutPlacement(value ServiceTaskSpecPlacement)
valueRequired

PutResources
func PutResources(value ServiceTaskSpecResources)
valueRequired

PutRestartPolicy
func PutRestartPolicy(value ServiceTaskSpecRestartPolicy)
valueRequired

ResetForceUpdate
func ResetForceUpdate()
ResetLogDriver
func ResetLogDriver()
ResetNetworksAdvanced
func ResetNetworksAdvanced()
ResetPlacement
func ResetPlacement()
ResetResources
func ResetResources()
ResetRestartPolicy
func ResetRestartPolicy()
ResetRuntime
func ResetRuntime()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
ContainerSpec ServiceTaskSpecContainerSpecOutputReference No description.
LogDriver ServiceTaskSpecLogDriverOutputReference No description.
NetworksAdvanced ServiceTaskSpecNetworksAdvancedList No description.
Placement ServiceTaskSpecPlacementOutputReference No description.
Resources ServiceTaskSpecResourcesOutputReference No description.
RestartPolicy ServiceTaskSpecRestartPolicyOutputReference No description.
ContainerSpecInput ServiceTaskSpecContainerSpec No description.
ForceUpdateInput *f64 No description.
LogDriverInput ServiceTaskSpecLogDriver No description.
NetworksAdvancedInput interface{} No description.
PlacementInput ServiceTaskSpecPlacement No description.
ResourcesInput ServiceTaskSpecResources No description.
RestartPolicyInput ServiceTaskSpecRestartPolicy No description.
RuntimeInput *string No description.
ForceUpdate *f64 No description.
Runtime *string No description.
InternalValue ServiceTaskSpec No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

ContainerSpecRequired
func ContainerSpec() ServiceTaskSpecContainerSpecOutputReference

LogDriverRequired
func LogDriver() ServiceTaskSpecLogDriverOutputReference

NetworksAdvancedRequired
func NetworksAdvanced() ServiceTaskSpecNetworksAdvancedList

PlacementRequired
func Placement() ServiceTaskSpecPlacementOutputReference

ResourcesRequired
func Resources() ServiceTaskSpecResourcesOutputReference

RestartPolicyRequired
func RestartPolicy() ServiceTaskSpecRestartPolicyOutputReference

ContainerSpecInputOptional
func ContainerSpecInput() ServiceTaskSpecContainerSpec

ForceUpdateInputOptional
func ForceUpdateInput() *f64
  • Type: *f64

LogDriverInputOptional
func LogDriverInput() ServiceTaskSpecLogDriver

NetworksAdvancedInputOptional
func NetworksAdvancedInput() interface{}
  • Type: interface{}

PlacementInputOptional
func PlacementInput() ServiceTaskSpecPlacement

ResourcesInputOptional
func ResourcesInput() ServiceTaskSpecResources

RestartPolicyInputOptional
func RestartPolicyInput() ServiceTaskSpecRestartPolicy

RuntimeInputOptional
func RuntimeInput() *string
  • Type: *string

ForceUpdateRequired
func ForceUpdate() *f64
  • Type: *f64

RuntimeRequired
func Runtime() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceTaskSpec

ServiceTaskSpecPlacementOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecPlacementOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecPlacementOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutPlatforms No description.
ResetConstraints No description.
ResetMaxReplicas No description.
ResetPlatforms No description.
ResetPrefs No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutPlatforms
func PutPlatforms(value interface{})
valueRequired
  • Type: interface{}

ResetConstraints
func ResetConstraints()
ResetMaxReplicas
func ResetMaxReplicas()
ResetPlatforms
func ResetPlatforms()
ResetPrefs
func ResetPrefs()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
Platforms ServiceTaskSpecPlacementPlatformsList No description.
ConstraintsInput *[]*string No description.
MaxReplicasInput *f64 No description.
PlatformsInput interface{} No description.
PrefsInput *[]*string No description.
Constraints *[]*string No description.
MaxReplicas *f64 No description.
Prefs *[]*string No description.
InternalValue ServiceTaskSpecPlacement No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

PlatformsRequired
func Platforms() ServiceTaskSpecPlacementPlatformsList

ConstraintsInputOptional
func ConstraintsInput() *[]*string
  • Type: *[]*string

MaxReplicasInputOptional
func MaxReplicasInput() *f64
  • Type: *f64

PlatformsInputOptional
func PlatformsInput() interface{}
  • Type: interface{}

PrefsInputOptional
func PrefsInput() *[]*string
  • Type: *[]*string

ConstraintsRequired
func Constraints() *[]*string
  • Type: *[]*string

MaxReplicasRequired
func MaxReplicas() *f64
  • Type: *f64

PrefsRequired
func Prefs() *[]*string
  • Type: *[]*string

InternalValueOptional
func InternalValue() ServiceTaskSpecPlacement

ServiceTaskSpecPlacementPlatformsList

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecPlacementPlatformsList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) ServiceTaskSpecPlacementPlatformsList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) ServiceTaskSpecPlacementPlatformsOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecPlacementPlatformsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecPlacementPlatformsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) ServiceTaskSpecPlacementPlatformsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
ArchitectureInput *string No description.
OsInput *string No description.
Architecture *string No description.
Os *string No description.
InternalValue interface{} No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

ArchitectureInputOptional
func ArchitectureInput() *string
  • Type: *string

OsInputOptional
func OsInput() *string
  • Type: *string

ArchitectureRequired
func Architecture() *string
  • Type: *string

OsRequired
func Os() *string
  • Type: *string

InternalValueOptional
func InternalValue() interface{}
  • Type: interface{}

ServiceTaskSpecResourcesLimitsOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecResourcesLimitsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecResourcesLimitsOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetMemoryBytes No description.
ResetNanoCpus No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetMemoryBytes
func ResetMemoryBytes()
ResetNanoCpus
func ResetNanoCpus()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
MemoryBytesInput *f64 No description.
NanoCpusInput *f64 No description.
MemoryBytes *f64 No description.
NanoCpus *f64 No description.
InternalValue ServiceTaskSpecResourcesLimits No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

MemoryBytesInputOptional
func MemoryBytesInput() *f64
  • Type: *f64

NanoCpusInputOptional
func NanoCpusInput() *f64
  • Type: *f64

MemoryBytesRequired
func MemoryBytes() *f64
  • Type: *f64

NanoCpusRequired
func NanoCpus() *f64
  • Type: *f64

InternalValueOptional
func InternalValue() ServiceTaskSpecResourcesLimits

ServiceTaskSpecResourcesOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecResourcesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecResourcesOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutLimits No description.
PutReservation No description.
ResetLimits No description.
ResetReservation No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutLimits
func PutLimits(value ServiceTaskSpecResourcesLimits)
valueRequired

PutReservation
func PutReservation(value ServiceTaskSpecResourcesReservation)
valueRequired

ResetLimits
func ResetLimits()
ResetReservation
func ResetReservation()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
Limits ServiceTaskSpecResourcesLimitsOutputReference No description.
Reservation ServiceTaskSpecResourcesReservationOutputReference No description.
LimitsInput ServiceTaskSpecResourcesLimits No description.
ReservationInput ServiceTaskSpecResourcesReservation No description.
InternalValue ServiceTaskSpecResources No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

LimitsRequired
func Limits() ServiceTaskSpecResourcesLimitsOutputReference

ReservationRequired
func Reservation() ServiceTaskSpecResourcesReservationOutputReference

LimitsInputOptional
func LimitsInput() ServiceTaskSpecResourcesLimits

ReservationInputOptional
func ReservationInput() ServiceTaskSpecResourcesReservation

InternalValueOptional
func InternalValue() ServiceTaskSpecResources

ServiceTaskSpecResourcesReservationGenericResourcesOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecResourcesReservationGenericResourcesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecResourcesReservationGenericResourcesOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetDiscreteResourcesSpec No description.
ResetNamedResourcesSpec No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetDiscreteResourcesSpec
func ResetDiscreteResourcesSpec()
ResetNamedResourcesSpec
func ResetNamedResourcesSpec()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
DiscreteResourcesSpecInput *[]*string No description.
NamedResourcesSpecInput *[]*string No description.
DiscreteResourcesSpec *[]*string No description.
NamedResourcesSpec *[]*string No description.
InternalValue ServiceTaskSpecResourcesReservationGenericResources No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

DiscreteResourcesSpecInputOptional
func DiscreteResourcesSpecInput() *[]*string
  • Type: *[]*string

NamedResourcesSpecInputOptional
func NamedResourcesSpecInput() *[]*string
  • Type: *[]*string

DiscreteResourcesSpecRequired
func DiscreteResourcesSpec() *[]*string
  • Type: *[]*string

NamedResourcesSpecRequired
func NamedResourcesSpec() *[]*string
  • Type: *[]*string

InternalValueOptional
func InternalValue() ServiceTaskSpecResourcesReservationGenericResources

ServiceTaskSpecResourcesReservationOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecResourcesReservationOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecResourcesReservationOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
PutGenericResources No description.
ResetGenericResources No description.
ResetMemoryBytes No description.
ResetNanoCpus No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

PutGenericResources
func PutGenericResources(value ServiceTaskSpecResourcesReservationGenericResources)
valueRequired

ResetGenericResources
func ResetGenericResources()
ResetMemoryBytes
func ResetMemoryBytes()
ResetNanoCpus
func ResetNanoCpus()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
GenericResources ServiceTaskSpecResourcesReservationGenericResourcesOutputReference No description.
GenericResourcesInput ServiceTaskSpecResourcesReservationGenericResources No description.
MemoryBytesInput *f64 No description.
NanoCpusInput *f64 No description.
MemoryBytes *f64 No description.
NanoCpus *f64 No description.
InternalValue ServiceTaskSpecResourcesReservation No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

GenericResourcesRequired
func GenericResources() ServiceTaskSpecResourcesReservationGenericResourcesOutputReference

GenericResourcesInputOptional
func GenericResourcesInput() ServiceTaskSpecResourcesReservationGenericResources

MemoryBytesInputOptional
func MemoryBytesInput() *f64
  • Type: *f64

NanoCpusInputOptional
func NanoCpusInput() *f64
  • Type: *f64

MemoryBytesRequired
func MemoryBytes() *f64
  • Type: *f64

NanoCpusRequired
func NanoCpus() *f64
  • Type: *f64

InternalValueOptional
func InternalValue() ServiceTaskSpecResourcesReservation

ServiceTaskSpecRestartPolicyOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceTaskSpecRestartPolicyOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceTaskSpecRestartPolicyOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetCondition No description.
ResetDelay No description.
ResetMaxAttempts No description.
ResetWindow No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetCondition
func ResetCondition()
ResetDelay
func ResetDelay()
ResetMaxAttempts
func ResetMaxAttempts()
ResetWindow
func ResetWindow()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
ConditionInput *string No description.
DelayInput *string No description.
MaxAttemptsInput *f64 No description.
WindowInput *string No description.
Condition *string No description.
Delay *string No description.
MaxAttempts *f64 No description.
Window *string No description.
InternalValue ServiceTaskSpecRestartPolicy No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

ConditionInputOptional
func ConditionInput() *string
  • Type: *string

DelayInputOptional
func DelayInput() *string
  • Type: *string

MaxAttemptsInputOptional
func MaxAttemptsInput() *f64
  • Type: *f64

WindowInputOptional
func WindowInput() *string
  • Type: *string

ConditionRequired
func Condition() *string
  • Type: *string

DelayRequired
func Delay() *string
  • Type: *string

MaxAttemptsRequired
func MaxAttempts() *f64
  • Type: *f64

WindowRequired
func Window() *string
  • Type: *string

InternalValueOptional
func InternalValue() ServiceTaskSpecRestartPolicy

ServiceUpdateConfigOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"

service.NewServiceUpdateConfigOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) ServiceUpdateConfigOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
ResetDelay No description.
ResetFailureAction No description.
ResetMaxFailureRatio No description.
ResetMonitor No description.
ResetOrder No description.
ResetParallelism No description.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

ResetDelay
func ResetDelay()
ResetFailureAction
func ResetFailureAction()
ResetMaxFailureRatio
func ResetMaxFailureRatio()
ResetMonitor
func ResetMonitor()
ResetOrder
func ResetOrder()
ResetParallelism
func ResetParallelism()

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
DelayInput *string No description.
FailureActionInput *string No description.
MaxFailureRatioInput *string No description.
MonitorInput *string No description.
OrderInput *string No description.
ParallelismInput *f64 No description.
Delay *string No description.
FailureAction *string No description.
MaxFailureRatio *string No description.
Monitor *string No description.
Order *string No description.
Parallelism *f64 No description.
InternalValue ServiceUpdateConfig No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*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.


FqnRequired
func Fqn() *string
  • Type: *string

DelayInputOptional
func DelayInput() *string
  • Type: *string

FailureActionInputOptional
func FailureActionInput() *string
  • Type: *string

MaxFailureRatioInputOptional
func MaxFailureRatioInput() *string
  • Type: *string

MonitorInputOptional
func MonitorInput() *string
  • Type: *string

OrderInputOptional
func OrderInput() *string
  • Type: *string

ParallelismInputOptional
func ParallelismInput() *f64
  • Type: *f64

DelayRequired
func Delay() *string
  • Type: *string

FailureActionRequired
func FailureAction() *string
  • Type: *string

MaxFailureRatioRequired
func MaxFailureRatio() *string
  • Type: *string

MonitorRequired
func Monitor() *string
  • Type: *string

OrderRequired
func Order() *string
  • Type: *string

ParallelismRequired
func Parallelism() *f64
  • Type: *f64

InternalValueOptional
func InternalValue() ServiceUpdateConfig