Documentation ¶
Index ¶
- func GoogleComputeInstanceGroupManager_IsConstruct(x interface{}) *bool
- func GoogleComputeInstanceGroupManager_IsTerraformElement(x interface{}) *bool
- func GoogleComputeInstanceGroupManager_IsTerraformResource(x interface{}) *bool
- func GoogleComputeInstanceGroupManager_TfResourceType() *string
- func NewGoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference_Override(g GoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference_Override(g GoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference_Override(g GoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerNamedPortList_Override(g GoogleComputeInstanceGroupManagerNamedPortList, ...)
- func NewGoogleComputeInstanceGroupManagerNamedPortOutputReference_Override(g GoogleComputeInstanceGroupManagerNamedPortOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerStatefulDiskList_Override(g GoogleComputeInstanceGroupManagerStatefulDiskList, ...)
- func NewGoogleComputeInstanceGroupManagerStatefulDiskOutputReference_Override(g GoogleComputeInstanceGroupManagerStatefulDiskOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerStatefulExternalIpList_Override(g GoogleComputeInstanceGroupManagerStatefulExternalIpList, ...)
- func NewGoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference_Override(g GoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerStatefulInternalIpList_Override(g GoogleComputeInstanceGroupManagerStatefulInternalIpList, ...)
- func NewGoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference_Override(g GoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigList_Override(g GoogleComputeInstanceGroupManagerStatusAllInstancesConfigList, ...)
- func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference_Override(g GoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerStatusList_Override(g GoogleComputeInstanceGroupManagerStatusList, ...)
- func NewGoogleComputeInstanceGroupManagerStatusOutputReference_Override(g GoogleComputeInstanceGroupManagerStatusOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerStatusStatefulList_Override(g GoogleComputeInstanceGroupManagerStatusStatefulList, ...)
- func NewGoogleComputeInstanceGroupManagerStatusStatefulOutputReference_Override(g GoogleComputeInstanceGroupManagerStatusStatefulOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList_Override(g GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList, ...)
- func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference_Override(...)
- func NewGoogleComputeInstanceGroupManagerStatusVersionTargetList_Override(g GoogleComputeInstanceGroupManagerStatusVersionTargetList, ...)
- func NewGoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference_Override(g GoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerTimeoutsOutputReference_Override(g GoogleComputeInstanceGroupManagerTimeoutsOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerUpdatePolicyOutputReference_Override(g GoogleComputeInstanceGroupManagerUpdatePolicyOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerVersionList_Override(g GoogleComputeInstanceGroupManagerVersionList, ...)
- func NewGoogleComputeInstanceGroupManagerVersionOutputReference_Override(g GoogleComputeInstanceGroupManagerVersionOutputReference, ...)
- func NewGoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference_Override(g GoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference, ...)
- func NewGoogleComputeInstanceGroupManager_Override(g GoogleComputeInstanceGroupManager, scope constructs.Construct, id *string, ...)
- type GoogleComputeInstanceGroupManager
- type GoogleComputeInstanceGroupManagerAllInstancesConfig
- type GoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference
- type GoogleComputeInstanceGroupManagerAutoHealingPolicies
- type GoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference
- type GoogleComputeInstanceGroupManagerConfig
- type GoogleComputeInstanceGroupManagerInstanceLifecyclePolicy
- type GoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference
- type GoogleComputeInstanceGroupManagerNamedPort
- type GoogleComputeInstanceGroupManagerNamedPortList
- type GoogleComputeInstanceGroupManagerNamedPortOutputReference
- type GoogleComputeInstanceGroupManagerStatefulDisk
- type GoogleComputeInstanceGroupManagerStatefulDiskList
- type GoogleComputeInstanceGroupManagerStatefulDiskOutputReference
- type GoogleComputeInstanceGroupManagerStatefulExternalIp
- type GoogleComputeInstanceGroupManagerStatefulExternalIpList
- type GoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference
- type GoogleComputeInstanceGroupManagerStatefulInternalIp
- type GoogleComputeInstanceGroupManagerStatefulInternalIpList
- type GoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference
- type GoogleComputeInstanceGroupManagerStatus
- type GoogleComputeInstanceGroupManagerStatusAllInstancesConfig
- type GoogleComputeInstanceGroupManagerStatusAllInstancesConfigList
- type GoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference
- type GoogleComputeInstanceGroupManagerStatusList
- type GoogleComputeInstanceGroupManagerStatusOutputReference
- type GoogleComputeInstanceGroupManagerStatusStateful
- type GoogleComputeInstanceGroupManagerStatusStatefulList
- type GoogleComputeInstanceGroupManagerStatusStatefulOutputReference
- type GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigs
- type GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList
- type GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference
- type GoogleComputeInstanceGroupManagerStatusVersionTarget
- type GoogleComputeInstanceGroupManagerStatusVersionTargetList
- type GoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference
- type GoogleComputeInstanceGroupManagerTimeouts
- type GoogleComputeInstanceGroupManagerTimeoutsOutputReference
- type GoogleComputeInstanceGroupManagerUpdatePolicy
- type GoogleComputeInstanceGroupManagerUpdatePolicyOutputReference
- type GoogleComputeInstanceGroupManagerVersion
- type GoogleComputeInstanceGroupManagerVersionList
- type GoogleComputeInstanceGroupManagerVersionOutputReference
- type GoogleComputeInstanceGroupManagerVersionTargetSize
- type GoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GoogleComputeInstanceGroupManager_IsConstruct ¶
func GoogleComputeInstanceGroupManager_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Use this method instead of `instanceof` to properly detect `Construct` instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the `constructs` library on disk are seen as independent, completely different libraries. As a consequence, the class `Construct` in each copy of the `constructs` library is seen as a different class, and an instance of one class will not test as `instanceof` the other class. `npm install` will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the `constructs` library can be accidentally installed, and `instanceof` will behave unpredictably. It is safest to avoid using `instanceof`, and using this type-testing method instead.
Returns: true if `x` is an object created from a class which extends `Construct`.
func GoogleComputeInstanceGroupManager_IsTerraformElement ¶
func GoogleComputeInstanceGroupManager_IsTerraformElement(x interface{}) *bool
Experimental.
func GoogleComputeInstanceGroupManager_IsTerraformResource ¶
func GoogleComputeInstanceGroupManager_IsTerraformResource(x interface{}) *bool
Experimental.
func GoogleComputeInstanceGroupManager_TfResourceType ¶
func GoogleComputeInstanceGroupManager_TfResourceType() *string
func NewGoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference_Override(g GoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewGoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference_Override(g GoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewGoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference_Override(g GoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewGoogleComputeInstanceGroupManagerNamedPortList_Override ¶
func NewGoogleComputeInstanceGroupManagerNamedPortList_Override(g GoogleComputeInstanceGroupManagerNamedPortList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerNamedPortOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerNamedPortOutputReference_Override(g GoogleComputeInstanceGroupManagerNamedPortOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerStatefulDiskList_Override ¶
func NewGoogleComputeInstanceGroupManagerStatefulDiskList_Override(g GoogleComputeInstanceGroupManagerStatefulDiskList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerStatefulDiskOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerStatefulDiskOutputReference_Override(g GoogleComputeInstanceGroupManagerStatefulDiskOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerStatefulExternalIpList_Override ¶
func NewGoogleComputeInstanceGroupManagerStatefulExternalIpList_Override(g GoogleComputeInstanceGroupManagerStatefulExternalIpList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference_Override(g GoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerStatefulInternalIpList_Override ¶
func NewGoogleComputeInstanceGroupManagerStatefulInternalIpList_Override(g GoogleComputeInstanceGroupManagerStatefulInternalIpList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference_Override(g GoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigList_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigList_Override(g GoogleComputeInstanceGroupManagerStatusAllInstancesConfigList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference_Override(g GoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusList_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusList_Override(g GoogleComputeInstanceGroupManagerStatusList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusOutputReference_Override(g GoogleComputeInstanceGroupManagerStatusOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusStatefulList_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusStatefulList_Override(g GoogleComputeInstanceGroupManagerStatusStatefulList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusStatefulOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusStatefulOutputReference_Override(g GoogleComputeInstanceGroupManagerStatusStatefulOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList_Override(g GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference_Override(g GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusVersionTargetList_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusVersionTargetList_Override(g GoogleComputeInstanceGroupManagerStatusVersionTargetList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference_Override(g GoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerTimeoutsOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerTimeoutsOutputReference_Override(g GoogleComputeInstanceGroupManagerTimeoutsOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewGoogleComputeInstanceGroupManagerUpdatePolicyOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerUpdatePolicyOutputReference_Override(g GoogleComputeInstanceGroupManagerUpdatePolicyOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewGoogleComputeInstanceGroupManagerVersionList_Override ¶
func NewGoogleComputeInstanceGroupManagerVersionList_Override(g GoogleComputeInstanceGroupManagerVersionList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewGoogleComputeInstanceGroupManagerVersionOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerVersionOutputReference_Override(g GoogleComputeInstanceGroupManagerVersionOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewGoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference_Override ¶
func NewGoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference_Override(g GoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewGoogleComputeInstanceGroupManager_Override ¶
func NewGoogleComputeInstanceGroupManager_Override(g GoogleComputeInstanceGroupManager, scope constructs.Construct, id *string, config *GoogleComputeInstanceGroupManagerConfig)
Create a new {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager google_compute_instance_group_manager} Resource.
Types ¶
type GoogleComputeInstanceGroupManager ¶
type GoogleComputeInstanceGroupManager interface { cdktf.TerraformResource AllInstancesConfig() GoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference AllInstancesConfigInput() *GoogleComputeInstanceGroupManagerAllInstancesConfig AutoHealingPolicies() GoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference AutoHealingPoliciesInput() *GoogleComputeInstanceGroupManagerAutoHealingPolicies BaseInstanceName() *string SetBaseInstanceName(val *string) BaseInstanceNameInput() *string // Experimental. CdktfStack() cdktf.TerraformStack // Experimental. Connection() interface{} // Experimental. SetConnection(val interface{}) // Experimental. ConstructNodeMetadata() *map[string]interface{} // Experimental. Count() interface{} // Experimental. SetCount(val interface{}) // Experimental. DependsOn() *[]*string // Experimental. SetDependsOn(val *[]*string) Description() *string SetDescription(val *string) DescriptionInput() *string Fingerprint() *string // Experimental. ForEach() cdktf.ITerraformIterator // Experimental. SetForEach(val cdktf.ITerraformIterator) // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string Id() *string SetId(val *string) IdInput() *string InstanceGroup() *string InstanceLifecyclePolicy() GoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference InstanceLifecyclePolicyInput() *GoogleComputeInstanceGroupManagerInstanceLifecyclePolicy // Experimental. Lifecycle() *cdktf.TerraformResourceLifecycle // Experimental. SetLifecycle(val *cdktf.TerraformResourceLifecycle) ListManagedInstancesResults() *string SetListManagedInstancesResults(val *string) ListManagedInstancesResultsInput() *string Name() *string SetName(val *string) NamedPort() GoogleComputeInstanceGroupManagerNamedPortList NamedPortInput() interface{} NameInput() *string // The tree node. Node() constructs.Node Operation() *string Project() *string SetProject(val *string) ProjectInput() *string // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) // Experimental. Provisioners() *[]interface{} // Experimental. SetProvisioners(val *[]interface{}) // Experimental. RawOverrides() interface{} SelfLink() *string StatefulDisk() GoogleComputeInstanceGroupManagerStatefulDiskList StatefulDiskInput() interface{} StatefulExternalIp() GoogleComputeInstanceGroupManagerStatefulExternalIpList StatefulExternalIpInput() interface{} StatefulInternalIp() GoogleComputeInstanceGroupManagerStatefulInternalIpList StatefulInternalIpInput() interface{} Status() GoogleComputeInstanceGroupManagerStatusList TargetPools() *[]*string SetTargetPools(val *[]*string) TargetPoolsInput() *[]*string TargetSize() *float64 SetTargetSize(val *float64) TargetSizeInput() *float64 // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *string Timeouts() GoogleComputeInstanceGroupManagerTimeoutsOutputReference TimeoutsInput() interface{} UpdatePolicy() GoogleComputeInstanceGroupManagerUpdatePolicyOutputReference UpdatePolicyInput() *GoogleComputeInstanceGroupManagerUpdatePolicy Version() GoogleComputeInstanceGroupManagerVersionList VersionInput() interface{} WaitForInstances() interface{} SetWaitForInstances(val interface{}) WaitForInstancesInput() interface{} WaitForInstancesStatus() *string SetWaitForInstancesStatus(val *string) WaitForInstancesStatusInput() *string Zone() *string SetZone(val *string) ZoneInput() *string // Experimental. AddOverride(path *string, value interface{}) // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationForAttribute(terraformAttribute *string) cdktf.IResolvable // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) PutAllInstancesConfig(value *GoogleComputeInstanceGroupManagerAllInstancesConfig) PutAutoHealingPolicies(value *GoogleComputeInstanceGroupManagerAutoHealingPolicies) PutInstanceLifecyclePolicy(value *GoogleComputeInstanceGroupManagerInstanceLifecyclePolicy) PutNamedPort(value interface{}) PutStatefulDisk(value interface{}) PutStatefulExternalIp(value interface{}) PutStatefulInternalIp(value interface{}) PutTimeouts(value *GoogleComputeInstanceGroupManagerTimeouts) PutUpdatePolicy(value *GoogleComputeInstanceGroupManagerUpdatePolicy) PutVersion(value interface{}) ResetAllInstancesConfig() ResetAutoHealingPolicies() ResetDescription() ResetId() ResetInstanceLifecyclePolicy() ResetListManagedInstancesResults() ResetNamedPort() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetProject() ResetStatefulDisk() ResetStatefulExternalIp() ResetStatefulInternalIp() ResetTargetPools() ResetTargetSize() ResetTimeouts() ResetUpdatePolicy() ResetWaitForInstances() ResetWaitForInstancesStatus() ResetZone() SynthesizeAttributes() *map[string]interface{} // Experimental. ToMetadata() interface{} // Returns a string representation of this construct. ToString() *string // Adds this resource to the terraform JSON output. // Experimental. ToTerraform() interface{} }
Represents a {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager google_compute_instance_group_manager}.
func NewGoogleComputeInstanceGroupManager ¶
func NewGoogleComputeInstanceGroupManager(scope constructs.Construct, id *string, config *GoogleComputeInstanceGroupManagerConfig) GoogleComputeInstanceGroupManager
Create a new {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager google_compute_instance_group_manager} Resource.
type GoogleComputeInstanceGroupManagerAllInstancesConfig ¶
type GoogleComputeInstanceGroupManagerAllInstancesConfig struct { // The label key-value pairs that you want to patch onto the instance,. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#labels GoogleComputeInstanceGroupManager#labels} Labels *map[string]*string `field:"optional" json:"labels" yaml:"labels"` // The metadata key-value pairs that you want to patch onto the instance. // // For more information, see Project and instance metadata, // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#metadata GoogleComputeInstanceGroupManager#metadata} Metadata *map[string]*string `field:"optional" json:"metadata" yaml:"metadata"` }
type GoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference ¶
type GoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *GoogleComputeInstanceGroupManagerAllInstancesConfig SetInternalValue(val *GoogleComputeInstanceGroupManagerAllInstancesConfig) Labels() *map[string]*string SetLabels(val *map[string]*string) LabelsInput() *map[string]*string Metadata() *map[string]*string SetMetadata(val *map[string]*string) MetadataInput() *map[string]*string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetLabels() ResetMetadata() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference ¶
func NewGoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) GoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference
type GoogleComputeInstanceGroupManagerAutoHealingPolicies ¶
type GoogleComputeInstanceGroupManagerAutoHealingPolicies struct { // The health check resource that signals autohealing. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#health_check GoogleComputeInstanceGroupManager#health_check} HealthCheck *string `field:"required" json:"healthCheck" yaml:"healthCheck"` // The number of seconds that the managed instance group waits before it applies autohealing policies to new instances or recently recreated instances. // // Between 0 and 3600. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#initial_delay_sec GoogleComputeInstanceGroupManager#initial_delay_sec} InitialDelaySec *float64 `field:"required" json:"initialDelaySec" yaml:"initialDelaySec"` }
type GoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference ¶
type GoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string HealthCheck() *string SetHealthCheck(val *string) HealthCheckInput() *string InitialDelaySec() *float64 SetInitialDelaySec(val *float64) InitialDelaySecInput() *float64 InternalValue() *GoogleComputeInstanceGroupManagerAutoHealingPolicies SetInternalValue(val *GoogleComputeInstanceGroupManagerAutoHealingPolicies) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference ¶
func NewGoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) GoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference
type GoogleComputeInstanceGroupManagerConfig ¶
type GoogleComputeInstanceGroupManagerConfig struct { // Experimental. Connection interface{} `field:"optional" json:"connection" yaml:"connection"` // Experimental. Count interface{} `field:"optional" json:"count" yaml:"count"` // Experimental. DependsOn *[]cdktf.ITerraformDependable `field:"optional" json:"dependsOn" yaml:"dependsOn"` // Experimental. ForEach cdktf.ITerraformIterator `field:"optional" json:"forEach" yaml:"forEach"` // Experimental. Lifecycle *cdktf.TerraformResourceLifecycle `field:"optional" json:"lifecycle" yaml:"lifecycle"` // Experimental. Provider cdktf.TerraformProvider `field:"optional" json:"provider" yaml:"provider"` // Experimental. Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"` // The base instance name to use for instances in this group. // // The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#base_instance_name GoogleComputeInstanceGroupManager#base_instance_name} BaseInstanceName *string `field:"required" json:"baseInstanceName" yaml:"baseInstanceName"` // The name of the instance group manager. // // Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#name GoogleComputeInstanceGroupManager#name} Name *string `field:"required" json:"name" yaml:"name"` // version block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#version GoogleComputeInstanceGroupManager#version} Version interface{} `field:"required" json:"version" yaml:"version"` // all_instances_config block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#all_instances_config GoogleComputeInstanceGroupManager#all_instances_config} AllInstancesConfig *GoogleComputeInstanceGroupManagerAllInstancesConfig `field:"optional" json:"allInstancesConfig" yaml:"allInstancesConfig"` // auto_healing_policies block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#auto_healing_policies GoogleComputeInstanceGroupManager#auto_healing_policies} AutoHealingPolicies *GoogleComputeInstanceGroupManagerAutoHealingPolicies `field:"optional" json:"autoHealingPolicies" yaml:"autoHealingPolicies"` // An optional textual description of the instance group manager. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#description GoogleComputeInstanceGroupManager#description} Description *string `field:"optional" json:"description" yaml:"description"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#id GoogleComputeInstanceGroupManager#id}. // // Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. // If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. Id *string `field:"optional" json:"id" yaml:"id"` // instance_lifecycle_policy block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#instance_lifecycle_policy GoogleComputeInstanceGroupManager#instance_lifecycle_policy} InstanceLifecyclePolicy *GoogleComputeInstanceGroupManagerInstanceLifecyclePolicy `field:"optional" json:"instanceLifecyclePolicy" yaml:"instanceLifecyclePolicy"` // Pagination behavior of the listManagedInstances API method for this managed instance group. // // Valid values are: "PAGELESS", "PAGINATED". If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#list_managed_instances_results GoogleComputeInstanceGroupManager#list_managed_instances_results} ListManagedInstancesResults *string `field:"optional" json:"listManagedInstancesResults" yaml:"listManagedInstancesResults"` // named_port block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#named_port GoogleComputeInstanceGroupManager#named_port} NamedPort interface{} `field:"optional" json:"namedPort" yaml:"namedPort"` // The ID of the project in which the resource belongs. // // If it is not provided, the provider project is used. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#project GoogleComputeInstanceGroupManager#project} Project *string `field:"optional" json:"project" yaml:"project"` // stateful_disk block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#stateful_disk GoogleComputeInstanceGroupManager#stateful_disk} StatefulDisk interface{} `field:"optional" json:"statefulDisk" yaml:"statefulDisk"` // stateful_external_ip block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#stateful_external_ip GoogleComputeInstanceGroupManager#stateful_external_ip} StatefulExternalIp interface{} `field:"optional" json:"statefulExternalIp" yaml:"statefulExternalIp"` // stateful_internal_ip block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#stateful_internal_ip GoogleComputeInstanceGroupManager#stateful_internal_ip} StatefulInternalIp interface{} `field:"optional" json:"statefulInternalIp" yaml:"statefulInternalIp"` // The full URL of all target pools to which new instances in the group are added. // // Updating the target pools attribute does not affect existing instances. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#target_pools GoogleComputeInstanceGroupManager#target_pools} TargetPools *[]*string `field:"optional" json:"targetPools" yaml:"targetPools"` // The target number of running instances for this managed instance group. // // This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#target_size GoogleComputeInstanceGroupManager#target_size} TargetSize *float64 `field:"optional" json:"targetSize" yaml:"targetSize"` // timeouts block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#timeouts GoogleComputeInstanceGroupManager#timeouts} Timeouts *GoogleComputeInstanceGroupManagerTimeouts `field:"optional" json:"timeouts" yaml:"timeouts"` // update_policy block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#update_policy GoogleComputeInstanceGroupManager#update_policy} UpdatePolicy *GoogleComputeInstanceGroupManagerUpdatePolicy `field:"optional" json:"updatePolicy" yaml:"updatePolicy"` // Whether to wait for all instances to be created/updated before returning. // // Note that if this is set to true and the operation does not succeed, Terraform will continue trying until it times out. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#wait_for_instances GoogleComputeInstanceGroupManager#wait_for_instances} WaitForInstances interface{} `field:"optional" json:"waitForInstances" yaml:"waitForInstances"` // When used with wait_for_instances specifies the status to wait for. // // When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective and all instances configs to be effective as well as all instances to be stable before returning. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#wait_for_instances_status GoogleComputeInstanceGroupManager#wait_for_instances_status} WaitForInstancesStatus *string `field:"optional" json:"waitForInstancesStatus" yaml:"waitForInstancesStatus"` // The zone that instances in this group should be created in. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#zone GoogleComputeInstanceGroupManager#zone} Zone *string `field:"optional" json:"zone" yaml:"zone"` }
type GoogleComputeInstanceGroupManagerInstanceLifecyclePolicy ¶
type GoogleComputeInstanceGroupManagerInstanceLifecyclePolicy struct { // Specifies whether to apply the group's latest configuration when repairing a VM. // // Valid options are: YES, NO. If YES and you updated the group's instance template or per-instance configurations after the VM was created, then these changes are applied when VM is repaired. If NO (default), then updates are applied in accordance with the group's update policy type. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#force_update_on_repair GoogleComputeInstanceGroupManager#force_update_on_repair} ForceUpdateOnRepair *string `field:"optional" json:"forceUpdateOnRepair" yaml:"forceUpdateOnRepair"` }
type GoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference ¶
type GoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string ForceUpdateOnRepair() *string SetForceUpdateOnRepair(val *string) ForceUpdateOnRepairInput() *string // Experimental. Fqn() *string InternalValue() *GoogleComputeInstanceGroupManagerInstanceLifecyclePolicy SetInternalValue(val *GoogleComputeInstanceGroupManagerInstanceLifecyclePolicy) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetForceUpdateOnRepair() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference ¶
func NewGoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) GoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference
type GoogleComputeInstanceGroupManagerNamedPort ¶
type GoogleComputeInstanceGroupManagerNamedPort struct { // The name of the port. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#name GoogleComputeInstanceGroupManager#name} Name *string `field:"required" json:"name" yaml:"name"` // The port number. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#port GoogleComputeInstanceGroupManager#port} Port *float64 `field:"required" json:"port" yaml:"port"` }
type GoogleComputeInstanceGroupManagerNamedPortList ¶
type GoogleComputeInstanceGroupManagerNamedPortList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerNamedPortOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerNamedPortList ¶
func NewGoogleComputeInstanceGroupManagerNamedPortList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerNamedPortList
type GoogleComputeInstanceGroupManagerNamedPortOutputReference ¶
type GoogleComputeInstanceGroupManagerNamedPortOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) Name() *string SetName(val *string) NameInput() *string Port() *float64 SetPort(val *float64) PortInput() *float64 // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerNamedPortOutputReference ¶
func NewGoogleComputeInstanceGroupManagerNamedPortOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerNamedPortOutputReference
type GoogleComputeInstanceGroupManagerStatefulDisk ¶
type GoogleComputeInstanceGroupManagerStatefulDisk struct { // The device name of the disk to be attached. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#device_name GoogleComputeInstanceGroupManager#device_name} DeviceName *string `field:"required" json:"deviceName" yaml:"deviceName"` // A value that prescribes what should happen to the stateful disk when the VM instance is deleted. // // The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the disk when the VM is deleted, but do not delete the disk. ON_PERMANENT_INSTANCE_DELETION will delete the stateful disk when the VM is permanently deleted from the instance group. The default is NEVER. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#delete_rule GoogleComputeInstanceGroupManager#delete_rule} DeleteRule *string `field:"optional" json:"deleteRule" yaml:"deleteRule"` }
type GoogleComputeInstanceGroupManagerStatefulDiskList ¶
type GoogleComputeInstanceGroupManagerStatefulDiskList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerStatefulDiskOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatefulDiskList ¶
func NewGoogleComputeInstanceGroupManagerStatefulDiskList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerStatefulDiskList
type GoogleComputeInstanceGroupManagerStatefulDiskOutputReference ¶
type GoogleComputeInstanceGroupManagerStatefulDiskOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string DeleteRule() *string SetDeleteRule(val *string) DeleteRuleInput() *string DeviceName() *string SetDeviceName(val *string) DeviceNameInput() *string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetDeleteRule() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatefulDiskOutputReference ¶
func NewGoogleComputeInstanceGroupManagerStatefulDiskOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerStatefulDiskOutputReference
type GoogleComputeInstanceGroupManagerStatefulExternalIp ¶
type GoogleComputeInstanceGroupManagerStatefulExternalIp struct { // A value that prescribes what should happen to an associated static Address resource when a VM instance is permanently deleted. // // The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the IP when the VM is deleted, but do not delete the address resource. ON_PERMANENT_INSTANCE_DELETION will delete the stateful address when the VM is permanently deleted from the instance group. The default is NEVER. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#delete_rule GoogleComputeInstanceGroupManager#delete_rule} DeleteRule *string `field:"optional" json:"deleteRule" yaml:"deleteRule"` // The network interface name. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#interface_name GoogleComputeInstanceGroupManager#interface_name} InterfaceName *string `field:"optional" json:"interfaceName" yaml:"interfaceName"` }
type GoogleComputeInstanceGroupManagerStatefulExternalIpList ¶
type GoogleComputeInstanceGroupManagerStatefulExternalIpList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatefulExternalIpList ¶
func NewGoogleComputeInstanceGroupManagerStatefulExternalIpList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerStatefulExternalIpList
type GoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference ¶
type GoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string DeleteRule() *string SetDeleteRule(val *string) DeleteRuleInput() *string // Experimental. Fqn() *string InterfaceName() *string SetInterfaceName(val *string) InterfaceNameInput() *string InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetDeleteRule() ResetInterfaceName() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference ¶
func NewGoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference
type GoogleComputeInstanceGroupManagerStatefulInternalIp ¶
type GoogleComputeInstanceGroupManagerStatefulInternalIp struct { // A value that prescribes what should happen to an associated static Address resource when a VM instance is permanently deleted. // // The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the IP when the VM is deleted, but do not delete the address resource. ON_PERMANENT_INSTANCE_DELETION will delete the stateful address when the VM is permanently deleted from the instance group. The default is NEVER. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#delete_rule GoogleComputeInstanceGroupManager#delete_rule} DeleteRule *string `field:"optional" json:"deleteRule" yaml:"deleteRule"` // The network interface name. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#interface_name GoogleComputeInstanceGroupManager#interface_name} InterfaceName *string `field:"optional" json:"interfaceName" yaml:"interfaceName"` }
type GoogleComputeInstanceGroupManagerStatefulInternalIpList ¶
type GoogleComputeInstanceGroupManagerStatefulInternalIpList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatefulInternalIpList ¶
func NewGoogleComputeInstanceGroupManagerStatefulInternalIpList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerStatefulInternalIpList
type GoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference ¶
type GoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string DeleteRule() *string SetDeleteRule(val *string) DeleteRuleInput() *string // Experimental. Fqn() *string InterfaceName() *string SetInterfaceName(val *string) InterfaceNameInput() *string InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetDeleteRule() ResetInterfaceName() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference ¶
func NewGoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference
type GoogleComputeInstanceGroupManagerStatus ¶
type GoogleComputeInstanceGroupManagerStatus struct { }
type GoogleComputeInstanceGroupManagerStatusAllInstancesConfig ¶
type GoogleComputeInstanceGroupManagerStatusAllInstancesConfig struct { }
type GoogleComputeInstanceGroupManagerStatusAllInstancesConfigList ¶
type GoogleComputeInstanceGroupManagerStatusAllInstancesConfigList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigList ¶
func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerStatusAllInstancesConfigList
type GoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference ¶
type GoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string Effective() cdktf.IResolvable // Experimental. Fqn() *string InternalValue() *GoogleComputeInstanceGroupManagerStatusAllInstancesConfig SetInternalValue(val *GoogleComputeInstanceGroupManagerStatusAllInstancesConfig) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference ¶
func NewGoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference
type GoogleComputeInstanceGroupManagerStatusList ¶
type GoogleComputeInstanceGroupManagerStatusList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerStatusOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusList ¶
func NewGoogleComputeInstanceGroupManagerStatusList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerStatusList
type GoogleComputeInstanceGroupManagerStatusOutputReference ¶
type GoogleComputeInstanceGroupManagerStatusOutputReference interface { cdktf.ComplexObject AllInstancesConfig() GoogleComputeInstanceGroupManagerStatusAllInstancesConfigList // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *GoogleComputeInstanceGroupManagerStatus SetInternalValue(val *GoogleComputeInstanceGroupManagerStatus) IsStable() cdktf.IResolvable Stateful() GoogleComputeInstanceGroupManagerStatusStatefulList // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) VersionTarget() GoogleComputeInstanceGroupManagerStatusVersionTargetList // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusOutputReference ¶
func NewGoogleComputeInstanceGroupManagerStatusOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerStatusOutputReference
type GoogleComputeInstanceGroupManagerStatusStateful ¶
type GoogleComputeInstanceGroupManagerStatusStateful struct { }
type GoogleComputeInstanceGroupManagerStatusStatefulList ¶
type GoogleComputeInstanceGroupManagerStatusStatefulList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerStatusStatefulOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusStatefulList ¶
func NewGoogleComputeInstanceGroupManagerStatusStatefulList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerStatusStatefulList
type GoogleComputeInstanceGroupManagerStatusStatefulOutputReference ¶
type GoogleComputeInstanceGroupManagerStatusStatefulOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string HasStatefulConfig() cdktf.IResolvable InternalValue() *GoogleComputeInstanceGroupManagerStatusStateful SetInternalValue(val *GoogleComputeInstanceGroupManagerStatusStateful) PerInstanceConfigs() GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusStatefulOutputReference ¶
func NewGoogleComputeInstanceGroupManagerStatusStatefulOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerStatusStatefulOutputReference
type GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigs ¶
type GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigs struct { }
type GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList ¶
type GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList ¶
func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList
type GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference ¶
type GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference interface { cdktf.ComplexObject AllEffective() cdktf.IResolvable // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigs SetInternalValue(val *GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigs) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference ¶
func NewGoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference
type GoogleComputeInstanceGroupManagerStatusVersionTarget ¶
type GoogleComputeInstanceGroupManagerStatusVersionTarget struct { }
type GoogleComputeInstanceGroupManagerStatusVersionTargetList ¶
type GoogleComputeInstanceGroupManagerStatusVersionTargetList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusVersionTargetList ¶
func NewGoogleComputeInstanceGroupManagerStatusVersionTargetList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerStatusVersionTargetList
type GoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference ¶
type GoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *GoogleComputeInstanceGroupManagerStatusVersionTarget SetInternalValue(val *GoogleComputeInstanceGroupManagerStatusVersionTarget) IsReached() cdktf.IResolvable // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference ¶
func NewGoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference
type GoogleComputeInstanceGroupManagerTimeouts ¶
type GoogleComputeInstanceGroupManagerTimeouts struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#create GoogleComputeInstanceGroupManager#create}. Create *string `field:"optional" json:"create" yaml:"create"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#delete GoogleComputeInstanceGroupManager#delete}. Delete *string `field:"optional" json:"delete" yaml:"delete"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#update GoogleComputeInstanceGroupManager#update}. Update *string `field:"optional" json:"update" yaml:"update"` }
type GoogleComputeInstanceGroupManagerTimeoutsOutputReference ¶
type GoogleComputeInstanceGroupManagerTimeoutsOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Create() *string SetCreate(val *string) CreateInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string Delete() *string SetDelete(val *string) DeleteInput() *string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) Update() *string SetUpdate(val *string) UpdateInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetCreate() ResetDelete() ResetUpdate() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerTimeoutsOutputReference ¶
func NewGoogleComputeInstanceGroupManagerTimeoutsOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) GoogleComputeInstanceGroupManagerTimeoutsOutputReference
type GoogleComputeInstanceGroupManagerUpdatePolicy ¶
type GoogleComputeInstanceGroupManagerUpdatePolicy struct { // Minimal action to be taken on an instance. // // You can specify either REFRESH to update without stopping instances, RESTART to restart existing instances or REPLACE to delete and create new instances from the target template. If you specify a REFRESH, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#minimal_action GoogleComputeInstanceGroupManager#minimal_action} MinimalAction *string `field:"required" json:"minimalAction" yaml:"minimalAction"` // The type of update process. // // You can specify either PROACTIVE so that the instance group manager proactively executes actions in order to bring instances to their target versions or OPPORTUNISTIC so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls). // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#type GoogleComputeInstanceGroupManager#type} Type *string `field:"required" json:"type" yaml:"type"` // The maximum number of instances that can be created above the specified targetSize during the update process. // // Conflicts with max_surge_percent. If neither is set, defaults to 1 // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#max_surge_fixed GoogleComputeInstanceGroupManager#max_surge_fixed} MaxSurgeFixed *float64 `field:"optional" json:"maxSurgeFixed" yaml:"maxSurgeFixed"` // The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. // // Conflicts with max_surge_fixed. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#max_surge_percent GoogleComputeInstanceGroupManager#max_surge_percent} MaxSurgePercent *float64 `field:"optional" json:"maxSurgePercent" yaml:"maxSurgePercent"` // // Conflicts with max_unavailable_percent. If neither is set, defaults to 1. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#max_unavailable_fixed GoogleComputeInstanceGroupManager#max_unavailable_fixed} MaxUnavailableFixed *float64 `field:"optional" json:"maxUnavailableFixed" yaml:"maxUnavailableFixed"` // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#max_unavailable_percent GoogleComputeInstanceGroupManager#max_unavailable_percent} MaxUnavailablePercent *float64 `field:"optional" json:"maxUnavailablePercent" yaml:"maxUnavailablePercent"` // Minimum number of seconds to wait for after a newly created instance becomes available. // // This value must be from range [0, 3600]. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#min_ready_sec GoogleComputeInstanceGroupManager#min_ready_sec} MinReadySec *float64 `field:"optional" json:"minReadySec" yaml:"minReadySec"` // Most disruptive action that is allowed to be taken on an instance. // // You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#most_disruptive_allowed_action GoogleComputeInstanceGroupManager#most_disruptive_allowed_action} MostDisruptiveAllowedAction *string `field:"optional" json:"mostDisruptiveAllowedAction" yaml:"mostDisruptiveAllowedAction"` // The instance replacement method for managed instance groups. // // Valid values are: "RECREATE", "SUBSTITUTE". If SUBSTITUTE (default), the group replaces VM instances with new instances that have randomly generated names. If RECREATE, instance names are preserved. You must also set max_unavailable_fixed or max_unavailable_percent to be greater than 0. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#replacement_method GoogleComputeInstanceGroupManager#replacement_method} ReplacementMethod *string `field:"optional" json:"replacementMethod" yaml:"replacementMethod"` }
type GoogleComputeInstanceGroupManagerUpdatePolicyOutputReference ¶
type GoogleComputeInstanceGroupManagerUpdatePolicyOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *GoogleComputeInstanceGroupManagerUpdatePolicy SetInternalValue(val *GoogleComputeInstanceGroupManagerUpdatePolicy) MaxSurgeFixed() *float64 SetMaxSurgeFixed(val *float64) MaxSurgeFixedInput() *float64 MaxSurgePercent() *float64 SetMaxSurgePercent(val *float64) MaxSurgePercentInput() *float64 MinimalAction() *string SetMinimalAction(val *string) MinimalActionInput() *string MinReadySec() *float64 SetMinReadySec(val *float64) MinReadySecInput() *float64 MostDisruptiveAllowedAction() *string SetMostDisruptiveAllowedAction(val *string) MostDisruptiveAllowedActionInput() *string ReplacementMethod() *string SetReplacementMethod(val *string) ReplacementMethodInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) Type() *string SetType(val *string) TypeInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetMaxSurgeFixed() ResetMaxSurgePercent() ResetMinReadySec() ResetMostDisruptiveAllowedAction() ResetReplacementMethod() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerUpdatePolicyOutputReference ¶
func NewGoogleComputeInstanceGroupManagerUpdatePolicyOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) GoogleComputeInstanceGroupManagerUpdatePolicyOutputReference
type GoogleComputeInstanceGroupManagerVersion ¶
type GoogleComputeInstanceGroupManagerVersion struct { // The full URL to an instance template from which all new instances of this version will be created. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#instance_template GoogleComputeInstanceGroupManager#instance_template} InstanceTemplate *string `field:"required" json:"instanceTemplate" yaml:"instanceTemplate"` // Version name. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#name GoogleComputeInstanceGroupManager#name} Name *string `field:"optional" json:"name" yaml:"name"` // target_size block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#target_size GoogleComputeInstanceGroupManager#target_size} TargetSize *GoogleComputeInstanceGroupManagerVersionTargetSize `field:"optional" json:"targetSize" yaml:"targetSize"` }
type GoogleComputeInstanceGroupManagerVersionList ¶
type GoogleComputeInstanceGroupManagerVersionList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) GoogleComputeInstanceGroupManagerVersionOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerVersionList ¶
func NewGoogleComputeInstanceGroupManagerVersionList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) GoogleComputeInstanceGroupManagerVersionList
type GoogleComputeInstanceGroupManagerVersionOutputReference ¶
type GoogleComputeInstanceGroupManagerVersionOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InstanceTemplate() *string SetInstanceTemplate(val *string) InstanceTemplateInput() *string InternalValue() interface{} SetInternalValue(val interface{}) Name() *string SetName(val *string) NameInput() *string TargetSize() GoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference TargetSizeInput() *GoogleComputeInstanceGroupManagerVersionTargetSize // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutTargetSize(value *GoogleComputeInstanceGroupManagerVersionTargetSize) ResetName() ResetTargetSize() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerVersionOutputReference ¶
func NewGoogleComputeInstanceGroupManagerVersionOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) GoogleComputeInstanceGroupManagerVersionOutputReference
type GoogleComputeInstanceGroupManagerVersionTargetSize ¶
type GoogleComputeInstanceGroupManagerVersionTargetSize struct { // The number of instances which are managed for this version. Conflicts with percent. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#fixed GoogleComputeInstanceGroupManager#fixed} Fixed *float64 `field:"optional" json:"fixed" yaml:"fixed"` // The number of instances (calculated as percentage) which are managed for this version. // // Conflicts with fixed. Note that when using percent, rounding will be in favor of explicitly set target_size values; a managed instance group with 2 instances and 2 versions, one of which has a target_size.percent of 60 will create 2 instances of that version. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google-beta/4.79.0/docs/resources/google_compute_instance_group_manager#percent GoogleComputeInstanceGroupManager#percent} Percent *float64 `field:"optional" json:"percent" yaml:"percent"` }
type GoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference ¶
type GoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string Fixed() *float64 SetFixed(val *float64) FixedInput() *float64 // Experimental. Fqn() *string InternalValue() *GoogleComputeInstanceGroupManagerVersionTargetSize SetInternalValue(val *GoogleComputeInstanceGroupManagerVersionTargetSize) Percent() *float64 SetPercent(val *float64) PercentInput() *float64 // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetFixed() ResetPercent() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewGoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference ¶
func NewGoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) GoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference
Source Files ¶
- GoogleComputeInstanceGroupManager.go
- GoogleComputeInstanceGroupManagerAllInstancesConfig.go
- GoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference.go
- GoogleComputeInstanceGroupManagerAllInstancesConfigOutputReference__checks.go
- GoogleComputeInstanceGroupManagerAutoHealingPolicies.go
- GoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference.go
- GoogleComputeInstanceGroupManagerAutoHealingPoliciesOutputReference__checks.go
- GoogleComputeInstanceGroupManagerConfig.go
- GoogleComputeInstanceGroupManagerInstanceLifecyclePolicy.go
- GoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference.go
- GoogleComputeInstanceGroupManagerInstanceLifecyclePolicyOutputReference__checks.go
- GoogleComputeInstanceGroupManagerNamedPort.go
- GoogleComputeInstanceGroupManagerNamedPortList.go
- GoogleComputeInstanceGroupManagerNamedPortList__checks.go
- GoogleComputeInstanceGroupManagerNamedPortOutputReference.go
- GoogleComputeInstanceGroupManagerNamedPortOutputReference__checks.go
- GoogleComputeInstanceGroupManagerStatefulDisk.go
- GoogleComputeInstanceGroupManagerStatefulDiskList.go
- GoogleComputeInstanceGroupManagerStatefulDiskList__checks.go
- GoogleComputeInstanceGroupManagerStatefulDiskOutputReference.go
- GoogleComputeInstanceGroupManagerStatefulDiskOutputReference__checks.go
- GoogleComputeInstanceGroupManagerStatefulExternalIp.go
- GoogleComputeInstanceGroupManagerStatefulExternalIpList.go
- GoogleComputeInstanceGroupManagerStatefulExternalIpList__checks.go
- GoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference.go
- GoogleComputeInstanceGroupManagerStatefulExternalIpOutputReference__checks.go
- GoogleComputeInstanceGroupManagerStatefulInternalIp.go
- GoogleComputeInstanceGroupManagerStatefulInternalIpList.go
- GoogleComputeInstanceGroupManagerStatefulInternalIpList__checks.go
- GoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference.go
- GoogleComputeInstanceGroupManagerStatefulInternalIpOutputReference__checks.go
- GoogleComputeInstanceGroupManagerStatus.go
- GoogleComputeInstanceGroupManagerStatusAllInstancesConfig.go
- GoogleComputeInstanceGroupManagerStatusAllInstancesConfigList.go
- GoogleComputeInstanceGroupManagerStatusAllInstancesConfigList__checks.go
- GoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference.go
- GoogleComputeInstanceGroupManagerStatusAllInstancesConfigOutputReference__checks.go
- GoogleComputeInstanceGroupManagerStatusList.go
- GoogleComputeInstanceGroupManagerStatusList__checks.go
- GoogleComputeInstanceGroupManagerStatusOutputReference.go
- GoogleComputeInstanceGroupManagerStatusOutputReference__checks.go
- GoogleComputeInstanceGroupManagerStatusStateful.go
- GoogleComputeInstanceGroupManagerStatusStatefulList.go
- GoogleComputeInstanceGroupManagerStatusStatefulList__checks.go
- GoogleComputeInstanceGroupManagerStatusStatefulOutputReference.go
- GoogleComputeInstanceGroupManagerStatusStatefulOutputReference__checks.go
- GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigs.go
- GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList.go
- GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsList__checks.go
- GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference.go
- GoogleComputeInstanceGroupManagerStatusStatefulPerInstanceConfigsOutputReference__checks.go
- GoogleComputeInstanceGroupManagerStatusVersionTarget.go
- GoogleComputeInstanceGroupManagerStatusVersionTargetList.go
- GoogleComputeInstanceGroupManagerStatusVersionTargetList__checks.go
- GoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference.go
- GoogleComputeInstanceGroupManagerStatusVersionTargetOutputReference__checks.go
- GoogleComputeInstanceGroupManagerTimeouts.go
- GoogleComputeInstanceGroupManagerTimeoutsOutputReference.go
- GoogleComputeInstanceGroupManagerTimeoutsOutputReference__checks.go
- GoogleComputeInstanceGroupManagerUpdatePolicy.go
- GoogleComputeInstanceGroupManagerUpdatePolicyOutputReference.go
- GoogleComputeInstanceGroupManagerUpdatePolicyOutputReference__checks.go
- GoogleComputeInstanceGroupManagerVersion.go
- GoogleComputeInstanceGroupManagerVersionList.go
- GoogleComputeInstanceGroupManagerVersionList__checks.go
- GoogleComputeInstanceGroupManagerVersionOutputReference.go
- GoogleComputeInstanceGroupManagerVersionOutputReference__checks.go
- GoogleComputeInstanceGroupManagerVersionTargetSize.go
- GoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference.go
- GoogleComputeInstanceGroupManagerVersionTargetSizeOutputReference__checks.go
- GoogleComputeInstanceGroupManager__checks.go
- main.go