![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.compute.kotlin.FirewallPolicyArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.compute.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.FirewallPolicyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Hierarchical firewall policy rules let you create and enforce a consistent firewall policy across your organization. Rules can explicitly allow or deny connections or delegate evaluation to lower level policies. Policies can be created within organizations or folders.
* This resource should be generally be used with `gcp.compute.FirewallPolicyAssociation` and `gcp.compute.FirewallPolicyRule`
* For more information see the [official documentation](https://cloud.google.com/vpc/docs/firewall-policies)
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const _default = new gcp.compute.FirewallPolicy("default", {
* parent: "organizations/12345",
* shortName: "my-policy",
* description: "Example Resource",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* default = gcp.compute.FirewallPolicy("default",
* parent="organizations/12345",
* short_name="my-policy",
* description="Example Resource")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var @default = new Gcp.Compute.FirewallPolicy("default", new()
* {
* Parent = "organizations/12345",
* ShortName = "my-policy",
* Description = "Example Resource",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := compute.NewFirewallPolicy(ctx, "default", &compute.FirewallPolicyArgs{
* Parent: pulumi.String("organizations/12345"),
* ShortName: pulumi.String("my-policy"),
* Description: pulumi.String("Example Resource"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.compute.FirewallPolicy;
* import com.pulumi.gcp.compute.FirewallPolicyArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var default_ = new FirewallPolicy("default", FirewallPolicyArgs.builder()
* .parent("organizations/12345")
* .shortName("my-policy")
* .description("Example Resource")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:compute:FirewallPolicy
* properties:
* parent: organizations/12345
* shortName: my-policy
* description: Example Resource
* ```
*
* ## Import
* FirewallPolicy can be imported using any of these accepted formats:
* ```sh
* $ pulumi import gcp:compute/firewallPolicy:FirewallPolicy default locations/global/firewallPolicies/{{name}}
* ```
* ```sh
* $ pulumi import gcp:compute/firewallPolicy:FirewallPolicy default {{name}}
* ```
* @property description An optional description of this resource. Provide this property when you create the resource.
* @property parent The parent of the firewall policy.
* @property shortName User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy 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? 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.
* - - -
*/
public data class FirewallPolicyArgs(
public val description: Output? = null,
public val parent: Output? = null,
public val shortName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.compute.FirewallPolicyArgs =
com.pulumi.gcp.compute.FirewallPolicyArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.parent(parent?.applyValue({ args0 -> args0 }))
.shortName(shortName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FirewallPolicyArgs].
*/
@PulumiTagMarker
public class FirewallPolicyArgsBuilder internal constructor() {
private var description: Output? = null
private var parent: Output? = null
private var shortName: Output? = null
/**
* @param value An optional description of this resource. Provide this property when you create the resource.
*/
@JvmName("cbkohfrortiolupe")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value The parent of the firewall policy.
*/
@JvmName("ublosissthdlcvjw")
public suspend fun parent(`value`: Output) {
this.parent = value
}
/**
* @param value User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy 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? 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.
* - - -
*/
@JvmName("fvsyjpmtnkodoycq")
public suspend fun shortName(`value`: Output) {
this.shortName = value
}
/**
* @param value An optional description of this resource. Provide this property when you create the resource.
*/
@JvmName("cfknldfsfsgsrbjj")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value The parent of the firewall policy.
*/
@JvmName("eknmifijuimvaqlt")
public suspend fun parent(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.parent = mapped
}
/**
* @param value User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy 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? 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.
* - - -
*/
@JvmName("xcgseniudibnkpbx")
public suspend fun shortName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.shortName = mapped
}
internal fun build(): FirewallPolicyArgs = FirewallPolicyArgs(
description = description,
parent = parent,
shortName = shortName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy