Represents a {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service docker_service}.
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. |
- Type: github.com/aws/constructs-go/constructs/v10.Construct
The scope in which to define this construct.
- Type: *string
The scoped construct ID.
Must be unique amongst siblings in the same scope
- Type: ServiceConfig
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. |
func ToString() *string
Returns a string representation of this construct.
func AddOverride(path *string, value interface{})
- Type: *string
- Type: interface{}
func OverrideLogicalId(newLogicalId *string)
Overrides the auto-generated logical ID with a specific ID.
- Type: *string
The new logical ID to use for this stack element.
func ResetOverrideLogicalId()
Resets a previously passed logical Id to use the auto-generated logical id again.
func ToHclTerraform() interface{}
func ToMetadata() interface{}
func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
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.
- Type: *string
The string move target that will correspond to this resource.
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func HasResourceMove() interface{}
func ImportFrom(id *string, provider TerraformProvider)
- Type: *string
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
func InterpolationForAttribute(terraformAttribute *string) IResolvable
- Type: *string
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.
- Type: *string
Full id of resource being moved from, e.g. "aws_s3_bucket.example".
func MoveTo(moveTarget *string, index interface{})
Moves this resource to the target resource given by moveTarget.
- Type: *string
The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
- Type: interface{}
Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
func MoveToId(id *string)
Moves this resource to the resource corresponding to "id".
- Type: *string
Full id of resource to move to, e.g. "aws_s3_bucket.example".
func PutAuth(value ServiceAuth)
- Type: ServiceAuth
func PutConvergeConfig(value ServiceConvergeConfig)
- Type: ServiceConvergeConfig
func PutEndpointSpec(value ServiceEndpointSpec)
- Type: ServiceEndpointSpec
func PutLabels(value interface{})
- Type: interface{}
func PutMode(value ServiceMode)
- Type: ServiceMode
func PutRollbackConfig(value ServiceRollbackConfig)
- Type: ServiceRollbackConfig
func PutTaskSpec(value ServiceTaskSpec)
- Type: ServiceTaskSpec
func PutUpdateConfig(value ServiceUpdateConfig)
- Type: ServiceUpdateConfig
func ResetAuth()
func ResetConvergeConfig()
func ResetEndpointSpec()
func ResetId()
func ResetLabels()
func ResetMode()
func ResetRollbackConfig()
func ResetUpdateConfig()
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 ". |
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.
- Type: interface{}
Any object.
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
service.Service_IsTerraformElement(x interface{}) *bool
- Type: interface{}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
service.Service_IsTerraformResource(x interface{}) *bool
- Type: interface{}
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 ".
- Type: github.com/aws/constructs-go/constructs/v10.Construct
The scope in which to define this construct.
- Type: *string
The construct id used in the generated config for the Service to import.
- 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
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
? Optional instance of the provider where the Service to import is found.
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. |
func Node() Node
- Type: github.com/aws/constructs-go/constructs/v10.Node
The tree node.
func CdktfStack() TerraformStack
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformStack
func Fqn() *string
- Type: *string
func FriendlyUniqueId() *string
- Type: *string
func TerraformMetaArguments() *map[string]interface{}
- Type: *map[string]interface{}
func TerraformResourceType() *string
- Type: *string
func TerraformGeneratorMetadata() TerraformProviderGeneratorMetadata
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata
func Connection() interface{}
- Type: interface{}
func Count() interface{}
- Type: interface{}
func DependsOn() *[]*string
- Type: *[]*string
func ForEach() ITerraformIterator
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator
func Lifecycle() TerraformResourceLifecycle
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle
func Provider() TerraformProvider
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
func Provisioners() *[]interface{}
- Type: *[]interface{}
func Auth() ServiceAuthOutputReference
func ConvergeConfig() ServiceConvergeConfigOutputReference
func EndpointSpec() ServiceEndpointSpecOutputReference
func Labels() ServiceLabelsList
- Type: ServiceLabelsList
func Mode() ServiceModeOutputReference
func RollbackConfig() ServiceRollbackConfigOutputReference
func TaskSpec() ServiceTaskSpecOutputReference
func UpdateConfig() ServiceUpdateConfigOutputReference
func AuthInput() ServiceAuth
- Type: ServiceAuth
func ConvergeConfigInput() ServiceConvergeConfig
- Type: ServiceConvergeConfig
func EndpointSpecInput() ServiceEndpointSpec
- Type: ServiceEndpointSpec
func IdInput() *string
- Type: *string
func LabelsInput() interface{}
- Type: interface{}
func ModeInput() ServiceMode
- Type: ServiceMode
func NameInput() *string
- Type: *string
func RollbackConfigInput() ServiceRollbackConfig
- Type: ServiceRollbackConfig
func TaskSpecInput() ServiceTaskSpec
- Type: ServiceTaskSpec
func UpdateConfigInput() ServiceUpdateConfig
- Type: ServiceUpdateConfig
func Id() *string
- Type: *string
func Name() *string
- Type: *string
Name | Type | Description |
---|---|---|
TfResourceType |
*string |
No description. |
func TfResourceType() *string
- Type: *string
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceAuth {
ServerAddress: *string,
Password: *string,
Username: *string,
}
Name | Type | Description |
---|---|---|
ServerAddress |
*string |
The address of the server for the authentication. |
Password |
*string |
The password. |
Username |
*string |
The username. |
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}
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}
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}
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,
}
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. |
Connection interface{}
- Type: interface{}
Count interface{}
- Type: interface{}
DependsOn *[]ITerraformDependable
- Type: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable
ForEach ITerraformIterator
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator
Lifecycle TerraformResourceLifecycle
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle
Provider TerraformProvider
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
Provisioners *[]interface{}
- Type: *[]interface{}
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}
TaskSpec ServiceTaskSpec
- Type: 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}
Auth ServiceAuth
- Type: ServiceAuth
auth block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#auth Service#auth}
ConvergeConfig ServiceConvergeConfig
- Type: 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}
EndpointSpec ServiceEndpointSpec
- Type: 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}
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.
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}
Mode ServiceMode
- Type: ServiceMode
mode block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#mode Service#mode}
RollbackConfig ServiceRollbackConfig
- Type: 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}
UpdateConfig ServiceUpdateConfig
- Type: 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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceConvergeConfig {
Delay: *string,
Timeout: *string,
}
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 . |
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceEndpointSpec {
Mode: *string,
Ports: interface{},
}
Name | Type | Description |
---|---|---|
Mode |
*string |
The mode of resolution to use for internal load balancing between tasks. |
Ports |
interface{} |
ports block. |
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceEndpointSpecPorts {
TargetPort: *f64,
Name: *string,
Protocol: *string,
PublishedPort: *f64,
PublishMode: *string,
}
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 . |
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}
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}
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceLabels {
Label: *string,
Value: *string,
}
Name | Type | Description |
---|---|---|
Label |
*string |
Name of the label. |
Value |
*string |
Value of the label. |
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}
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}
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,
}
Name | Type | Description |
---|---|---|
Global |
interface{} |
The global service mode. Defaults to false . |
Replicated |
ServiceModeReplicated |
replicated block. |
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}
Replicated ServiceModeReplicated
- Type: ServiceModeReplicated
replicated block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#replicated Service#replicated}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceModeReplicated {
Replicas: *f64,
}
Name | Type | Description |
---|---|---|
Replicas |
*f64 |
The amount of replicas of the service. Defaults to 1 . |
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}
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,
}
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 . |
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}
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}
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}
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}
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}
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}
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,
}
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. |
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}
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}
LogDriver ServiceTaskSpecLogDriver
- Type: 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}
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}
Placement ServiceTaskSpecPlacement
- Type: ServiceTaskSpecPlacement
placement block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#placement Service#placement}
Resources ServiceTaskSpecResources
- Type: ServiceTaskSpecResources
resources block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs/resources/service#resources Service#resources}
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}
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}
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,
}
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. |
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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}
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,
}
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 . |
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}
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}
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}
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecDnsConfig {
Nameservers: *[]*string,
Options: *[]*string,
Search: *[]*string,
}
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. |
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecHealthcheck {
Test: *[]*string,
Interval: *string,
Retries: *f64,
StartPeriod: *string,
Timeout: *string,
}
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 . |
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}
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}
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecHosts {
Host: *string,
Ip: *string,
}
Name | Type | Description |
---|---|---|
Host |
*string |
The name of the host. |
Ip |
*string |
The ip of the host. |
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecLabels {
Label: *string,
Value: *string,
}
Name | Type | Description |
---|---|---|
Label |
*string |
Name of the label. |
Value |
*string |
Value of the label. |
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}
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}
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,
}
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. |
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}
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}
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}
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}
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecMountsBindOptions {
Propagation: *string,
}
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. |
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecMountsTmpfsOptions {
Mode: *f64,
SizeBytes: *f64,
}
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. |
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecMountsVolumeOptions {
DriverName: *string,
DriverOptions: *map[string]*string,
Labels: interface{},
NoCopy: interface{},
}
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. |
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}
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels {
Label: *string,
Value: *string,
}
Name | Type | Description |
---|---|---|
Label |
*string |
Name of the label. |
Value |
*string |
Value of the label. |
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}
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}
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,
}
Name | Type | Description |
---|---|---|
CredentialSpec |
ServiceTaskSpecContainerSpecPrivilegesCredentialSpec |
credential_spec block. |
SeLinuxContext |
ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext |
se_linux_context block. |
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecPrivilegesCredentialSpec {
File: *string,
Registry: *string,
}
Name | Type | Description |
---|---|---|
File |
*string |
Load credential spec from this file. |
Registry |
*string |
Load credential spec from this value in the Windows registry. |
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext {
Disable: interface{},
Level: *string,
Role: *string,
Type: *string,
User: *string,
}
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. |
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}
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}
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}
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}
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}
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,
}
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. |
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}
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}
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}
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecLogDriver {
Name: *string,
Options: *map[string]*string,
}
Name | Type | Description |
---|---|---|
Name |
*string |
The logging driver to use. |
Options |
*map[string]*string |
The options for the logging driver. |
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecNetworksAdvanced {
Name: *string,
Aliases: *[]*string,
DriverOpts: *[]*string,
}
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 . |
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecPlacement {
Constraints: *[]*string,
MaxReplicas: *f64,
Platforms: interface{},
Prefs: *[]*string,
}
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. |
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}
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecPlacementPlatforms {
Architecture: *string,
Os: *string,
}
Name | Type | Description |
---|---|---|
Architecture |
*string |
The architecture, e.g. amd64 . |
Os |
*string |
The operation system, e.g. linux . |
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}
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}
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,
}
Name | Type | Description |
---|---|---|
Limits |
ServiceTaskSpecResourcesLimits |
limits block. |
Reservation |
ServiceTaskSpecResourcesReservation |
reservation block. |
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecResourcesLimits {
MemoryBytes: *f64,
NanoCpus: *f64,
}
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 . |
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}
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}
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,
}
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 . |
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}
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecResourcesReservationGenericResources {
DiscreteResourcesSpec: *[]*string,
NamedResourcesSpec: *[]*string,
}
Name | Type | Description |
---|---|---|
DiscreteResourcesSpec |
*[]*string |
The Integer resources. |
NamedResourcesSpec |
*[]*string |
The String resources. |
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}
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}
import "github.com/cdktf/cdktf-provider-docker-go/docker/v11/service"
&service.ServiceTaskSpecRestartPolicy {
Condition: *string,
Delay: *string,
MaxAttempts: *f64,
Window: *string,
}
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). |
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}
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}
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}
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}
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,
}
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 . |
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}
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}
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}
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}
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}
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}
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetPassword()
func ResetUsername()
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. |
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.
func Fqn() *string
- Type: *string
func PasswordInput() *string
- Type: *string
func ServerAddressInput() *string
- Type: *string
func UsernameInput() *string
- Type: *string
func Password() *string
- Type: *string
func ServerAddress() *string
- Type: *string
func Username() *string
- Type: *string
func InternalValue() ServiceAuth
- Type: ServiceAuth
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetDelay()
func ResetTimeout()
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. |
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.
func Fqn() *string
- Type: *string
func DelayInput() *string
- Type: *string
func TimeoutInput() *string
- Type: *string
func Delay() *string
- Type: *string
func Timeout() *string
- Type: *string
func InternalValue() ServiceConvergeConfig
- Type: ServiceConvergeConfig
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutPorts(value interface{})
- Type: interface{}
func ResetMode()
func ResetPorts()
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. |
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.
func Fqn() *string
- Type: *string
func Ports() ServiceEndpointSpecPortsList
func ModeInput() *string
- Type: *string
func PortsInput() interface{}
- Type: interface{}
func Mode() *string
- Type: *string
func InternalValue() ServiceEndpointSpec
- Type: ServiceEndpointSpec
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceEndpointSpecPortsOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetName()
func ResetProtocol()
func ResetPublishedPort()
func ResetPublishMode()
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. |
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.
func Fqn() *string
- Type: *string
func NameInput() *string
- Type: *string
func ProtocolInput() *string
- Type: *string
func PublishedPortInput() *f64
- Type: *f64
func PublishModeInput() *string
- Type: *string
func TargetPortInput() *f64
- Type: *f64
func Name() *string
- Type: *string
func Protocol() *string
- Type: *string
func PublishedPort() *f64
- Type: *f64
func PublishMode() *string
- Type: *string
func TargetPort() *f64
- Type: *f64
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceLabelsOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
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. |
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.
func Fqn() *string
- Type: *string
func LabelInput() *string
- Type: *string
func ValueInput() *string
- Type: *string
func Label() *string
- Type: *string
func Value() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutReplicated(value ServiceModeReplicated)
- Type: ServiceModeReplicated
func ResetGlobal()
func ResetReplicated()
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. |
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.
func Fqn() *string
- Type: *string
func Replicated() ServiceModeReplicatedOutputReference
func GlobalInput() interface{}
- Type: interface{}
func ReplicatedInput() ServiceModeReplicated
- Type: ServiceModeReplicated
func Global() interface{}
- Type: interface{}
func InternalValue() ServiceMode
- Type: ServiceMode
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetReplicas()
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. |
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.
func Fqn() *string
- Type: *string
func ReplicasInput() *f64
- Type: *f64
func Replicas() *f64
- Type: *f64
func InternalValue() ServiceModeReplicated
- Type: ServiceModeReplicated
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetDelay()
func ResetFailureAction()
func ResetMaxFailureRatio()
func ResetMonitor()
func ResetOrder()
func ResetParallelism()
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. |
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.
func Fqn() *string
- Type: *string
func DelayInput() *string
- Type: *string
func FailureActionInput() *string
- Type: *string
func MaxFailureRatioInput() *string
- Type: *string
func MonitorInput() *string
- Type: *string
func OrderInput() *string
- Type: *string
func ParallelismInput() *f64
- Type: *f64
func Delay() *string
- Type: *string
func FailureAction() *string
- Type: *string
func MaxFailureRatio() *string
- Type: *string
func Monitor() *string
- Type: *string
func Order() *string
- Type: *string
func Parallelism() *f64
- Type: *f64
func InternalValue() ServiceRollbackConfig
- Type: ServiceRollbackConfig
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceTaskSpecContainerSpecConfigsOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetConfigName()
func ResetFileGid()
func ResetFileMode()
func ResetFileUid()
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. |
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.
func Fqn() *string
- Type: *string
func ConfigIdInput() *string
- Type: *string
func ConfigNameInput() *string
- Type: *string
func FileGidInput() *string
- Type: *string
func FileModeInput() *f64
- Type: *f64
func FileNameInput() *string
- Type: *string
func FileUidInput() *string
- Type: *string
func ConfigId() *string
- Type: *string
func ConfigName() *string
- Type: *string
func FileGid() *string
- Type: *string
func FileMode() *f64
- Type: *f64
func FileName() *string
- Type: *string
func FileUid() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetOptions()
func ResetSearch()
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. |
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.
func Fqn() *string
- Type: *string
func NameserversInput() *[]*string
- Type: *[]*string
func OptionsInput() *[]*string
- Type: *[]*string
func SearchInput() *[]*string
- Type: *[]*string
func Nameservers() *[]*string
- Type: *[]*string
func Options() *[]*string
- Type: *[]*string
func Search() *[]*string
- Type: *[]*string
func InternalValue() ServiceTaskSpecContainerSpecDnsConfig
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetInterval()
func ResetRetries()
func ResetStartPeriod()
func ResetTimeout()
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. |
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.
func Fqn() *string
- Type: *string
func IntervalInput() *string
- Type: *string
func RetriesInput() *f64
- Type: *f64
func StartPeriodInput() *string
- Type: *string
func TestInput() *[]*string
- Type: *[]*string
func TimeoutInput() *string
- Type: *string
func Interval() *string
- Type: *string
func Retries() *f64
- Type: *f64
func StartPeriod() *string
- Type: *string
func Test() *[]*string
- Type: *[]*string
func Timeout() *string
- Type: *string
func InternalValue() ServiceTaskSpecContainerSpecHealthcheck
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceTaskSpecContainerSpecHostsOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
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. |
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.
func Fqn() *string
- Type: *string
func HostInput() *string
- Type: *string
func IpInput() *string
- Type: *string
func Host() *string
- Type: *string
func Ip() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceTaskSpecContainerSpecLabelsOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
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. |
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.
func Fqn() *string
- Type: *string
func LabelInput() *string
- Type: *string
func ValueInput() *string
- Type: *string
func Label() *string
- Type: *string
func Value() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetPropagation()
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. |
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.
func Fqn() *string
- Type: *string
func PropagationInput() *string
- Type: *string
func Propagation() *string
- Type: *string
func InternalValue() ServiceTaskSpecContainerSpecMountsBindOptions
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceTaskSpecContainerSpecMountsOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutBindOptions(value ServiceTaskSpecContainerSpecMountsBindOptions)
func PutTmpfsOptions(value ServiceTaskSpecContainerSpecMountsTmpfsOptions)
func PutVolumeOptions(value ServiceTaskSpecContainerSpecMountsVolumeOptions)
func ResetBindOptions()
func ResetReadOnly()
func ResetSource()
func ResetTmpfsOptions()
func ResetVolumeOptions()
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.
func Fqn() *string
- Type: *string
func BindOptions() ServiceTaskSpecContainerSpecMountsBindOptionsOutputReference
func TmpfsOptions() ServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference
func VolumeOptions() ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference
func BindOptionsInput() ServiceTaskSpecContainerSpecMountsBindOptions
func ReadOnlyInput() interface{}
- Type: interface{}
func SourceInput() *string
- Type: *string
func TargetInput() *string
- Type: *string
func TmpfsOptionsInput() ServiceTaskSpecContainerSpecMountsTmpfsOptions
func TypeInput() *string
- Type: *string
func VolumeOptionsInput() ServiceTaskSpecContainerSpecMountsVolumeOptions
func ReadOnly() interface{}
- Type: interface{}
func Source() *string
- Type: *string
func Target() *string
- Type: *string
func Type() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetMode()
func ResetSizeBytes()
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. |
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.
func Fqn() *string
- Type: *string
func ModeInput() *f64
- Type: *f64
func SizeBytesInput() *f64
- Type: *f64
func Mode() *f64
- Type: *f64
func SizeBytes() *f64
- Type: *f64
func InternalValue() ServiceTaskSpecContainerSpecMountsTmpfsOptions
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
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. |
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.
func Fqn() *string
- Type: *string
func LabelInput() *string
- Type: *string
func ValueInput() *string
- Type: *string
func Label() *string
- Type: *string
func Value() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutLabels(value interface{})
- Type: interface{}
func ResetDriverName()
func ResetDriverOptions()
func ResetLabels()
func ResetNoCopy()
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. |
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.
func Fqn() *string
- Type: *string
func Labels() ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsList
func DriverNameInput() *string
- Type: *string
func DriverOptionsInput() *map[string]*string
- Type: *map[string]*string
func LabelsInput() interface{}
- Type: interface{}
func NoCopyInput() interface{}
- Type: interface{}
func DriverName() *string
- Type: *string
func DriverOptions() *map[string]*string
- Type: *map[string]*string
func NoCopy() interface{}
- Type: interface{}
func InternalValue() ServiceTaskSpecContainerSpecMountsVolumeOptions
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutConfigs(value interface{})
- Type: interface{}
func PutDnsConfig(value ServiceTaskSpecContainerSpecDnsConfig)
func PutHealthcheck(value ServiceTaskSpecContainerSpecHealthcheck)
func PutHosts(value interface{})
- Type: interface{}
func PutLabels(value interface{})
- Type: interface{}
func PutMounts(value interface{})
- Type: interface{}
func PutPrivileges(value ServiceTaskSpecContainerSpecPrivileges)
func PutSecrets(value interface{})
- Type: interface{}
func ResetArgs()
func ResetCommand()
func ResetConfigs()
func ResetDir()
func ResetDnsConfig()
func ResetEnv()
func ResetGroups()
func ResetHealthcheck()
func ResetHostname()
func ResetHosts()
func ResetIsolation()
func ResetLabels()
func ResetMounts()
func ResetPrivileges()
func ResetReadOnly()
func ResetSecrets()
func ResetStopGracePeriod()
func ResetStopSignal()
func ResetSysctl()
func ResetUser()
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. |
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.
func Fqn() *string
- Type: *string
func Configs() ServiceTaskSpecContainerSpecConfigsList
func DnsConfig() ServiceTaskSpecContainerSpecDnsConfigOutputReference
func Healthcheck() ServiceTaskSpecContainerSpecHealthcheckOutputReference
func Hosts() ServiceTaskSpecContainerSpecHostsList
func Labels() ServiceTaskSpecContainerSpecLabelsList
func Mounts() ServiceTaskSpecContainerSpecMountsList
func Privileges() ServiceTaskSpecContainerSpecPrivilegesOutputReference
func Secrets() ServiceTaskSpecContainerSpecSecretsList
func ArgsInput() *[]*string
- Type: *[]*string
func CommandInput() *[]*string
- Type: *[]*string
func ConfigsInput() interface{}
- Type: interface{}
func DirInput() *string
- Type: *string
func DnsConfigInput() ServiceTaskSpecContainerSpecDnsConfig
func EnvInput() *map[string]*string
- Type: *map[string]*string
func GroupsInput() *[]*string
- Type: *[]*string
func HealthcheckInput() ServiceTaskSpecContainerSpecHealthcheck
func HostnameInput() *string
- Type: *string
func HostsInput() interface{}
- Type: interface{}
func ImageInput() *string
- Type: *string
func IsolationInput() *string
- Type: *string
func LabelsInput() interface{}
- Type: interface{}
func MountsInput() interface{}
- Type: interface{}
func PrivilegesInput() ServiceTaskSpecContainerSpecPrivileges
func ReadOnlyInput() interface{}
- Type: interface{}
func SecretsInput() interface{}
- Type: interface{}
func StopGracePeriodInput() *string
- Type: *string
func StopSignalInput() *string
- Type: *string
func SysctlInput() *map[string]*string
- Type: *map[string]*string
func UserInput() *string
- Type: *string
func Args() *[]*string
- Type: *[]*string
func Command() *[]*string
- Type: *[]*string
func Dir() *string
- Type: *string
func Env() *map[string]*string
- Type: *map[string]*string
func Groups() *[]*string
- Type: *[]*string
func Hostname() *string
- Type: *string
func Image() *string
- Type: *string
func Isolation() *string
- Type: *string
func ReadOnly() interface{}
- Type: interface{}
func StopGracePeriod() *string
- Type: *string
func StopSignal() *string
- Type: *string
func Sysctl() *map[string]*string
- Type: *map[string]*string
func User() *string
- Type: *string
func InternalValue() ServiceTaskSpecContainerSpec
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetFile()
func ResetRegistry()
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. |
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.
func Fqn() *string
- Type: *string
func FileInput() *string
- Type: *string
func RegistryInput() *string
- Type: *string
func File() *string
- Type: *string
func Registry() *string
- Type: *string
func InternalValue() ServiceTaskSpecContainerSpecPrivilegesCredentialSpec
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutCredentialSpec(value ServiceTaskSpecContainerSpecPrivilegesCredentialSpec)
func PutSeLinuxContext(value ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext)
func ResetCredentialSpec()
func ResetSeLinuxContext()
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. |
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.
func Fqn() *string
- Type: *string
func CredentialSpec() ServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference
func SeLinuxContext() ServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference
func CredentialSpecInput() ServiceTaskSpecContainerSpecPrivilegesCredentialSpec
func SeLinuxContextInput() ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext
func InternalValue() ServiceTaskSpecContainerSpecPrivileges
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetDisable()
func ResetLevel()
func ResetRole()
func ResetType()
func ResetUser()
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. |
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.
func Fqn() *string
- Type: *string
func DisableInput() interface{}
- Type: interface{}
func LevelInput() *string
- Type: *string
func RoleInput() *string
- Type: *string
func TypeInput() *string
- Type: *string
func UserInput() *string
- Type: *string
func Disable() interface{}
- Type: interface{}
func Level() *string
- Type: *string
func Role() *string
- Type: *string
func Type() *string
- Type: *string
func User() *string
- Type: *string
func InternalValue() ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceTaskSpecContainerSpecSecretsOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetFileGid()
func ResetFileMode()
func ResetFileUid()
func ResetSecretName()
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. |
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.
func Fqn() *string
- Type: *string
func FileGidInput() *string
- Type: *string
func FileModeInput() *f64
- Type: *f64
func FileNameInput() *string
- Type: *string
func FileUidInput() *string
- Type: *string
func SecretIdInput() *string
- Type: *string
func SecretNameInput() *string
- Type: *string
func FileGid() *string
- Type: *string
func FileMode() *f64
- Type: *f64
func FileName() *string
- Type: *string
func FileUid() *string
- Type: *string
func SecretId() *string
- Type: *string
func SecretName() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetOptions()
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. |
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.
func Fqn() *string
- Type: *string
func NameInput() *string
- Type: *string
func OptionsInput() *map[string]*string
- Type: *map[string]*string
func Name() *string
- Type: *string
func Options() *map[string]*string
- Type: *map[string]*string
func InternalValue() ServiceTaskSpecLogDriver
- Type: ServiceTaskSpecLogDriver
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceTaskSpecNetworksAdvancedOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetAliases()
func ResetDriverOpts()
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. |
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.
func Fqn() *string
- Type: *string
func AliasesInput() *[]*string
- Type: *[]*string
func DriverOptsInput() *[]*string
- Type: *[]*string
func NameInput() *string
- Type: *string
func Aliases() *[]*string
- Type: *[]*string
func DriverOpts() *[]*string
- Type: *[]*string
func Name() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutContainerSpec(value ServiceTaskSpecContainerSpec)
func PutLogDriver(value ServiceTaskSpecLogDriver)
- Type: ServiceTaskSpecLogDriver
func PutNetworksAdvanced(value interface{})
- Type: interface{}
func PutPlacement(value ServiceTaskSpecPlacement)
- Type: ServiceTaskSpecPlacement
func PutResources(value ServiceTaskSpecResources)
- Type: ServiceTaskSpecResources
func PutRestartPolicy(value ServiceTaskSpecRestartPolicy)
func ResetForceUpdate()
func ResetLogDriver()
func ResetNetworksAdvanced()
func ResetPlacement()
func ResetResources()
func ResetRestartPolicy()
func ResetRuntime()
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.
func Fqn() *string
- Type: *string
func ContainerSpec() ServiceTaskSpecContainerSpecOutputReference
func LogDriver() ServiceTaskSpecLogDriverOutputReference
func NetworksAdvanced() ServiceTaskSpecNetworksAdvancedList
func Placement() ServiceTaskSpecPlacementOutputReference
func Resources() ServiceTaskSpecResourcesOutputReference
func RestartPolicy() ServiceTaskSpecRestartPolicyOutputReference
func ContainerSpecInput() ServiceTaskSpecContainerSpec
func ForceUpdateInput() *f64
- Type: *f64
func LogDriverInput() ServiceTaskSpecLogDriver
- Type: ServiceTaskSpecLogDriver
func NetworksAdvancedInput() interface{}
- Type: interface{}
func PlacementInput() ServiceTaskSpecPlacement
- Type: ServiceTaskSpecPlacement
func ResourcesInput() ServiceTaskSpecResources
- Type: ServiceTaskSpecResources
func RestartPolicyInput() ServiceTaskSpecRestartPolicy
func RuntimeInput() *string
- Type: *string
func ForceUpdate() *f64
- Type: *f64
func Runtime() *string
- Type: *string
func InternalValue() ServiceTaskSpec
- Type: ServiceTaskSpec
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutPlatforms(value interface{})
- Type: interface{}
func ResetConstraints()
func ResetMaxReplicas()
func ResetPlatforms()
func ResetPrefs()
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. |
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.
func Fqn() *string
- Type: *string
func Platforms() ServiceTaskSpecPlacementPlatformsList
func ConstraintsInput() *[]*string
- Type: *[]*string
func MaxReplicasInput() *f64
- Type: *f64
func PlatformsInput() interface{}
- Type: interface{}
func PrefsInput() *[]*string
- Type: *[]*string
func Constraints() *[]*string
- Type: *[]*string
func MaxReplicas() *f64
- Type: *f64
func Prefs() *[]*string
- Type: *[]*string
func InternalValue() ServiceTaskSpecPlacement
- Type: ServiceTaskSpecPlacement
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
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.
- Type: *string
func ComputeFqn() *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func Get(index *f64) ServiceTaskSpecPlacementPlatformsOutputReference
- Type: *f64
the index of the item to return.
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. |
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.
func Fqn() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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). |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
- Type: *f64
the index of this item in the list.
- Type: *bool
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
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. |
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.
func Fqn() *string
- Type: *string
func ArchitectureInput() *string
- Type: *string
func OsInput() *string
- Type: *string
func Architecture() *string
- Type: *string
func Os() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetMemoryBytes()
func ResetNanoCpus()
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. |
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.
func Fqn() *string
- Type: *string
func MemoryBytesInput() *f64
- Type: *f64
func NanoCpusInput() *f64
- Type: *f64
func MemoryBytes() *f64
- Type: *f64
func NanoCpus() *f64
- Type: *f64
func InternalValue() ServiceTaskSpecResourcesLimits
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutLimits(value ServiceTaskSpecResourcesLimits)
func PutReservation(value ServiceTaskSpecResourcesReservation)
func ResetLimits()
func ResetReservation()
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. |
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.
func Fqn() *string
- Type: *string
func Limits() ServiceTaskSpecResourcesLimitsOutputReference
func Reservation() ServiceTaskSpecResourcesReservationOutputReference
func LimitsInput() ServiceTaskSpecResourcesLimits
func ReservationInput() ServiceTaskSpecResourcesReservation
func InternalValue() ServiceTaskSpecResources
- Type: ServiceTaskSpecResources
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetDiscreteResourcesSpec()
func ResetNamedResourcesSpec()
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. |
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.
func Fqn() *string
- Type: *string
func DiscreteResourcesSpecInput() *[]*string
- Type: *[]*string
func NamedResourcesSpecInput() *[]*string
- Type: *[]*string
func DiscreteResourcesSpec() *[]*string
- Type: *[]*string
func NamedResourcesSpec() *[]*string
- Type: *[]*string
func InternalValue() ServiceTaskSpecResourcesReservationGenericResources
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func PutGenericResources(value ServiceTaskSpecResourcesReservationGenericResources)
func ResetGenericResources()
func ResetMemoryBytes()
func ResetNanoCpus()
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. |
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.
func Fqn() *string
- Type: *string
func GenericResources() ServiceTaskSpecResourcesReservationGenericResourcesOutputReference
func GenericResourcesInput() ServiceTaskSpecResourcesReservationGenericResources
func MemoryBytesInput() *f64
- Type: *f64
func NanoCpusInput() *f64
- Type: *f64
func MemoryBytes() *f64
- Type: *f64
func NanoCpus() *f64
- Type: *f64
func InternalValue() ServiceTaskSpecResourcesReservation
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetCondition()
func ResetDelay()
func ResetMaxAttempts()
func ResetWindow()
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. |
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.
func Fqn() *string
- Type: *string
func ConditionInput() *string
- Type: *string
func DelayInput() *string
- Type: *string
func MaxAttemptsInput() *f64
- Type: *f64
func WindowInput() *string
- Type: *string
func Condition() *string
- Type: *string
func Delay() *string
- Type: *string
func MaxAttempts() *f64
- Type: *f64
func Window() *string
- Type: *string
func InternalValue() ServiceTaskSpecRestartPolicy
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. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
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. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetDelay()
func ResetFailureAction()
func ResetMaxFailureRatio()
func ResetMonitor()
func ResetOrder()
func ResetParallelism()
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. |
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.
func Fqn() *string
- Type: *string
func DelayInput() *string
- Type: *string
func FailureActionInput() *string
- Type: *string
func MaxFailureRatioInput() *string
- Type: *string
func MonitorInput() *string
- Type: *string
func OrderInput() *string
- Type: *string
func ParallelismInput() *f64
- Type: *f64
func Delay() *string
- Type: *string
func FailureAction() *string
- Type: *string
func MaxFailureRatio() *string
- Type: *string
func Monitor() *string
- Type: *string
func Order() *string
- Type: *string
func Parallelism() *f64
- Type: *f64
func InternalValue() ServiceUpdateConfig
- Type: ServiceUpdateConfig