Interface ComputeSslPolicyConfig
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,com.hashicorp.cdktf.TerraformMetaArguments
- All Known Implementing Classes:
ComputeSslPolicyConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:19.008Z") @Stability(Stable) public interface ComputeSslPolicyConfig extends software.amazon.jsii.JsiiSerializable, com.hashicorp.cdktf.TerraformMetaArguments
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classComputeSslPolicyConfig.BuilderA builder forComputeSslPolicyConfigstatic classComputeSslPolicyConfig.Jsii$ProxyAn implementation forComputeSslPolicyConfig
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ComputeSslPolicyConfig.Builderbuilder()default List<String>getCustomFeatures()Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients.default StringgetDescription()An optional description of this resource.default StringgetId()Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#id ComputeSslPolicy#id}.default StringgetMinTlsVersion()The minimum version of SSL protocol that can be used by the clients to establish a connection with the load balancer.StringgetName()Name of the resource.default StringgetProfile()Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients.default StringgetProject()Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#project ComputeSslPolicy#project}.default ComputeSslPolicyTimeoutsgetTimeouts()timeouts block.
-
-
-
Method Detail
-
getName
@Stability(Stable) @NotNull String getName()
Name of the resource.Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z](%5B-a-z0-9%5D*%5Ba-z0-9%5D)?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#name ComputeSslPolicy#name}
-
getCustomFeatures
@Stability(Stable) @Nullable default List<String> getCustomFeatures()
Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients.This can be one of 'COMPATIBLE', 'MODERN', 'RESTRICTED', or 'CUSTOM'. If using 'CUSTOM', the set of SSL features to enable must be specified in the 'customFeatures' field. See the [official documentation](https://cloud.google.com/compute/docs/load-balancing/ssl-policies#profilefeaturesupport) for which ciphers are available to use. **Note**: this argument *must* be present when using the 'CUSTOM' profile. This argument *must not* be present when using any other profile. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#custom_features ComputeSslPolicy#custom_features}
-
getDescription
@Stability(Stable) @Nullable default String getDescription()
An optional description of this resource.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#description ComputeSslPolicy#description}
-
getId
@Stability(Stable) @Nullable default String getId()
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#id ComputeSslPolicy#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.
-
getMinTlsVersion
@Stability(Stable) @Nullable default String getMinTlsVersion()
The minimum version of SSL protocol that can be used by the clients to establish a connection with the load balancer.Default value: "TLS_1_0" Possible values: ["TLS_1_0", "TLS_1_1", "TLS_1_2"] Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#min_tls_version ComputeSslPolicy#min_tls_version}
-
getProfile
@Stability(Stable) @Nullable default String getProfile()
Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients.If using 'CUSTOM', the set of SSL features to enable must be specified in the 'customFeatures' field. See the [official documentation](https://cloud.google.com/compute/docs/load-balancing/ssl-policies#profilefeaturesupport) for information on what cipher suites each profile provides. If 'CUSTOM' is used, the 'custom_features' attribute **must be set**. Default value: "COMPATIBLE" Possible values: ["COMPATIBLE", "MODERN", "RESTRICTED", "CUSTOM"] Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#profile ComputeSslPolicy#profile}
-
getProject
@Stability(Stable) @Nullable default String getProject()
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#project ComputeSslPolicy#project}.
-
getTimeouts
@Stability(Stable) @Nullable default ComputeSslPolicyTimeouts getTimeouts()
timeouts block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_ssl_policy#timeouts ComputeSslPolicy#timeouts}
-
builder
@Stability(Stable) static ComputeSslPolicyConfig.Builder builder()
- Returns:
- a
ComputeSslPolicyConfig.BuilderofComputeSslPolicyConfig
-
-