opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud
opentelekomcloud.getNatDnatRulesV2
Explore with Pulumi AI
opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud
Up-to-date reference of API arguments for NAT Gateway you can get at documentation portal
Use this data source to get the list of DNAT rules within OpenTelekomCloud..
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const config = new pulumi.Config();
const protocol = config.requireObject("protocol");
const rule = opentelekomcloud.getNatDnatRulesV2({
protocol: protocol,
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
config = pulumi.Config()
protocol = config.require_object("protocol")
rule = opentelekomcloud.get_nat_dnat_rules_v2(protocol=protocol)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
protocol := cfg.RequireObject("protocol")
_, err := opentelekomcloud.GetNatDnatRulesV2(ctx, &opentelekomcloud.GetNatDnatRulesV2Args{
Protocol: pulumi.StringRef(protocol),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var protocol = config.RequireObject<dynamic>("protocol");
var rule = Opentelekomcloud.GetNatDnatRulesV2.Invoke(new()
{
Protocol = protocol,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
import com.pulumi.opentelekomcloud.inputs.GetNatDnatRulesV2Args;
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) {
final var config = ctx.config();
final var protocol = config.get("protocol");
final var rule = OpentelekomcloudFunctions.getNatDnatRulesV2(GetNatDnatRulesV2Args.builder()
.protocol(protocol)
.build());
}
}
configuration:
protocol:
type: dynamic
variables:
rule:
fn::invoke:
function: opentelekomcloud:getNatDnatRulesV2
arguments:
protocol: ${protocol}
Using getNatDnatRulesV2
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getNatDnatRulesV2(args: GetNatDnatRulesV2Args, opts?: InvokeOptions): Promise<GetNatDnatRulesV2Result>
function getNatDnatRulesV2Output(args: GetNatDnatRulesV2OutputArgs, opts?: InvokeOptions): Output<GetNatDnatRulesV2Result>
def get_nat_dnat_rules_v2(description: Optional[str] = None,
external_service_port: Optional[float] = None,
floating_ip_address: Optional[str] = None,
floating_ip_id: Optional[str] = None,
gateway_id: Optional[str] = None,
id: Optional[str] = None,
internal_service_port: Optional[float] = None,
port_id: Optional[str] = None,
private_ip: Optional[str] = None,
protocol: Optional[str] = None,
rule_id: Optional[str] = None,
status: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetNatDnatRulesV2Result
def get_nat_dnat_rules_v2_output(description: Optional[pulumi.Input[str]] = None,
external_service_port: Optional[pulumi.Input[float]] = None,
floating_ip_address: Optional[pulumi.Input[str]] = None,
floating_ip_id: Optional[pulumi.Input[str]] = None,
gateway_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
internal_service_port: Optional[pulumi.Input[float]] = None,
port_id: Optional[pulumi.Input[str]] = None,
private_ip: Optional[pulumi.Input[str]] = None,
protocol: Optional[pulumi.Input[str]] = None,
rule_id: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetNatDnatRulesV2Result]
func GetNatDnatRulesV2(ctx *Context, args *GetNatDnatRulesV2Args, opts ...InvokeOption) (*GetNatDnatRulesV2Result, error)
func GetNatDnatRulesV2Output(ctx *Context, args *GetNatDnatRulesV2OutputArgs, opts ...InvokeOption) GetNatDnatRulesV2ResultOutput
> Note: This function is named GetNatDnatRulesV2
in the Go SDK.
public static class GetNatDnatRulesV2
{
public static Task<GetNatDnatRulesV2Result> InvokeAsync(GetNatDnatRulesV2Args args, InvokeOptions? opts = null)
public static Output<GetNatDnatRulesV2Result> Invoke(GetNatDnatRulesV2InvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetNatDnatRulesV2Result> getNatDnatRulesV2(GetNatDnatRulesV2Args args, InvokeOptions options)
public static Output<GetNatDnatRulesV2Result> getNatDnatRulesV2(GetNatDnatRulesV2Args args, InvokeOptions options)
fn::invoke:
function: opentelekomcloud:index/getNatDnatRulesV2:getNatDnatRulesV2
arguments:
# arguments dictionary
The following arguments are supported:
- Description string
- Specifies the description of the DNAT rule.
- External
Service doublePort - Specifies the port of the EIP associated with the DNAT rule.
- Floating
Ip stringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- Floating
Ip stringId - Specifies the ID of the EIP associated with the DNAT rule.
- Gateway
Id string - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- Id string
- The ID of the DNAT rule.
- Internal
Service doublePort - Specifies the port of the backend instance to which the DNAT rule belongs.
- Port
Id string - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- Private
Ip string - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- Protocol string
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- Rule
Id string - Specifies the ID of the DNAT rule.
- Status string
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- Description string
- Specifies the description of the DNAT rule.
- External
Service float64Port - Specifies the port of the EIP associated with the DNAT rule.
- Floating
Ip stringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- Floating
Ip stringId - Specifies the ID of the EIP associated with the DNAT rule.
- Gateway
Id string - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- Id string
- The ID of the DNAT rule.
- Internal
Service float64Port - Specifies the port of the backend instance to which the DNAT rule belongs.
- Port
Id string - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- Private
Ip string - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- Protocol string
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- Rule
Id string - Specifies the ID of the DNAT rule.
- Status string
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- description String
- Specifies the description of the DNAT rule.
- external
Service DoublePort - Specifies the port of the EIP associated with the DNAT rule.
- floating
Ip StringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- floating
Ip StringId - Specifies the ID of the EIP associated with the DNAT rule.
- gateway
Id String - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- id String
- The ID of the DNAT rule.
- internal
Service DoublePort - Specifies the port of the backend instance to which the DNAT rule belongs.
- port
Id String - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- private
Ip String - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- protocol String
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- rule
Id String - Specifies the ID of the DNAT rule.
- status String
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- description string
- Specifies the description of the DNAT rule.
- external
Service numberPort - Specifies the port of the EIP associated with the DNAT rule.
- floating
Ip stringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- floating
Ip stringId - Specifies the ID of the EIP associated with the DNAT rule.
- gateway
Id string - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- id string
- The ID of the DNAT rule.
- internal
Service numberPort - Specifies the port of the backend instance to which the DNAT rule belongs.
- port
Id string - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- private
Ip string - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- protocol string
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- rule
Id string - Specifies the ID of the DNAT rule.
- status string
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- description str
- Specifies the description of the DNAT rule.
- external_
service_ floatport - Specifies the port of the EIP associated with the DNAT rule.
- floating_
ip_ straddress - Specifies the IP address of the EIP associated with the DNAT rule.
- floating_
ip_ strid - Specifies the ID of the EIP associated with the DNAT rule.
- gateway_
id str - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- id str
- The ID of the DNAT rule.
- internal_
service_ floatport - Specifies the port of the backend instance to which the DNAT rule belongs.
- port_
id str - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- private_
ip str - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- protocol str
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- rule_
id str - Specifies the ID of the DNAT rule.
- status str
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- description String
- Specifies the description of the DNAT rule.
- external
Service NumberPort - Specifies the port of the EIP associated with the DNAT rule.
- floating
Ip StringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- floating
Ip StringId - Specifies the ID of the EIP associated with the DNAT rule.
- gateway
Id String - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- id String
- The ID of the DNAT rule.
- internal
Service NumberPort - Specifies the port of the backend instance to which the DNAT rule belongs.
- port
Id String - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- private
Ip String - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- protocol String
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- rule
Id String - Specifies the ID of the DNAT rule.
- status String
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
getNatDnatRulesV2 Result
The following output properties are available:
- Id string
- The ID of the DNAT rule.
- Region string
- The region where the DNAT rules are located.
- Rules
List<Get
Nat Dnat Rules V2Rule> - The list ot the DNAT rules. The rules structure is documented below.
- Description string
- The description of the DNAT rule.
- External
Service doublePort - The port of the EIP associated with the DNAT rule belongs.
- Floating
Ip stringAddress - The IP address of the EIP associated with the DNAT rule.
- Floating
Ip stringId - The ID of the EIP associated with the DNAT rule.
- Gateway
Id string - The ID of the NAT gateway to which the DNAT rule belongs.
- Internal
Service doublePort - The port of the backend instance to which the DNAT rule belongs.
- Port
Id string - The port ID of the backend instance to which the DNAT rule belongs.
- Private
Ip string - The private IP address of the backend instance to which the DNAT rule belongs.
- Protocol string
- The protocol type of the DNAT rule.
- Rule
Id string - Status string
- The status of the DNAT rule.
- Id string
- The ID of the DNAT rule.
- Region string
- The region where the DNAT rules are located.
- Rules
[]Get
Nat Dnat Rules V2Rule - The list ot the DNAT rules. The rules structure is documented below.
- Description string
- The description of the DNAT rule.
- External
Service float64Port - The port of the EIP associated with the DNAT rule belongs.
- Floating
Ip stringAddress - The IP address of the EIP associated with the DNAT rule.
- Floating
Ip stringId - The ID of the EIP associated with the DNAT rule.
- Gateway
Id string - The ID of the NAT gateway to which the DNAT rule belongs.
- Internal
Service float64Port - The port of the backend instance to which the DNAT rule belongs.
- Port
Id string - The port ID of the backend instance to which the DNAT rule belongs.
- Private
Ip string - The private IP address of the backend instance to which the DNAT rule belongs.
- Protocol string
- The protocol type of the DNAT rule.
- Rule
Id string - Status string
- The status of the DNAT rule.
- id String
- The ID of the DNAT rule.
- region String
- The region where the DNAT rules are located.
- rules
List<Get
Nat Dnat Rules V2Rule> - The list ot the DNAT rules. The rules structure is documented below.
- description String
- The description of the DNAT rule.
- external
Service DoublePort - The port of the EIP associated with the DNAT rule belongs.
- floating
Ip StringAddress - The IP address of the EIP associated with the DNAT rule.
- floating
Ip StringId - The ID of the EIP associated with the DNAT rule.
- gateway
Id String - The ID of the NAT gateway to which the DNAT rule belongs.
- internal
Service DoublePort - The port of the backend instance to which the DNAT rule belongs.
- port
Id String - The port ID of the backend instance to which the DNAT rule belongs.
- private
Ip String - The private IP address of the backend instance to which the DNAT rule belongs.
- protocol String
- The protocol type of the DNAT rule.
- rule
Id String - status String
- The status of the DNAT rule.
- id string
- The ID of the DNAT rule.
- region string
- The region where the DNAT rules are located.
- rules
Get
Nat Dnat Rules V2Rule[] - The list ot the DNAT rules. The rules structure is documented below.
- description string
- The description of the DNAT rule.
- external
Service numberPort - The port of the EIP associated with the DNAT rule belongs.
- floating
Ip stringAddress - The IP address of the EIP associated with the DNAT rule.
- floating
Ip stringId - The ID of the EIP associated with the DNAT rule.
- gateway
Id string - The ID of the NAT gateway to which the DNAT rule belongs.
- internal
Service numberPort - The port of the backend instance to which the DNAT rule belongs.
- port
Id string - The port ID of the backend instance to which the DNAT rule belongs.
- private
Ip string - The private IP address of the backend instance to which the DNAT rule belongs.
- protocol string
- The protocol type of the DNAT rule.
- rule
Id string - status string
- The status of the DNAT rule.
- id str
- The ID of the DNAT rule.
- region str
- The region where the DNAT rules are located.
- rules
Sequence[Get
Nat Dnat Rules V2Rule] - The list ot the DNAT rules. The rules structure is documented below.
- description str
- The description of the DNAT rule.
- external_
service_ floatport - The port of the EIP associated with the DNAT rule belongs.
- floating_
ip_ straddress - The IP address of the EIP associated with the DNAT rule.
- floating_
ip_ strid - The ID of the EIP associated with the DNAT rule.
- gateway_
id str - The ID of the NAT gateway to which the DNAT rule belongs.
- internal_
service_ floatport - The port of the backend instance to which the DNAT rule belongs.
- port_
id str - The port ID of the backend instance to which the DNAT rule belongs.
- private_
ip str - The private IP address of the backend instance to which the DNAT rule belongs.
- protocol str
- The protocol type of the DNAT rule.
- rule_
id str - status str
- The status of the DNAT rule.
- id String
- The ID of the DNAT rule.
- region String
- The region where the DNAT rules are located.
- rules List<Property Map>
- The list ot the DNAT rules. The rules structure is documented below.
- description String
- The description of the DNAT rule.
- external
Service NumberPort - The port of the EIP associated with the DNAT rule belongs.
- floating
Ip StringAddress - The IP address of the EIP associated with the DNAT rule.
- floating
Ip StringId - The ID of the EIP associated with the DNAT rule.
- gateway
Id String - The ID of the NAT gateway to which the DNAT rule belongs.
- internal
Service NumberPort - The port of the backend instance to which the DNAT rule belongs.
- port
Id String - The port ID of the backend instance to which the DNAT rule belongs.
- private
Ip String - The private IP address of the backend instance to which the DNAT rule belongs.
- protocol String
- The protocol type of the DNAT rule.
- rule
Id String - status String
- The status of the DNAT rule.
Supporting Types
GetNatDnatRulesV2Rule
- Created
At string - The creation time of the DNAT rule.
- Description string
- Specifies the description of the DNAT rule.
- External
Service doublePort - Specifies the port of the EIP associated with the DNAT rule.
- Floating
Ip stringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- Floating
Ip stringId - Specifies the ID of the EIP associated with the DNAT rule.
- Gateway
Id string - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- Id string
- The ID of the DNAT rule.
- Internal
Service doublePort - Specifies the port of the backend instance to which the DNAT rule belongs.
- Port
Id string - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- Private
Ip string - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- Protocol string
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- Status string
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- Created
At string - The creation time of the DNAT rule.
- Description string
- Specifies the description of the DNAT rule.
- External
Service float64Port - Specifies the port of the EIP associated with the DNAT rule.
- Floating
Ip stringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- Floating
Ip stringId - Specifies the ID of the EIP associated with the DNAT rule.
- Gateway
Id string - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- Id string
- The ID of the DNAT rule.
- Internal
Service float64Port - Specifies the port of the backend instance to which the DNAT rule belongs.
- Port
Id string - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- Private
Ip string - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- Protocol string
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- Status string
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- created
At String - The creation time of the DNAT rule.
- description String
- Specifies the description of the DNAT rule.
- external
Service DoublePort - Specifies the port of the EIP associated with the DNAT rule.
- floating
Ip StringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- floating
Ip StringId - Specifies the ID of the EIP associated with the DNAT rule.
- gateway
Id String - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- id String
- The ID of the DNAT rule.
- internal
Service DoublePort - Specifies the port of the backend instance to which the DNAT rule belongs.
- port
Id String - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- private
Ip String - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- protocol String
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- status String
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- created
At string - The creation time of the DNAT rule.
- description string
- Specifies the description of the DNAT rule.
- external
Service numberPort - Specifies the port of the EIP associated with the DNAT rule.
- floating
Ip stringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- floating
Ip stringId - Specifies the ID of the EIP associated with the DNAT rule.
- gateway
Id string - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- id string
- The ID of the DNAT rule.
- internal
Service numberPort - Specifies the port of the backend instance to which the DNAT rule belongs.
- port
Id string - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- private
Ip string - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- protocol string
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- status string
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- created_
at str - The creation time of the DNAT rule.
- description str
- Specifies the description of the DNAT rule.
- external_
service_ floatport - Specifies the port of the EIP associated with the DNAT rule.
- floating_
ip_ straddress - Specifies the IP address of the EIP associated with the DNAT rule.
- floating_
ip_ strid - Specifies the ID of the EIP associated with the DNAT rule.
- gateway_
id str - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- id str
- The ID of the DNAT rule.
- internal_
service_ floatport - Specifies the port of the backend instance to which the DNAT rule belongs.
- port_
id str - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- private_
ip str - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- protocol str
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- status str
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
- created
At String - The creation time of the DNAT rule.
- description String
- Specifies the description of the DNAT rule.
- external
Service NumberPort - Specifies the port of the EIP associated with the DNAT rule.
- floating
Ip StringAddress - Specifies the IP address of the EIP associated with the DNAT rule.
- floating
Ip StringId - Specifies the ID of the EIP associated with the DNAT rule.
- gateway
Id String - Specifies the ID of the NAT gateway to which the DNAT rule belongs.
- id String
- The ID of the DNAT rule.
- internal
Service NumberPort - Specifies the port of the backend instance to which the DNAT rule belongs.
- port
Id String - Specifies the port ID of the backend instance to which the DNAT rule belongs.
- private
Ip String - Specifies the private IP address of the backend instance to which the DNAT rule belongs.
- protocol String
- Specifies the protocol type of the DNAT rule. The value can be one of the following:
- status String
- Specifies the status of the DNAT rule.
The value can be one of the following:
ACTIVE
: The SNAT rule is available.EIP_FREEZED
: The EIP is frozen associated with SNAT rule.INACTIVE
: The SNAT rule is unavailable.
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloud
Terraform Provider.
opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud