Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment google_os_config_patch_deployment}.
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeployment(scope: Construct, id: string, config: OsConfigPatchDeploymentConfig)
Name | Type | Description |
---|---|---|
scope |
constructs.Construct |
The scope in which to define this construct. |
id |
string |
The scoped construct ID. |
config |
OsConfigPatchDeploymentConfig |
No description. |
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The scoped construct ID.
Must be unique amongst siblings in the same scope
Name | Description |
---|---|
toString |
Returns a string representation of this construct. |
addOverride |
No description. |
overrideLogicalId |
Overrides the auto-generated logical ID with a specific ID. |
resetOverrideLogicalId |
Resets a previously passed logical Id to use the auto-generated logical id again. |
toHclTerraform |
No description. |
toMetadata |
No description. |
toTerraform |
Adds this resource to the terraform JSON output. |
addMoveTarget |
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
hasResourceMove |
No description. |
importFrom |
No description. |
interpolationForAttribute |
No description. |
moveFromId |
Move the resource corresponding to "id" to this resource. |
moveTo |
Moves this resource to the target resource given by moveTarget. |
moveToId |
Moves this resource to the resource corresponding to "id". |
putInstanceFilter |
No description. |
putOneTimeSchedule |
No description. |
putPatchConfig |
No description. |
putRecurringSchedule |
No description. |
putRollout |
No description. |
putTimeouts |
No description. |
resetDescription |
No description. |
resetDuration |
No description. |
resetId |
No description. |
resetOneTimeSchedule |
No description. |
resetPatchConfig |
No description. |
resetProject |
No description. |
resetRecurringSchedule |
No description. |
resetRollout |
No description. |
resetTimeouts |
No description. |
public toString(): string
Returns a string representation of this construct.
public addOverride(path: string, value: any): void
- Type: string
- Type: any
public overrideLogicalId(newLogicalId: string): void
Overrides the auto-generated logical ID with a specific ID.
- Type: string
The new logical ID to use for this stack element.
public resetOverrideLogicalId(): void
Resets a previously passed logical Id to use the auto-generated logical id again.
public toHclTerraform(): any
public toMetadata(): any
public toTerraform(): any
Adds this resource to the terraform JSON output.
public addMoveTarget(moveTarget: string): void
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
- Type: string
The string move target that will correspond to this resource.
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById
public importFrom(id: string, provider?: TerraformProvider): void
- Type: string
- Type: cdktf.TerraformProvider
public interpolationForAttribute(terraformAttribute: string): IResolvable
- Type: string
public moveFromId(id: string): void
Move the resource corresponding to "id" to this resource.
Note that the resource being moved from must be marked as moved using it's instance function.
- Type: string
Full id of resource being moved from, e.g. "aws_s3_bucket.example".
public moveTo(moveTarget: string, index?: string | number): void
Moves this resource to the target resource given by moveTarget.
- Type: string
The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
- Type: string | number
Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
public moveToId(id: string): void
Moves this resource to the resource corresponding to "id".
- Type: string
Full id of resource to move to, e.g. "aws_s3_bucket.example".
public putInstanceFilter(value: OsConfigPatchDeploymentInstanceFilter): void
public putOneTimeSchedule(value: OsConfigPatchDeploymentOneTimeSchedule): void
public putPatchConfig(value: OsConfigPatchDeploymentPatchConfig): void
public putRecurringSchedule(value: OsConfigPatchDeploymentRecurringSchedule): void
public putRollout(value: OsConfigPatchDeploymentRollout): void
public putTimeouts(value: OsConfigPatchDeploymentTimeouts): void
public resetDescription(): void
public resetDuration(): void
public resetId(): void
public resetOneTimeSchedule(): void
public resetPatchConfig(): void
public resetProject(): void
public resetRecurringSchedule(): void
public resetRollout(): void
public resetTimeouts(): void
Name | Description |
---|---|
isConstruct |
Checks if x is a construct. |
isTerraformElement |
No description. |
isTerraformResource |
No description. |
generateConfigForImport |
Generates CDKTF code for importing a OsConfigPatchDeployment resource upon running "cdktf plan ". |
import { osConfigPatchDeployment } from '@cdktf/provider-google'
osConfigPatchDeployment.OsConfigPatchDeployment.isConstruct(x: any)
Checks if x
is a construct.
Use this method instead of instanceof
to properly detect Construct
instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the constructs
library on
disk are seen as independent, completely different libraries. As a
consequence, the class Construct
in each copy of the constructs
library
is seen as a different class, and an instance of one class will not test as
instanceof
the other class. npm install
will not create installations
like this, but users may manually symlink construct libraries together or
use a monorepo tool: in those cases, multiple copies of the constructs
library can be accidentally installed, and instanceof
will behave
unpredictably. It is safest to avoid using instanceof
, and using
this type-testing method instead.
- Type: any
Any object.
import { osConfigPatchDeployment } from '@cdktf/provider-google'
osConfigPatchDeployment.OsConfigPatchDeployment.isTerraformElement(x: any)
- Type: any
import { osConfigPatchDeployment } from '@cdktf/provider-google'
osConfigPatchDeployment.OsConfigPatchDeployment.isTerraformResource(x: any)
- Type: any
import { osConfigPatchDeployment } from '@cdktf/provider-google'
osConfigPatchDeployment.OsConfigPatchDeployment.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
Generates CDKTF code for importing a OsConfigPatchDeployment resource upon running "cdktf plan ".
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The construct id used in the generated config for the OsConfigPatchDeployment to import.
- Type: string
The id of the existing OsConfigPatchDeployment that should be imported.
Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#import import section} in the documentation of this resource for the id to use
- Type: cdktf.TerraformProvider
? Optional instance of the provider where the OsConfigPatchDeployment to import is found.
Name | Type | Description |
---|---|---|
node |
constructs.Node |
The tree node. |
cdktfStack |
cdktf.TerraformStack |
No description. |
fqn |
string |
No description. |
friendlyUniqueId |
string |
No description. |
terraformMetaArguments |
{[ key: string ]: any} |
No description. |
terraformResourceType |
string |
No description. |
terraformGeneratorMetadata |
cdktf.TerraformProviderGeneratorMetadata |
No description. |
connection |
cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection |
No description. |
count |
number | cdktf.TerraformCount |
No description. |
dependsOn |
string[] |
No description. |
forEach |
cdktf.ITerraformIterator |
No description. |
lifecycle |
cdktf.TerraformResourceLifecycle |
No description. |
provider |
cdktf.TerraformProvider |
No description. |
provisioners |
cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] |
No description. |
createTime |
string |
No description. |
instanceFilter |
OsConfigPatchDeploymentInstanceFilterOutputReference |
No description. |
lastExecuteTime |
string |
No description. |
name |
string |
No description. |
oneTimeSchedule |
OsConfigPatchDeploymentOneTimeScheduleOutputReference |
No description. |
patchConfig |
OsConfigPatchDeploymentPatchConfigOutputReference |
No description. |
recurringSchedule |
OsConfigPatchDeploymentRecurringScheduleOutputReference |
No description. |
rollout |
OsConfigPatchDeploymentRolloutOutputReference |
No description. |
timeouts |
OsConfigPatchDeploymentTimeoutsOutputReference |
No description. |
updateTime |
string |
No description. |
descriptionInput |
string |
No description. |
durationInput |
string |
No description. |
idInput |
string |
No description. |
instanceFilterInput |
OsConfigPatchDeploymentInstanceFilter |
No description. |
oneTimeScheduleInput |
OsConfigPatchDeploymentOneTimeSchedule |
No description. |
patchConfigInput |
OsConfigPatchDeploymentPatchConfig |
No description. |
patchDeploymentIdInput |
string |
No description. |
projectInput |
string |
No description. |
recurringScheduleInput |
OsConfigPatchDeploymentRecurringSchedule |
No description. |
rolloutInput |
OsConfigPatchDeploymentRollout |
No description. |
timeoutsInput |
cdktf.IResolvable | OsConfigPatchDeploymentTimeouts |
No description. |
description |
string |
No description. |
duration |
string |
No description. |
id |
string |
No description. |
patchDeploymentId |
string |
No description. |
project |
string |
No description. |
public readonly node: Node;
- Type: constructs.Node
The tree node.
public readonly cdktfStack: TerraformStack;
- Type: cdktf.TerraformStack
public readonly fqn: string;
- Type: string
public readonly friendlyUniqueId: string;
- Type: string
public readonly terraformMetaArguments: {[ key: string ]: any};
- Type: {[ key: string ]: any}
public readonly terraformResourceType: string;
- Type: string
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
- Type: cdktf.TerraformProviderGeneratorMetadata
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: string[];
- Type: string[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly createTime: string;
- Type: string
public readonly instanceFilter: OsConfigPatchDeploymentInstanceFilterOutputReference;
public readonly lastExecuteTime: string;
- Type: string
public readonly name: string;
- Type: string
public readonly oneTimeSchedule: OsConfigPatchDeploymentOneTimeScheduleOutputReference;
public readonly patchConfig: OsConfigPatchDeploymentPatchConfigOutputReference;
public readonly recurringSchedule: OsConfigPatchDeploymentRecurringScheduleOutputReference;
public readonly rollout: OsConfigPatchDeploymentRolloutOutputReference;
public readonly timeouts: OsConfigPatchDeploymentTimeoutsOutputReference;
public readonly updateTime: string;
- Type: string
public readonly descriptionInput: string;
- Type: string
public readonly durationInput: string;
- Type: string
public readonly idInput: string;
- Type: string
public readonly instanceFilterInput: OsConfigPatchDeploymentInstanceFilter;
public readonly oneTimeScheduleInput: OsConfigPatchDeploymentOneTimeSchedule;
public readonly patchConfigInput: OsConfigPatchDeploymentPatchConfig;
public readonly patchDeploymentIdInput: string;
- Type: string
public readonly projectInput: string;
- Type: string
public readonly recurringScheduleInput: OsConfigPatchDeploymentRecurringSchedule;
public readonly rolloutInput: OsConfigPatchDeploymentRollout;
public readonly timeoutsInput: IResolvable | OsConfigPatchDeploymentTimeouts;
- Type: cdktf.IResolvable | OsConfigPatchDeploymentTimeouts
public readonly description: string;
- Type: string
public readonly duration: string;
- Type: string
public readonly id: string;
- Type: string
public readonly patchDeploymentId: string;
- Type: string
public readonly project: string;
- Type: string
Name | Type | Description |
---|---|---|
tfResourceType |
string |
No description. |
public readonly tfResourceType: string;
- Type: string
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentConfig: osConfigPatchDeployment.OsConfigPatchDeploymentConfig = { ... }
Name | Type | Description |
---|---|---|
connection |
cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection |
No description. |
count |
number | cdktf.TerraformCount |
No description. |
dependsOn |
cdktf.ITerraformDependable[] |
No description. |
forEach |
cdktf.ITerraformIterator |
No description. |
lifecycle |
cdktf.TerraformResourceLifecycle |
No description. |
provider |
cdktf.TerraformProvider |
No description. |
provisioners |
cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] |
No description. |
instanceFilter |
OsConfigPatchDeploymentInstanceFilter |
instance_filter block. |
patchDeploymentId |
string |
A name for the patch deployment in the project. |
description |
string |
Description of the patch deployment. Length of the description is limited to 1024 characters. |
duration |
string |
Duration of the patch. |
id |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#id OsConfigPatchDeployment#id}. |
oneTimeSchedule |
OsConfigPatchDeploymentOneTimeSchedule |
one_time_schedule block. |
patchConfig |
OsConfigPatchDeploymentPatchConfig |
patch_config block. |
project |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#project OsConfigPatchDeployment#project}. |
recurringSchedule |
OsConfigPatchDeploymentRecurringSchedule |
recurring_schedule block. |
rollout |
OsConfigPatchDeploymentRollout |
rollout block. |
timeouts |
OsConfigPatchDeploymentTimeouts |
timeouts block. |
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: ITerraformDependable[];
- Type: cdktf.ITerraformDependable[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly instanceFilter: OsConfigPatchDeploymentInstanceFilter;
instance_filter block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#instance_filter OsConfigPatchDeployment#instance_filter}
public readonly patchDeploymentId: string;
- Type: string
A name for the patch deployment in the project.
When creating a name the following rules apply:
- Must contain only lowercase letters, numbers, and hyphens.
- Must start with a letter.
- Must be between 1-63 characters.
- Must end with a number or a letter.
- Must be unique within the project.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#patch_deployment_id OsConfigPatchDeployment#patch_deployment_id}
public readonly description: string;
- Type: string
Description of the patch deployment. Length of the description is limited to 1024 characters.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#description OsConfigPatchDeployment#description}
public readonly duration: string;
- Type: string
Duration of the patch.
After the duration ends, the patch times out. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s"
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#duration OsConfigPatchDeployment#duration}
public readonly id: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#id OsConfigPatchDeployment#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.
public readonly oneTimeSchedule: OsConfigPatchDeploymentOneTimeSchedule;
one_time_schedule block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#one_time_schedule OsConfigPatchDeployment#one_time_schedule}
public readonly patchConfig: OsConfigPatchDeploymentPatchConfig;
patch_config block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#patch_config OsConfigPatchDeployment#patch_config}
public readonly project: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#project OsConfigPatchDeployment#project}.
public readonly recurringSchedule: OsConfigPatchDeploymentRecurringSchedule;
recurring_schedule block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#recurring_schedule OsConfigPatchDeployment#recurring_schedule}
public readonly rollout: OsConfigPatchDeploymentRollout;
rollout block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#rollout OsConfigPatchDeployment#rollout}
public readonly timeouts: OsConfigPatchDeploymentTimeouts;
timeouts block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#timeouts OsConfigPatchDeployment#timeouts}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentInstanceFilter: osConfigPatchDeployment.OsConfigPatchDeploymentInstanceFilter = { ... }
Name | Type | Description |
---|---|---|
all |
boolean | cdktf.IResolvable |
Target all VM instances in the project. If true, no other criteria is permitted. |
groupLabels |
cdktf.IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[] |
group_labels block. |
instanceNamePrefixes |
string[] |
Targets VMs whose name starts with one of these prefixes. |
instances |
string[] |
Targets any of the VM instances specified. Instances are specified by their URI in the 'form zones/{{zone}}/instances/{{instance_name}}', 'projects/{{project_id}}/zones/{{zone}}/instances/{{instance_name}}', or 'https://www.googleapis.com/compute/v1/projects/{{project_id}}/zones/{{zone}}/instances/{{instance_name}}'. |
zones |
string[] |
Targets VM instances in ANY of these zones. Leave empty to target VM instances in any zone. |
public readonly all: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Target all VM instances in the project. If true, no other criteria is permitted.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#all OsConfigPatchDeployment#all}
public readonly groupLabels: IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[];
- Type: cdktf.IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[]
group_labels block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#group_labels OsConfigPatchDeployment#group_labels}
public readonly instanceNamePrefixes: string[];
- Type: string[]
Targets VMs whose name starts with one of these prefixes.
Similar to labels, this is another way to group VMs when targeting configs, for example prefix="prod-".
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#instance_name_prefixes OsConfigPatchDeployment#instance_name_prefixes}
public readonly instances: string[];
- Type: string[]
Targets any of the VM instances specified. Instances are specified by their URI in the 'form zones/{{zone}}/instances/{{instance_name}}', 'projects/{{project_id}}/zones/{{zone}}/instances/{{instance_name}}', or 'https://www.googleapis.com/compute/v1/projects/{{project_id}}/zones/{{zone}}/instances/{{instance_name}}'.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#instances OsConfigPatchDeployment#instances}
public readonly zones: string[];
- Type: string[]
Targets VM instances in ANY of these zones. Leave empty to target VM instances in any zone.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#zones OsConfigPatchDeployment#zones}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentInstanceFilterGroupLabels: osConfigPatchDeployment.OsConfigPatchDeploymentInstanceFilterGroupLabels = { ... }
Name | Type | Description |
---|---|---|
labels |
{[ key: string ]: string} |
Compute Engine instance labels that must be present for a VM instance to be targeted by this filter. |
public readonly labels: {[ key: string ]: string};
- Type: {[ key: string ]: string}
Compute Engine instance labels that must be present for a VM instance to be targeted by this filter.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#labels OsConfigPatchDeployment#labels}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentOneTimeSchedule: osConfigPatchDeployment.OsConfigPatchDeploymentOneTimeSchedule = { ... }
Name | Type | Description |
---|---|---|
executeTime |
string |
The desired patch job execution time. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z". |
public readonly executeTime: string;
- Type: string
The desired patch job execution time. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z".
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#execute_time OsConfigPatchDeployment#execute_time}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfig: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfig = { ... }
Name | Type | Description |
---|---|---|
apt |
OsConfigPatchDeploymentPatchConfigApt |
apt block. |
goo |
OsConfigPatchDeploymentPatchConfigGoo |
goo block. |
migInstancesAllowed |
boolean | cdktf.IResolvable |
Allows the patch job to run on Managed instance groups (MIGs). |
postStep |
OsConfigPatchDeploymentPatchConfigPostStep |
post_step block. |
preStep |
OsConfigPatchDeploymentPatchConfigPreStep |
pre_step block. |
rebootConfig |
string |
Post-patch reboot settings. Possible values: ["DEFAULT", "ALWAYS", "NEVER"]. |
windowsUpdate |
OsConfigPatchDeploymentPatchConfigWindowsUpdate |
windows_update block. |
yum |
OsConfigPatchDeploymentPatchConfigYum |
yum block. |
zypper |
OsConfigPatchDeploymentPatchConfigZypper |
zypper block. |
public readonly apt: OsConfigPatchDeploymentPatchConfigApt;
apt block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#apt OsConfigPatchDeployment#apt}
public readonly goo: OsConfigPatchDeploymentPatchConfigGoo;
goo block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#goo OsConfigPatchDeployment#goo}
public readonly migInstancesAllowed: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Allows the patch job to run on Managed instance groups (MIGs).
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#mig_instances_allowed OsConfigPatchDeployment#mig_instances_allowed}
public readonly postStep: OsConfigPatchDeploymentPatchConfigPostStep;
post_step block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#post_step OsConfigPatchDeployment#post_step}
public readonly preStep: OsConfigPatchDeploymentPatchConfigPreStep;
pre_step block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#pre_step OsConfigPatchDeployment#pre_step}
public readonly rebootConfig: string;
- Type: string
Post-patch reboot settings. Possible values: ["DEFAULT", "ALWAYS", "NEVER"].
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#reboot_config OsConfigPatchDeployment#reboot_config}
public readonly windowsUpdate: OsConfigPatchDeploymentPatchConfigWindowsUpdate;
windows_update block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#windows_update OsConfigPatchDeployment#windows_update}
public readonly yum: OsConfigPatchDeploymentPatchConfigYum;
yum block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#yum OsConfigPatchDeployment#yum}
public readonly zypper: OsConfigPatchDeploymentPatchConfigZypper;
zypper block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#zypper OsConfigPatchDeployment#zypper}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigApt: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigApt = { ... }
Name | Type | Description |
---|---|---|
excludes |
string[] |
List of packages to exclude from update. These packages will be excluded. |
exclusivePackages |
string[] |
An exclusive list of packages to be updated. |
type |
string |
By changing the type to DIST, the patching is performed using apt-get dist-upgrade instead. Possible values: ["DIST", "UPGRADE"]. |
public readonly excludes: string[];
- Type: string[]
List of packages to exclude from update. These packages will be excluded.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#excludes OsConfigPatchDeployment#excludes}
public readonly exclusivePackages: string[];
- Type: string[]
An exclusive list of packages to be updated.
These are the only packages that will be updated. If these packages are not installed, they will be ignored. This field cannot be specified with any other patch configuration fields.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#exclusive_packages OsConfigPatchDeployment#exclusive_packages}
public readonly type: string;
- Type: string
By changing the type to DIST, the patching is performed using apt-get dist-upgrade instead. Possible values: ["DIST", "UPGRADE"].
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#type OsConfigPatchDeployment#type}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigGoo: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigGoo = { ... }
Name | Type | Description |
---|---|---|
enabled |
boolean | cdktf.IResolvable |
goo update settings. Use this setting to override the default goo patch rules. |
public readonly enabled: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
goo update settings. Use this setting to override the default goo patch rules.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#enabled OsConfigPatchDeployment#enabled}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPostStep: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStep = { ... }
Name | Type | Description |
---|---|---|
linuxExecStepConfig |
OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfig |
linux_exec_step_config block. |
windowsExecStepConfig |
OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfig |
windows_exec_step_config block. |
public readonly linuxExecStepConfig: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfig;
linux_exec_step_config block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#linux_exec_step_config OsConfigPatchDeployment#linux_exec_step_config}
public readonly windowsExecStepConfig: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfig;
windows_exec_step_config block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#windows_exec_step_config OsConfigPatchDeployment#windows_exec_step_config}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfig: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfig = { ... }
Name | Type | Description |
---|---|---|
allowedSuccessCodes |
number[] |
Defaults to [0]. A list of possible return values that the execution can return to indicate a success. |
gcsObject |
OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObject |
gcs_object block. |
interpreter |
string |
The script interpreter to use to run the script. |
localPath |
string |
An absolute path to the executable on the VM. |
public readonly allowedSuccessCodes: number[];
- Type: number[]
Defaults to [0]. A list of possible return values that the execution can return to indicate a success.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#allowed_success_codes OsConfigPatchDeployment#allowed_success_codes}
public readonly gcsObject: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObject;
gcs_object block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#gcs_object OsConfigPatchDeployment#gcs_object}
public readonly interpreter: string;
- Type: string
The script interpreter to use to run the script.
If no interpreter is specified the script will be executed directly, which will likely only succeed for scripts with shebang lines. Possible values: ["SHELL", "POWERSHELL"]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#interpreter OsConfigPatchDeployment#interpreter}
public readonly localPath: string;
- Type: string
An absolute path to the executable on the VM.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#local_path OsConfigPatchDeployment#local_path}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObject: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObject = { ... }
Name | Type | Description |
---|---|---|
bucket |
string |
Bucket of the Cloud Storage object. |
generationNumber |
string |
Generation number of the Cloud Storage object. |
object |
string |
Name of the Cloud Storage object. |
public readonly bucket: string;
- Type: string
Bucket of the Cloud Storage object.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#bucket OsConfigPatchDeployment#bucket}
public readonly generationNumber: string;
- Type: string
Generation number of the Cloud Storage object.
This is used to ensure that the ExecStep specified by this PatchJob does not change.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#generation_number OsConfigPatchDeployment#generation_number}
public readonly object: string;
- Type: string
Name of the Cloud Storage object.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#object OsConfigPatchDeployment#object}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfig: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfig = { ... }
Name | Type | Description |
---|---|---|
allowedSuccessCodes |
number[] |
Defaults to [0]. A list of possible return values that the execution can return to indicate a success. |
gcsObject |
OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObject |
gcs_object block. |
interpreter |
string |
The script interpreter to use to run the script. |
localPath |
string |
An absolute path to the executable on the VM. |
public readonly allowedSuccessCodes: number[];
- Type: number[]
Defaults to [0]. A list of possible return values that the execution can return to indicate a success.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#allowed_success_codes OsConfigPatchDeployment#allowed_success_codes}
public readonly gcsObject: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObject;
gcs_object block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#gcs_object OsConfigPatchDeployment#gcs_object}
public readonly interpreter: string;
- Type: string
The script interpreter to use to run the script.
If no interpreter is specified the script will be executed directly, which will likely only succeed for scripts with shebang lines. Possible values: ["SHELL", "POWERSHELL"]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#interpreter OsConfigPatchDeployment#interpreter}
public readonly localPath: string;
- Type: string
An absolute path to the executable on the VM.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#local_path OsConfigPatchDeployment#local_path}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObject: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObject = { ... }
Name | Type | Description |
---|---|---|
bucket |
string |
Bucket of the Cloud Storage object. |
generationNumber |
string |
Generation number of the Cloud Storage object. |
object |
string |
Name of the Cloud Storage object. |
public readonly bucket: string;
- Type: string
Bucket of the Cloud Storage object.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#bucket OsConfigPatchDeployment#bucket}
public readonly generationNumber: string;
- Type: string
Generation number of the Cloud Storage object.
This is used to ensure that the ExecStep specified by this PatchJob does not change.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#generation_number OsConfigPatchDeployment#generation_number}
public readonly object: string;
- Type: string
Name of the Cloud Storage object.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#object OsConfigPatchDeployment#object}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPreStep: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStep = { ... }
Name | Type | Description |
---|---|---|
linuxExecStepConfig |
OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfig |
linux_exec_step_config block. |
windowsExecStepConfig |
OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfig |
windows_exec_step_config block. |
public readonly linuxExecStepConfig: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfig;
linux_exec_step_config block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#linux_exec_step_config OsConfigPatchDeployment#linux_exec_step_config}
public readonly windowsExecStepConfig: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfig;
windows_exec_step_config block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#windows_exec_step_config OsConfigPatchDeployment#windows_exec_step_config}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfig: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfig = { ... }
Name | Type | Description |
---|---|---|
allowedSuccessCodes |
number[] |
Defaults to [0]. A list of possible return values that the execution can return to indicate a success. |
gcsObject |
OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObject |
gcs_object block. |
interpreter |
string |
The script interpreter to use to run the script. |
localPath |
string |
An absolute path to the executable on the VM. |
public readonly allowedSuccessCodes: number[];
- Type: number[]
Defaults to [0]. A list of possible return values that the execution can return to indicate a success.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#allowed_success_codes OsConfigPatchDeployment#allowed_success_codes}
public readonly gcsObject: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObject;
gcs_object block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#gcs_object OsConfigPatchDeployment#gcs_object}
public readonly interpreter: string;
- Type: string
The script interpreter to use to run the script.
If no interpreter is specified the script will be executed directly, which will likely only succeed for scripts with shebang lines. Possible values: ["SHELL", "POWERSHELL"]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#interpreter OsConfigPatchDeployment#interpreter}
public readonly localPath: string;
- Type: string
An absolute path to the executable on the VM.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#local_path OsConfigPatchDeployment#local_path}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObject: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObject = { ... }
Name | Type | Description |
---|---|---|
bucket |
string |
Bucket of the Cloud Storage object. |
generationNumber |
string |
Generation number of the Cloud Storage object. |
object |
string |
Name of the Cloud Storage object. |
public readonly bucket: string;
- Type: string
Bucket of the Cloud Storage object.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#bucket OsConfigPatchDeployment#bucket}
public readonly generationNumber: string;
- Type: string
Generation number of the Cloud Storage object.
This is used to ensure that the ExecStep specified by this PatchJob does not change.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#generation_number OsConfigPatchDeployment#generation_number}
public readonly object: string;
- Type: string
Name of the Cloud Storage object.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#object OsConfigPatchDeployment#object}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfig: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfig = { ... }
Name | Type | Description |
---|---|---|
allowedSuccessCodes |
number[] |
Defaults to [0]. A list of possible return values that the execution can return to indicate a success. |
gcsObject |
OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject |
gcs_object block. |
interpreter |
string |
The script interpreter to use to run the script. |
localPath |
string |
An absolute path to the executable on the VM. |
public readonly allowedSuccessCodes: number[];
- Type: number[]
Defaults to [0]. A list of possible return values that the execution can return to indicate a success.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#allowed_success_codes OsConfigPatchDeployment#allowed_success_codes}
public readonly gcsObject: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject;
gcs_object block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#gcs_object OsConfigPatchDeployment#gcs_object}
public readonly interpreter: string;
- Type: string
The script interpreter to use to run the script.
If no interpreter is specified the script will be executed directly, which will likely only succeed for scripts with shebang lines. Possible values: ["SHELL", "POWERSHELL"]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#interpreter OsConfigPatchDeployment#interpreter}
public readonly localPath: string;
- Type: string
An absolute path to the executable on the VM.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#local_path OsConfigPatchDeployment#local_path}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject = { ... }
Name | Type | Description |
---|---|---|
bucket |
string |
Bucket of the Cloud Storage object. |
generationNumber |
string |
Generation number of the Cloud Storage object. |
object |
string |
Name of the Cloud Storage object. |
public readonly bucket: string;
- Type: string
Bucket of the Cloud Storage object.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#bucket OsConfigPatchDeployment#bucket}
public readonly generationNumber: string;
- Type: string
Generation number of the Cloud Storage object.
This is used to ensure that the ExecStep specified by this PatchJob does not change.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#generation_number OsConfigPatchDeployment#generation_number}
public readonly object: string;
- Type: string
Name of the Cloud Storage object.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#object OsConfigPatchDeployment#object}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigWindowsUpdate: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigWindowsUpdate = { ... }
Name | Type | Description |
---|---|---|
classifications |
string[] |
Only apply updates of these windows update classifications. |
excludes |
string[] |
List of KBs to exclude from update. |
exclusivePatches |
string[] |
An exclusive list of kbs to be updated. |
public readonly classifications: string[];
- Type: string[]
Only apply updates of these windows update classifications.
If empty, all updates are applied. Possible values: ["CRITICAL", "SECURITY", "DEFINITION", "DRIVER", "FEATURE_PACK", "SERVICE_PACK", "TOOL", "UPDATE_ROLLUP", "UPDATE"]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#classifications OsConfigPatchDeployment#classifications}
public readonly excludes: string[];
- Type: string[]
List of KBs to exclude from update.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#excludes OsConfigPatchDeployment#excludes}
public readonly exclusivePatches: string[];
- Type: string[]
An exclusive list of kbs to be updated.
These are the only patches that will be updated. This field must not be used with other patch configurations.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#exclusive_patches OsConfigPatchDeployment#exclusive_patches}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigYum: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigYum = { ... }
Name | Type | Description |
---|---|---|
excludes |
string[] |
List of packages to exclude from update. These packages will be excluded. |
exclusivePackages |
string[] |
An exclusive list of packages to be updated. |
minimal |
boolean | cdktf.IResolvable |
Will cause patch to run yum update-minimal instead. |
security |
boolean | cdktf.IResolvable |
Adds the --security flag to yum update. Not supported on all platforms. |
public readonly excludes: string[];
- Type: string[]
List of packages to exclude from update. These packages will be excluded.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#excludes OsConfigPatchDeployment#excludes}
public readonly exclusivePackages: string[];
- Type: string[]
An exclusive list of packages to be updated.
These are the only packages that will be updated. If these packages are not installed, they will be ignored. This field cannot be specified with any other patch configuration fields.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#exclusive_packages OsConfigPatchDeployment#exclusive_packages}
public readonly minimal: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Will cause patch to run yum update-minimal instead.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#minimal OsConfigPatchDeployment#minimal}
public readonly security: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Adds the --security flag to yum update. Not supported on all platforms.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#security OsConfigPatchDeployment#security}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentPatchConfigZypper: osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigZypper = { ... }
Name | Type | Description |
---|---|---|
categories |
string[] |
Install only patches with these categories. Common categories include security, recommended, and feature. |
excludes |
string[] |
List of packages to exclude from update. |
exclusivePatches |
string[] |
An exclusive list of patches to be updated. |
severities |
string[] |
Install only patches with these severities. Common severities include critical, important, moderate, and low. |
withOptional |
boolean | cdktf.IResolvable |
Adds the --with-optional flag to zypper patch. |
withUpdate |
boolean | cdktf.IResolvable |
Adds the --with-update flag, to zypper patch. |
public readonly categories: string[];
- Type: string[]
Install only patches with these categories. Common categories include security, recommended, and feature.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#categories OsConfigPatchDeployment#categories}
public readonly excludes: string[];
- Type: string[]
List of packages to exclude from update.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#excludes OsConfigPatchDeployment#excludes}
public readonly exclusivePatches: string[];
- Type: string[]
An exclusive list of patches to be updated.
These are the only patches that will be installed using 'zypper patch patch:' command. This field must not be used with any other patch configuration fields.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#exclusive_patches OsConfigPatchDeployment#exclusive_patches}
public readonly severities: string[];
- Type: string[]
Install only patches with these severities. Common severities include critical, important, moderate, and low.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#severities OsConfigPatchDeployment#severities}
public readonly withOptional: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Adds the --with-optional flag to zypper patch.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#with_optional OsConfigPatchDeployment#with_optional}
public readonly withUpdate: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Adds the --with-update flag, to zypper patch.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#with_update OsConfigPatchDeployment#with_update}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentRecurringSchedule: osConfigPatchDeployment.OsConfigPatchDeploymentRecurringSchedule = { ... }
Name | Type | Description |
---|---|---|
timeOfDay |
OsConfigPatchDeploymentRecurringScheduleTimeOfDay |
time_of_day block. |
timeZone |
OsConfigPatchDeploymentRecurringScheduleTimeZone |
time_zone block. |
endTime |
string |
The end time at which a recurring patch deployment schedule is no longer active. |
monthly |
OsConfigPatchDeploymentRecurringScheduleMonthly |
monthly block. |
startTime |
string |
The time that the recurring schedule becomes effective. |
weekly |
OsConfigPatchDeploymentRecurringScheduleWeekly |
weekly block. |
public readonly timeOfDay: OsConfigPatchDeploymentRecurringScheduleTimeOfDay;
time_of_day block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#time_of_day OsConfigPatchDeployment#time_of_day}
public readonly timeZone: OsConfigPatchDeploymentRecurringScheduleTimeZone;
time_zone block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#time_zone OsConfigPatchDeployment#time_zone}
public readonly endTime: string;
- Type: string
The end time at which a recurring patch deployment schedule is no longer active.
A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z".
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#end_time OsConfigPatchDeployment#end_time}
public readonly monthly: OsConfigPatchDeploymentRecurringScheduleMonthly;
monthly block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#monthly OsConfigPatchDeployment#monthly}
public readonly startTime: string;
- Type: string
The time that the recurring schedule becomes effective.
Defaults to createTime of the patch deployment. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z".
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#start_time OsConfigPatchDeployment#start_time}
public readonly weekly: OsConfigPatchDeploymentRecurringScheduleWeekly;
weekly block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#weekly OsConfigPatchDeployment#weekly}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentRecurringScheduleMonthly: osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleMonthly = { ... }
Name | Type | Description |
---|---|---|
monthDay |
number |
One day of the month. |
weekDayOfMonth |
OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonth |
week_day_of_month block. |
public readonly monthDay: number;
- Type: number
One day of the month.
1-31 indicates the 1st to the 31st day. -1 indicates the last day of the month. Months without the target day will be skipped. For example, a schedule to run "every month on the 31st" will not run in February, April, June, etc.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#month_day OsConfigPatchDeployment#month_day}
public readonly weekDayOfMonth: OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonth;
week_day_of_month block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#week_day_of_month OsConfigPatchDeployment#week_day_of_month}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonth: osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonth = { ... }
Name | Type | Description |
---|---|---|
dayOfWeek |
string |
A day of the week. Possible values: ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]. |
weekOrdinal |
number |
Week number in a month. |
dayOffset |
number |
Represents the number of days before or after the given week day of month that the patch deployment is scheduled for. |
public readonly dayOfWeek: string;
- Type: string
A day of the week. Possible values: ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"].
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#day_of_week OsConfigPatchDeployment#day_of_week}
public readonly weekOrdinal: number;
- Type: number
Week number in a month.
1-4 indicates the 1st to 4th week of the month. -1 indicates the last week of the month.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#week_ordinal OsConfigPatchDeployment#week_ordinal}
public readonly dayOffset: number;
- Type: number
Represents the number of days before or after the given week day of month that the patch deployment is scheduled for.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#day_offset OsConfigPatchDeployment#day_offset}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentRecurringScheduleTimeOfDay: osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleTimeOfDay = { ... }
Name | Type | Description |
---|---|---|
hours |
number |
Hours of day in 24 hour format. |
minutes |
number |
Minutes of hour of day. Must be from 0 to 59. |
nanos |
number |
Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999. |
seconds |
number |
Seconds of minutes of the time. |
public readonly hours: number;
- Type: number
Hours of day in 24 hour format.
Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#hours OsConfigPatchDeployment#hours}
public readonly minutes: number;
- Type: number
Minutes of hour of day. Must be from 0 to 59.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#minutes OsConfigPatchDeployment#minutes}
public readonly nanos: number;
- Type: number
Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#nanos OsConfigPatchDeployment#nanos}
public readonly seconds: number;
- Type: number
Seconds of minutes of the time.
Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#seconds OsConfigPatchDeployment#seconds}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentRecurringScheduleTimeZone: osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleTimeZone = { ... }
Name | Type | Description |
---|---|---|
id |
string |
IANA Time Zone Database time zone, e.g. "America/New_York". |
version |
string |
IANA Time Zone Database version number, e.g. "2019a". |
public readonly id: string;
- Type: string
IANA Time Zone Database time zone, e.g. "America/New_York".
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#id OsConfigPatchDeployment#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.
public readonly version: string;
- Type: string
IANA Time Zone Database version number, e.g. "2019a".
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#version OsConfigPatchDeployment#version}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentRecurringScheduleWeekly: osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleWeekly = { ... }
Name | Type | Description |
---|---|---|
dayOfWeek |
string |
IANA Time Zone Database time zone, e.g. "America/New_York". Possible values: ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]. |
public readonly dayOfWeek: string;
- Type: string
IANA Time Zone Database time zone, e.g. "America/New_York". Possible values: ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"].
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#day_of_week OsConfigPatchDeployment#day_of_week}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentRollout: osConfigPatchDeployment.OsConfigPatchDeploymentRollout = { ... }
Name | Type | Description |
---|---|---|
disruptionBudget |
OsConfigPatchDeploymentRolloutDisruptionBudget |
disruption_budget block. |
mode |
string |
Mode of the patch rollout. Possible values: ["ZONE_BY_ZONE", "CONCURRENT_ZONES"]. |
public readonly disruptionBudget: OsConfigPatchDeploymentRolloutDisruptionBudget;
disruption_budget block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#disruption_budget OsConfigPatchDeployment#disruption_budget}
public readonly mode: string;
- Type: string
Mode of the patch rollout. Possible values: ["ZONE_BY_ZONE", "CONCURRENT_ZONES"].
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#mode OsConfigPatchDeployment#mode}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentRolloutDisruptionBudget: osConfigPatchDeployment.OsConfigPatchDeploymentRolloutDisruptionBudget = { ... }
Name | Type | Description |
---|---|---|
fixed |
number |
Specifies a fixed value. |
percentage |
number |
Specifies the relative value defined as a percentage, which will be multiplied by a reference value. |
public readonly fixed: number;
- Type: number
Specifies a fixed value.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#fixed OsConfigPatchDeployment#fixed}
public readonly percentage: number;
- Type: number
Specifies the relative value defined as a percentage, which will be multiplied by a reference value.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#percentage OsConfigPatchDeployment#percentage}
import { osConfigPatchDeployment } from '@cdktf/provider-google'
const osConfigPatchDeploymentTimeouts: osConfigPatchDeployment.OsConfigPatchDeploymentTimeouts = { ... }
Name | Type | Description |
---|---|---|
create |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#create OsConfigPatchDeployment#create}. |
delete |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#delete OsConfigPatchDeployment#delete}. |
public readonly create: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#create OsConfigPatchDeployment#create}.
public readonly delete: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.35.0/docs/resources/os_config_patch_deployment#delete OsConfigPatchDeployment#delete}.
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentInstanceFilterGroupLabelsList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OsConfigPatchDeploymentInstanceFilterGroupLabelsOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
internalValue |
cdktf.IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[] |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly internalValue: IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[];
- Type: cdktf.IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[]
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentInstanceFilterGroupLabelsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
labelsInput |
{[ key: string ]: string} |
No description. |
labels |
{[ key: string ]: string} |
No description. |
internalValue |
cdktf.IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly labelsInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly labels: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly internalValue: IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels;
- Type: cdktf.IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentInstanceFilterOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putGroupLabels |
No description. |
resetAll |
No description. |
resetGroupLabels |
No description. |
resetInstanceNamePrefixes |
No description. |
resetInstances |
No description. |
resetZones |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putGroupLabels(value: IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[]): void
- Type: cdktf.IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[]
public resetAll(): void
public resetGroupLabels(): void
public resetInstanceNamePrefixes(): void
public resetInstances(): void
public resetZones(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
groupLabels |
OsConfigPatchDeploymentInstanceFilterGroupLabelsList |
No description. |
allInput |
boolean | cdktf.IResolvable |
No description. |
groupLabelsInput |
cdktf.IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[] |
No description. |
instanceNamePrefixesInput |
string[] |
No description. |
instancesInput |
string[] |
No description. |
zonesInput |
string[] |
No description. |
all |
boolean | cdktf.IResolvable |
No description. |
instanceNamePrefixes |
string[] |
No description. |
instances |
string[] |
No description. |
zones |
string[] |
No description. |
internalValue |
OsConfigPatchDeploymentInstanceFilter |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly groupLabels: OsConfigPatchDeploymentInstanceFilterGroupLabelsList;
public readonly allInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly groupLabelsInput: IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[];
- Type: cdktf.IResolvable | OsConfigPatchDeploymentInstanceFilterGroupLabels[]
public readonly instanceNamePrefixesInput: string[];
- Type: string[]
public readonly instancesInput: string[];
- Type: string[]
public readonly zonesInput: string[];
- Type: string[]
public readonly all: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly instanceNamePrefixes: string[];
- Type: string[]
public readonly instances: string[];
- Type: string[]
public readonly zones: string[];
- Type: string[]
public readonly internalValue: OsConfigPatchDeploymentInstanceFilter;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentOneTimeScheduleOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
executeTimeInput |
string |
No description. |
executeTime |
string |
No description. |
internalValue |
OsConfigPatchDeploymentOneTimeSchedule |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly executeTimeInput: string;
- Type: string
public readonly executeTime: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentOneTimeSchedule;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigAptOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetExcludes |
No description. |
resetExclusivePackages |
No description. |
resetType |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetExcludes(): void
public resetExclusivePackages(): void
public resetType(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
excludesInput |
string[] |
No description. |
exclusivePackagesInput |
string[] |
No description. |
typeInput |
string |
No description. |
excludes |
string[] |
No description. |
exclusivePackages |
string[] |
No description. |
type |
string |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigApt |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly excludesInput: string[];
- Type: string[]
public readonly exclusivePackagesInput: string[];
- Type: string[]
public readonly typeInput: string;
- Type: string
public readonly excludes: string[];
- Type: string[]
public readonly exclusivePackages: string[];
- Type: string[]
public readonly type: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfigApt;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigGooOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
enabledInput |
boolean | cdktf.IResolvable |
No description. |
enabled |
boolean | cdktf.IResolvable |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigGoo |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly enabledInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly enabled: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly internalValue: OsConfigPatchDeploymentPatchConfigGoo;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putApt |
No description. |
putGoo |
No description. |
putPostStep |
No description. |
putPreStep |
No description. |
putWindowsUpdate |
No description. |
putYum |
No description. |
putZypper |
No description. |
resetApt |
No description. |
resetGoo |
No description. |
resetMigInstancesAllowed |
No description. |
resetPostStep |
No description. |
resetPreStep |
No description. |
resetRebootConfig |
No description. |
resetWindowsUpdate |
No description. |
resetYum |
No description. |
resetZypper |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putApt(value: OsConfigPatchDeploymentPatchConfigApt): void
public putGoo(value: OsConfigPatchDeploymentPatchConfigGoo): void
public putPostStep(value: OsConfigPatchDeploymentPatchConfigPostStep): void
public putPreStep(value: OsConfigPatchDeploymentPatchConfigPreStep): void
public putWindowsUpdate(value: OsConfigPatchDeploymentPatchConfigWindowsUpdate): void
public putYum(value: OsConfigPatchDeploymentPatchConfigYum): void
public putZypper(value: OsConfigPatchDeploymentPatchConfigZypper): void
public resetApt(): void
public resetGoo(): void
public resetMigInstancesAllowed(): void
public resetPostStep(): void
public resetPreStep(): void
public resetRebootConfig(): void
public resetWindowsUpdate(): void
public resetYum(): void
public resetZypper(): void
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly apt: OsConfigPatchDeploymentPatchConfigAptOutputReference;
public readonly goo: OsConfigPatchDeploymentPatchConfigGooOutputReference;
public readonly postStep: OsConfigPatchDeploymentPatchConfigPostStepOutputReference;
public readonly preStep: OsConfigPatchDeploymentPatchConfigPreStepOutputReference;
public readonly windowsUpdate: OsConfigPatchDeploymentPatchConfigWindowsUpdateOutputReference;
public readonly yum: OsConfigPatchDeploymentPatchConfigYumOutputReference;
public readonly zypper: OsConfigPatchDeploymentPatchConfigZypperOutputReference;
public readonly aptInput: OsConfigPatchDeploymentPatchConfigApt;
public readonly gooInput: OsConfigPatchDeploymentPatchConfigGoo;
public readonly migInstancesAllowedInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly postStepInput: OsConfigPatchDeploymentPatchConfigPostStep;
public readonly preStepInput: OsConfigPatchDeploymentPatchConfigPreStep;
public readonly rebootConfigInput: string;
- Type: string
public readonly windowsUpdateInput: OsConfigPatchDeploymentPatchConfigWindowsUpdate;
public readonly yumInput: OsConfigPatchDeploymentPatchConfigYum;
public readonly zypperInput: OsConfigPatchDeploymentPatchConfigZypper;
public readonly migInstancesAllowed: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly rebootConfig: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfig;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObjectOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
bucketInput |
string |
No description. |
generationNumberInput |
string |
No description. |
objectInput |
string |
No description. |
bucket |
string |
No description. |
generationNumber |
string |
No description. |
object |
string |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObject |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly bucketInput: string;
- Type: string
public readonly generationNumberInput: string;
- Type: string
public readonly objectInput: string;
- Type: string
public readonly bucket: string;
- Type: string
public readonly generationNumber: string;
- Type: string
public readonly object: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObject;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putGcsObject |
No description. |
resetAllowedSuccessCodes |
No description. |
resetGcsObject |
No description. |
resetInterpreter |
No description. |
resetLocalPath |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putGcsObject(value: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObject): void
public resetAllowedSuccessCodes(): void
public resetGcsObject(): void
public resetInterpreter(): void
public resetLocalPath(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
gcsObject |
OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObjectOutputReference |
No description. |
allowedSuccessCodesInput |
number[] |
No description. |
gcsObjectInput |
OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObject |
No description. |
interpreterInput |
string |
No description. |
localPathInput |
string |
No description. |
allowedSuccessCodes |
number[] |
No description. |
interpreter |
string |
No description. |
localPath |
string |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfig |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly gcsObject: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObjectOutputReference;
public readonly allowedSuccessCodesInput: number[];
- Type: number[]
public readonly gcsObjectInput: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigGcsObject;
public readonly interpreterInput: string;
- Type: string
public readonly localPathInput: string;
- Type: string
public readonly allowedSuccessCodes: number[];
- Type: number[]
public readonly interpreter: string;
- Type: string
public readonly localPath: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfig;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStepOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putLinuxExecStepConfig |
No description. |
putWindowsExecStepConfig |
No description. |
resetLinuxExecStepConfig |
No description. |
resetWindowsExecStepConfig |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putLinuxExecStepConfig(value: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfig): void
public putWindowsExecStepConfig(value: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfig): void
public resetLinuxExecStepConfig(): void
public resetWindowsExecStepConfig(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
linuxExecStepConfig |
OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigOutputReference |
No description. |
windowsExecStepConfig |
OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigOutputReference |
No description. |
linuxExecStepConfigInput |
OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfig |
No description. |
windowsExecStepConfigInput |
OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfig |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPostStep |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly linuxExecStepConfig: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfigOutputReference;
public readonly windowsExecStepConfig: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigOutputReference;
public readonly linuxExecStepConfigInput: OsConfigPatchDeploymentPatchConfigPostStepLinuxExecStepConfig;
public readonly windowsExecStepConfigInput: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfig;
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPostStep;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
bucketInput |
string |
No description. |
generationNumberInput |
string |
No description. |
objectInput |
string |
No description. |
bucket |
string |
No description. |
generationNumber |
string |
No description. |
object |
string |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObject |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly bucketInput: string;
- Type: string
public readonly generationNumberInput: string;
- Type: string
public readonly objectInput: string;
- Type: string
public readonly bucket: string;
- Type: string
public readonly generationNumber: string;
- Type: string
public readonly object: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObject;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putGcsObject |
No description. |
resetAllowedSuccessCodes |
No description. |
resetGcsObject |
No description. |
resetInterpreter |
No description. |
resetLocalPath |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putGcsObject(value: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObject): void
public resetAllowedSuccessCodes(): void
public resetGcsObject(): void
public resetInterpreter(): void
public resetLocalPath(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
gcsObject |
OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectOutputReference |
No description. |
allowedSuccessCodesInput |
number[] |
No description. |
gcsObjectInput |
OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObject |
No description. |
interpreterInput |
string |
No description. |
localPathInput |
string |
No description. |
allowedSuccessCodes |
number[] |
No description. |
interpreter |
string |
No description. |
localPath |
string |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfig |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly gcsObject: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectOutputReference;
public readonly allowedSuccessCodesInput: number[];
- Type: number[]
public readonly gcsObjectInput: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObject;
public readonly interpreterInput: string;
- Type: string
public readonly localPathInput: string;
- Type: string
public readonly allowedSuccessCodes: number[];
- Type: number[]
public readonly interpreter: string;
- Type: string
public readonly localPath: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPostStepWindowsExecStepConfig;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
bucketInput |
string |
No description. |
generationNumberInput |
string |
No description. |
objectInput |
string |
No description. |
bucket |
string |
No description. |
generationNumber |
string |
No description. |
object |
string |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObject |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly bucketInput: string;
- Type: string
public readonly generationNumberInput: string;
- Type: string
public readonly objectInput: string;
- Type: string
public readonly bucket: string;
- Type: string
public readonly generationNumber: string;
- Type: string
public readonly object: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObject;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putGcsObject |
No description. |
resetAllowedSuccessCodes |
No description. |
resetGcsObject |
No description. |
resetInterpreter |
No description. |
resetLocalPath |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putGcsObject(value: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObject): void
public resetAllowedSuccessCodes(): void
public resetGcsObject(): void
public resetInterpreter(): void
public resetLocalPath(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
gcsObject |
OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectOutputReference |
No description. |
allowedSuccessCodesInput |
number[] |
No description. |
gcsObjectInput |
OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObject |
No description. |
interpreterInput |
string |
No description. |
localPathInput |
string |
No description. |
allowedSuccessCodes |
number[] |
No description. |
interpreter |
string |
No description. |
localPath |
string |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfig |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly gcsObject: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectOutputReference;
public readonly allowedSuccessCodesInput: number[];
- Type: number[]
public readonly gcsObjectInput: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObject;
public readonly interpreterInput: string;
- Type: string
public readonly localPathInput: string;
- Type: string
public readonly allowedSuccessCodes: number[];
- Type: number[]
public readonly interpreter: string;
- Type: string
public readonly localPath: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfig;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStepOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putLinuxExecStepConfig |
No description. |
putWindowsExecStepConfig |
No description. |
resetLinuxExecStepConfig |
No description. |
resetWindowsExecStepConfig |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putLinuxExecStepConfig(value: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfig): void
public putWindowsExecStepConfig(value: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfig): void
public resetLinuxExecStepConfig(): void
public resetWindowsExecStepConfig(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
linuxExecStepConfig |
OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigOutputReference |
No description. |
windowsExecStepConfig |
OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigOutputReference |
No description. |
linuxExecStepConfigInput |
OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfig |
No description. |
windowsExecStepConfigInput |
OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfig |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPreStep |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly linuxExecStepConfig: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfigOutputReference;
public readonly windowsExecStepConfig: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigOutputReference;
public readonly linuxExecStepConfigInput: OsConfigPatchDeploymentPatchConfigPreStepLinuxExecStepConfig;
public readonly windowsExecStepConfigInput: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfig;
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPreStep;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObjectOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
bucketInput |
string |
No description. |
generationNumberInput |
string |
No description. |
objectInput |
string |
No description. |
bucket |
string |
No description. |
generationNumber |
string |
No description. |
object |
string |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly bucketInput: string;
- Type: string
public readonly generationNumberInput: string;
- Type: string
public readonly objectInput: string;
- Type: string
public readonly bucket: string;
- Type: string
public readonly generationNumber: string;
- Type: string
public readonly object: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putGcsObject |
No description. |
resetAllowedSuccessCodes |
No description. |
resetGcsObject |
No description. |
resetInterpreter |
No description. |
resetLocalPath |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putGcsObject(value: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject): void
public resetAllowedSuccessCodes(): void
public resetGcsObject(): void
public resetInterpreter(): void
public resetLocalPath(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
gcsObject |
OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObjectOutputReference |
No description. |
allowedSuccessCodesInput |
number[] |
No description. |
gcsObjectInput |
OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject |
No description. |
interpreterInput |
string |
No description. |
localPathInput |
string |
No description. |
allowedSuccessCodes |
number[] |
No description. |
interpreter |
string |
No description. |
localPath |
string |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfig |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly gcsObject: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObjectOutputReference;
public readonly allowedSuccessCodesInput: number[];
- Type: number[]
public readonly gcsObjectInput: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject;
public readonly interpreterInput: string;
- Type: string
public readonly localPathInput: string;
- Type: string
public readonly allowedSuccessCodes: number[];
- Type: number[]
public readonly interpreter: string;
- Type: string
public readonly localPath: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentPatchConfigPreStepWindowsExecStepConfig;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigWindowsUpdateOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetClassifications |
No description. |
resetExcludes |
No description. |
resetExclusivePatches |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetClassifications(): void
public resetExcludes(): void
public resetExclusivePatches(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
classificationsInput |
string[] |
No description. |
excludesInput |
string[] |
No description. |
exclusivePatchesInput |
string[] |
No description. |
classifications |
string[] |
No description. |
excludes |
string[] |
No description. |
exclusivePatches |
string[] |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigWindowsUpdate |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly classificationsInput: string[];
- Type: string[]
public readonly excludesInput: string[];
- Type: string[]
public readonly exclusivePatchesInput: string[];
- Type: string[]
public readonly classifications: string[];
- Type: string[]
public readonly excludes: string[];
- Type: string[]
public readonly exclusivePatches: string[];
- Type: string[]
public readonly internalValue: OsConfigPatchDeploymentPatchConfigWindowsUpdate;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigYumOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetExcludes |
No description. |
resetExclusivePackages |
No description. |
resetMinimal |
No description. |
resetSecurity |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetExcludes(): void
public resetExclusivePackages(): void
public resetMinimal(): void
public resetSecurity(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
excludesInput |
string[] |
No description. |
exclusivePackagesInput |
string[] |
No description. |
minimalInput |
boolean | cdktf.IResolvable |
No description. |
securityInput |
boolean | cdktf.IResolvable |
No description. |
excludes |
string[] |
No description. |
exclusivePackages |
string[] |
No description. |
minimal |
boolean | cdktf.IResolvable |
No description. |
security |
boolean | cdktf.IResolvable |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigYum |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly excludesInput: string[];
- Type: string[]
public readonly exclusivePackagesInput: string[];
- Type: string[]
public readonly minimalInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly securityInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly excludes: string[];
- Type: string[]
public readonly exclusivePackages: string[];
- Type: string[]
public readonly minimal: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly security: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly internalValue: OsConfigPatchDeploymentPatchConfigYum;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentPatchConfigZypperOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetCategories |
No description. |
resetExcludes |
No description. |
resetExclusivePatches |
No description. |
resetSeverities |
No description. |
resetWithOptional |
No description. |
resetWithUpdate |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetCategories(): void
public resetExcludes(): void
public resetExclusivePatches(): void
public resetSeverities(): void
public resetWithOptional(): void
public resetWithUpdate(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
categoriesInput |
string[] |
No description. |
excludesInput |
string[] |
No description. |
exclusivePatchesInput |
string[] |
No description. |
severitiesInput |
string[] |
No description. |
withOptionalInput |
boolean | cdktf.IResolvable |
No description. |
withUpdateInput |
boolean | cdktf.IResolvable |
No description. |
categories |
string[] |
No description. |
excludes |
string[] |
No description. |
exclusivePatches |
string[] |
No description. |
severities |
string[] |
No description. |
withOptional |
boolean | cdktf.IResolvable |
No description. |
withUpdate |
boolean | cdktf.IResolvable |
No description. |
internalValue |
OsConfigPatchDeploymentPatchConfigZypper |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly categoriesInput: string[];
- Type: string[]
public readonly excludesInput: string[];
- Type: string[]
public readonly exclusivePatchesInput: string[];
- Type: string[]
public readonly severitiesInput: string[];
- Type: string[]
public readonly withOptionalInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly withUpdateInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly categories: string[];
- Type: string[]
public readonly excludes: string[];
- Type: string[]
public readonly exclusivePatches: string[];
- Type: string[]
public readonly severities: string[];
- Type: string[]
public readonly withOptional: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly withUpdate: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly internalValue: OsConfigPatchDeploymentPatchConfigZypper;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleMonthlyOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putWeekDayOfMonth |
No description. |
resetMonthDay |
No description. |
resetWeekDayOfMonth |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putWeekDayOfMonth(value: OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonth): void
public resetMonthDay(): void
public resetWeekDayOfMonth(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
weekDayOfMonth |
OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonthOutputReference |
No description. |
monthDayInput |
number |
No description. |
weekDayOfMonthInput |
OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonth |
No description. |
monthDay |
number |
No description. |
internalValue |
OsConfigPatchDeploymentRecurringScheduleMonthly |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly weekDayOfMonth: OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonthOutputReference;
public readonly monthDayInput: number;
- Type: number
public readonly weekDayOfMonthInput: OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonth;
public readonly monthDay: number;
- Type: number
public readonly internalValue: OsConfigPatchDeploymentRecurringScheduleMonthly;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonthOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetDayOffset |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetDayOffset(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
dayOffsetInput |
number |
No description. |
dayOfWeekInput |
string |
No description. |
weekOrdinalInput |
number |
No description. |
dayOffset |
number |
No description. |
dayOfWeek |
string |
No description. |
weekOrdinal |
number |
No description. |
internalValue |
OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonth |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly dayOffsetInput: number;
- Type: number
public readonly dayOfWeekInput: string;
- Type: string
public readonly weekOrdinalInput: number;
- Type: number
public readonly dayOffset: number;
- Type: number
public readonly dayOfWeek: string;
- Type: string
public readonly weekOrdinal: number;
- Type: number
public readonly internalValue: OsConfigPatchDeploymentRecurringScheduleMonthlyWeekDayOfMonth;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putMonthly |
No description. |
putTimeOfDay |
No description. |
putTimeZone |
No description. |
putWeekly |
No description. |
resetEndTime |
No description. |
resetMonthly |
No description. |
resetStartTime |
No description. |
resetWeekly |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putMonthly(value: OsConfigPatchDeploymentRecurringScheduleMonthly): void
public putTimeOfDay(value: OsConfigPatchDeploymentRecurringScheduleTimeOfDay): void
public putTimeZone(value: OsConfigPatchDeploymentRecurringScheduleTimeZone): void
public putWeekly(value: OsConfigPatchDeploymentRecurringScheduleWeekly): void
public resetEndTime(): void
public resetMonthly(): void
public resetStartTime(): void
public resetWeekly(): void
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly lastExecuteTime: string;
- Type: string
public readonly monthly: OsConfigPatchDeploymentRecurringScheduleMonthlyOutputReference;
public readonly nextExecuteTime: string;
- Type: string
public readonly timeOfDay: OsConfigPatchDeploymentRecurringScheduleTimeOfDayOutputReference;
public readonly timeZone: OsConfigPatchDeploymentRecurringScheduleTimeZoneOutputReference;
public readonly weekly: OsConfigPatchDeploymentRecurringScheduleWeeklyOutputReference;
public readonly endTimeInput: string;
- Type: string
public readonly monthlyInput: OsConfigPatchDeploymentRecurringScheduleMonthly;
public readonly startTimeInput: string;
- Type: string
public readonly timeOfDayInput: OsConfigPatchDeploymentRecurringScheduleTimeOfDay;
public readonly timeZoneInput: OsConfigPatchDeploymentRecurringScheduleTimeZone;
public readonly weeklyInput: OsConfigPatchDeploymentRecurringScheduleWeekly;
public readonly endTime: string;
- Type: string
public readonly startTime: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentRecurringSchedule;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleTimeOfDayOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetHours |
No description. |
resetMinutes |
No description. |
resetNanos |
No description. |
resetSeconds |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetHours(): void
public resetMinutes(): void
public resetNanos(): void
public resetSeconds(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
hoursInput |
number |
No description. |
minutesInput |
number |
No description. |
nanosInput |
number |
No description. |
secondsInput |
number |
No description. |
hours |
number |
No description. |
minutes |
number |
No description. |
nanos |
number |
No description. |
seconds |
number |
No description. |
internalValue |
OsConfigPatchDeploymentRecurringScheduleTimeOfDay |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly hoursInput: number;
- Type: number
public readonly minutesInput: number;
- Type: number
public readonly nanosInput: number;
- Type: number
public readonly secondsInput: number;
- Type: number
public readonly hours: number;
- Type: number
public readonly minutes: number;
- Type: number
public readonly nanos: number;
- Type: number
public readonly seconds: number;
- Type: number
public readonly internalValue: OsConfigPatchDeploymentRecurringScheduleTimeOfDay;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleTimeZoneOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetVersion |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetVersion(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
idInput |
string |
No description. |
versionInput |
string |
No description. |
id |
string |
No description. |
version |
string |
No description. |
internalValue |
OsConfigPatchDeploymentRecurringScheduleTimeZone |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly idInput: string;
- Type: string
public readonly versionInput: string;
- Type: string
public readonly id: string;
- Type: string
public readonly version: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentRecurringScheduleTimeZone;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentRecurringScheduleWeeklyOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
dayOfWeekInput |
string |
No description. |
dayOfWeek |
string |
No description. |
internalValue |
OsConfigPatchDeploymentRecurringScheduleWeekly |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly dayOfWeekInput: string;
- Type: string
public readonly dayOfWeek: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentRecurringScheduleWeekly;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentRolloutDisruptionBudgetOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetFixed |
No description. |
resetPercentage |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetFixed(): void
public resetPercentage(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
fixedInput |
number |
No description. |
percentageInput |
number |
No description. |
fixed |
number |
No description. |
percentage |
number |
No description. |
internalValue |
OsConfigPatchDeploymentRolloutDisruptionBudget |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly fixedInput: number;
- Type: number
public readonly percentageInput: number;
- Type: number
public readonly fixed: number;
- Type: number
public readonly percentage: number;
- Type: number
public readonly internalValue: OsConfigPatchDeploymentRolloutDisruptionBudget;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentRolloutOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
putDisruptionBudget |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putDisruptionBudget(value: OsConfigPatchDeploymentRolloutDisruptionBudget): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
disruptionBudget |
OsConfigPatchDeploymentRolloutDisruptionBudgetOutputReference |
No description. |
disruptionBudgetInput |
OsConfigPatchDeploymentRolloutDisruptionBudget |
No description. |
modeInput |
string |
No description. |
mode |
string |
No description. |
internalValue |
OsConfigPatchDeploymentRollout |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly disruptionBudget: OsConfigPatchDeploymentRolloutDisruptionBudgetOutputReference;
public readonly disruptionBudgetInput: OsConfigPatchDeploymentRolloutDisruptionBudget;
public readonly modeInput: string;
- Type: string
public readonly mode: string;
- Type: string
public readonly internalValue: OsConfigPatchDeploymentRollout;
import { osConfigPatchDeployment } from '@cdktf/provider-google'
new osConfigPatchDeployment.OsConfigPatchDeploymentTimeoutsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetCreate |
No description. |
resetDelete |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetCreate(): void
public resetDelete(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
createInput |
string |
No description. |
deleteInput |
string |
No description. |
create |
string |
No description. |
delete |
string |
No description. |
internalValue |
cdktf.IResolvable | OsConfigPatchDeploymentTimeouts |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly createInput: string;
- Type: string
public readonly deleteInput: string;
- Type: string
public readonly create: string;
- Type: string
public readonly delete: string;
- Type: string
public readonly internalValue: IResolvable | OsConfigPatchDeploymentTimeouts;
- Type: cdktf.IResolvable | OsConfigPatchDeploymentTimeouts