Interface ProjectConfig
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,com.hashicorp.cdktf.TerraformMetaArguments
- All Known Implementing Classes:
ProjectConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:22.412Z") @Stability(Stable) public interface ProjectConfig extends software.amazon.jsii.JsiiSerializable, com.hashicorp.cdktf.TerraformMetaArguments
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classProjectConfig.BuilderA builder forProjectConfigstatic classProjectConfig.Jsii$ProxyAn implementation forProjectConfig
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ProjectConfig.Builderbuilder()default ObjectgetAutoCreateNetwork()Create the 'default' network automatically.default StringgetBillingAccount()The alphanumeric ID of the billing account this project belongs to.default StringgetDeletionPolicy()The deletion policy for the Project.default StringgetFolderId()The numeric ID of the folder this project should be created under.default StringgetId()Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#id Project#id}.default Map<String,String>getLabels()A set of key/value label pairs to assign to the project.StringgetName()The display name of the project.default StringgetOrgId()The numeric ID of the organization this project belongs to.StringgetProjectId()The project ID.default ObjectgetSkipDelete()If true, the Terraform resource can be deleted without deleting the Project via the Google API.default ProjectTimeoutsgetTimeouts()timeouts block.
-
-
-
Method Detail
-
getName
@Stability(Stable) @NotNull String getName()
The display name of the project.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#name Project#name}
-
getProjectId
@Stability(Stable) @NotNull String getProjectId()
The project ID. Changing this forces a new project to be created.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#project_id Project#project_id}
-
getAutoCreateNetwork
@Stability(Stable) @Nullable default Object getAutoCreateNetwork()
Create the 'default' network automatically.Default true. If set to false, the default network will be deleted. Note that, for quota purposes, you will still need to have 1 network slot available to create the project successfully, even if you set auto_create_network to false, since the network will exist momentarily. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#auto_create_network Project#auto_create_network}
-
getBillingAccount
@Stability(Stable) @Nullable default String getBillingAccount()
The alphanumeric ID of the billing account this project belongs to.The user or service account performing this operation with Terraform must have Billing Account Administrator privileges (roles/billing.admin) in the organization. See Google Cloud Billing API Access Control for more details. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#billing_account Project#billing_account}
-
getDeletionPolicy
@Stability(Stable) @Nullable default String getDeletionPolicy()
The deletion policy for the Project.Setting PREVENT will protect the project against any destroy actions caused by a terraform apply or terraform destroy. Setting ABANDON allows the resource to be abandoned rather than deleted. Possible values are: "PREVENT", "ABANDON", "DELETE" Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#deletion_policy Project#deletion_policy}
-
getFolderId
@Stability(Stable) @Nullable default String getFolderId()
The numeric ID of the folder this project should be created under.Only one of org_id or folder_id may be specified. If the folder_id is specified, then the project is created under the specified folder. Changing this forces the project to be migrated to the newly specified folder. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#folder_id Project#folder_id}
-
getId
@Stability(Stable) @Nullable default String getId()
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#id Project#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.
-
getLabels
@Stability(Stable) @Nullable default Map<String,String> getLabels()
A set of key/value label pairs to assign to the project.**Note**: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#labels Project#labels}
-
getOrgId
@Stability(Stable) @Nullable default String getOrgId()
The numeric ID of the organization this project belongs to.Changing this forces a new project to be created. Only one of org_id or folder_id may be specified. If the org_id is specified then the project is created at the top level. Changing this forces the project to be migrated to the newly specified organization. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#org_id Project#org_id}
-
getSkipDelete
@Stability(Stable) @Nullable default Object getSkipDelete()
If true, the Terraform resource can be deleted without deleting the Project via the Google API.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#skip_delete Project#skip_delete}
-
getTimeouts
@Stability(Stable) @Nullable default ProjectTimeouts getTimeouts()
timeouts block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/project#timeouts Project#timeouts}
-
builder
@Stability(Stable) static ProjectConfig.Builder builder()
- Returns:
- a
ProjectConfig.BuilderofProjectConfig
-
-