1. Packages
  2. Google Cloud Native
  3. API Docs
  4. compute
  5. compute/alpha
  6. GlobalPublicDelegatedPrefix

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.compute/alpha.GlobalPublicDelegatedPrefix

Explore with Pulumi AI

Creates a global PublicDelegatedPrefix in the specified project using the parameters that are included in the request.

Create GlobalPublicDelegatedPrefix Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new GlobalPublicDelegatedPrefix(name: string, args?: GlobalPublicDelegatedPrefixArgs, opts?: CustomResourceOptions);
@overload
def GlobalPublicDelegatedPrefix(resource_name: str,
                                args: Optional[GlobalPublicDelegatedPrefixArgs] = None,
                                opts: Optional[ResourceOptions] = None)

@overload
def GlobalPublicDelegatedPrefix(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                allocatable_prefix_length: Optional[int] = None,
                                description: Optional[str] = None,
                                ip_cidr_range: Optional[str] = None,
                                is_live_migration: Optional[bool] = None,
                                mode: Optional[GlobalPublicDelegatedPrefixMode] = None,
                                name: Optional[str] = None,
                                parent_prefix: Optional[str] = None,
                                project: Optional[str] = None,
                                public_delegated_sub_prefixs: Optional[Sequence[PublicDelegatedPrefixPublicDelegatedSubPrefixArgs]] = None,
                                request_id: Optional[str] = None)
func NewGlobalPublicDelegatedPrefix(ctx *Context, name string, args *GlobalPublicDelegatedPrefixArgs, opts ...ResourceOption) (*GlobalPublicDelegatedPrefix, error)
public GlobalPublicDelegatedPrefix(string name, GlobalPublicDelegatedPrefixArgs? args = null, CustomResourceOptions? opts = null)
public GlobalPublicDelegatedPrefix(String name, GlobalPublicDelegatedPrefixArgs args)
public GlobalPublicDelegatedPrefix(String name, GlobalPublicDelegatedPrefixArgs args, CustomResourceOptions options)
type: google-native:compute/alpha:GlobalPublicDelegatedPrefix
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args GlobalPublicDelegatedPrefixArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args GlobalPublicDelegatedPrefixArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args GlobalPublicDelegatedPrefixArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args GlobalPublicDelegatedPrefixArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GlobalPublicDelegatedPrefixArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var globalPublicDelegatedPrefixResource = new GoogleNative.Compute.Alpha.GlobalPublicDelegatedPrefix("globalPublicDelegatedPrefixResource", new()
{
    AllocatablePrefixLength = 0,
    Description = "string",
    IpCidrRange = "string",
    IsLiveMigration = false,
    Mode = GoogleNative.Compute.Alpha.GlobalPublicDelegatedPrefixMode.Delegation,
    Name = "string",
    ParentPrefix = "string",
    Project = "string",
    PublicDelegatedSubPrefixs = new[]
    {
        new GoogleNative.Compute.Alpha.Inputs.PublicDelegatedPrefixPublicDelegatedSubPrefixArgs
        {
            AllocatablePrefixLength = 0,
            DelegateeProject = "string",
            Description = "string",
            IpCidrRange = "string",
            IsAddress = false,
            Mode = GoogleNative.Compute.Alpha.PublicDelegatedPrefixPublicDelegatedSubPrefixMode.Delegation,
            Name = "string",
        },
    },
    RequestId = "string",
});
Copy
example, err := compute.NewGlobalPublicDelegatedPrefix(ctx, "globalPublicDelegatedPrefixResource", &compute.GlobalPublicDelegatedPrefixArgs{
	AllocatablePrefixLength: pulumi.Int(0),
	Description:             pulumi.String("string"),
	IpCidrRange:             pulumi.String("string"),
	IsLiveMigration:         pulumi.Bool(false),
	Mode:                    compute.GlobalPublicDelegatedPrefixModeDelegation,
	Name:                    pulumi.String("string"),
	ParentPrefix:            pulumi.String("string"),
	Project:                 pulumi.String("string"),
	PublicDelegatedSubPrefixs: compute.PublicDelegatedPrefixPublicDelegatedSubPrefixArray{
		&compute.PublicDelegatedPrefixPublicDelegatedSubPrefixArgs{
			AllocatablePrefixLength: pulumi.Int(0),
			DelegateeProject:        pulumi.String("string"),
			Description:             pulumi.String("string"),
			IpCidrRange:             pulumi.String("string"),
			IsAddress:               pulumi.Bool(false),
			Mode:                    compute.PublicDelegatedPrefixPublicDelegatedSubPrefixModeDelegation,
			Name:                    pulumi.String("string"),
		},
	},
	RequestId: pulumi.String("string"),
})
Copy
var globalPublicDelegatedPrefixResource = new GlobalPublicDelegatedPrefix("globalPublicDelegatedPrefixResource", GlobalPublicDelegatedPrefixArgs.builder()
    .allocatablePrefixLength(0)
    .description("string")
    .ipCidrRange("string")
    .isLiveMigration(false)
    .mode("DELEGATION")
    .name("string")
    .parentPrefix("string")
    .project("string")
    .publicDelegatedSubPrefixs(PublicDelegatedPrefixPublicDelegatedSubPrefixArgs.builder()
        .allocatablePrefixLength(0)
        .delegateeProject("string")
        .description("string")
        .ipCidrRange("string")
        .isAddress(false)
        .mode("DELEGATION")
        .name("string")
        .build())
    .requestId("string")
    .build());
Copy
global_public_delegated_prefix_resource = google_native.compute.alpha.GlobalPublicDelegatedPrefix("globalPublicDelegatedPrefixResource",
    allocatable_prefix_length=0,
    description="string",
    ip_cidr_range="string",
    is_live_migration=False,
    mode=google_native.compute.alpha.GlobalPublicDelegatedPrefixMode.DELEGATION,
    name="string",
    parent_prefix="string",
    project="string",
    public_delegated_sub_prefixs=[{
        "allocatable_prefix_length": 0,
        "delegatee_project": "string",
        "description": "string",
        "ip_cidr_range": "string",
        "is_address": False,
        "mode": google_native.compute.alpha.PublicDelegatedPrefixPublicDelegatedSubPrefixMode.DELEGATION,
        "name": "string",
    }],
    request_id="string")
Copy
const globalPublicDelegatedPrefixResource = new google_native.compute.alpha.GlobalPublicDelegatedPrefix("globalPublicDelegatedPrefixResource", {
    allocatablePrefixLength: 0,
    description: "string",
    ipCidrRange: "string",
    isLiveMigration: false,
    mode: google_native.compute.alpha.GlobalPublicDelegatedPrefixMode.Delegation,
    name: "string",
    parentPrefix: "string",
    project: "string",
    publicDelegatedSubPrefixs: [{
        allocatablePrefixLength: 0,
        delegateeProject: "string",
        description: "string",
        ipCidrRange: "string",
        isAddress: false,
        mode: google_native.compute.alpha.PublicDelegatedPrefixPublicDelegatedSubPrefixMode.Delegation,
        name: "string",
    }],
    requestId: "string",
});
Copy
type: google-native:compute/alpha:GlobalPublicDelegatedPrefix
properties:
    allocatablePrefixLength: 0
    description: string
    ipCidrRange: string
    isLiveMigration: false
    mode: DELEGATION
    name: string
    parentPrefix: string
    project: string
    publicDelegatedSubPrefixs:
        - allocatablePrefixLength: 0
          delegateeProject: string
          description: string
          ipCidrRange: string
          isAddress: false
          mode: DELEGATION
          name: string
    requestId: string
Copy

GlobalPublicDelegatedPrefix Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The GlobalPublicDelegatedPrefix resource accepts the following input properties:

AllocatablePrefixLength int
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
Description string
An optional description of this resource. Provide this property when you create the resource.
IpCidrRange string
The IP address range, in CIDR format, represented by this public delegated prefix.
IsLiveMigration bool
If true, the prefix will be live migrated.
Mode Pulumi.GoogleNative.Compute.Alpha.GlobalPublicDelegatedPrefixMode
The public delegated prefix mode for IPv6 only.
Name string
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]([-a-z0-9]*[a-z0-9])? 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.
ParentPrefix string
The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
Project Changes to this property will trigger replacement. string
PublicDelegatedSubPrefixs List<Pulumi.GoogleNative.Compute.Alpha.Inputs.PublicDelegatedPrefixPublicDelegatedSubPrefix>
The list of sub public delegated prefixes that exist for this public delegated prefix.
RequestId string
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
AllocatablePrefixLength int
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
Description string
An optional description of this resource. Provide this property when you create the resource.
IpCidrRange string
The IP address range, in CIDR format, represented by this public delegated prefix.
IsLiveMigration bool
If true, the prefix will be live migrated.
Mode GlobalPublicDelegatedPrefixMode
The public delegated prefix mode for IPv6 only.
Name string
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]([-a-z0-9]*[a-z0-9])? 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.
ParentPrefix string
The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
Project Changes to this property will trigger replacement. string
PublicDelegatedSubPrefixs []PublicDelegatedPrefixPublicDelegatedSubPrefixArgs
The list of sub public delegated prefixes that exist for this public delegated prefix.
RequestId string
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
allocatablePrefixLength Integer
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
description String
An optional description of this resource. Provide this property when you create the resource.
ipCidrRange String
The IP address range, in CIDR format, represented by this public delegated prefix.
isLiveMigration Boolean
If true, the prefix will be live migrated.
mode GlobalPublicDelegatedPrefixMode
The public delegated prefix mode for IPv6 only.
name String
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]([-a-z0-9]*[a-z0-9])? 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.
parentPrefix String
The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
project Changes to this property will trigger replacement. String
publicDelegatedSubPrefixs List<PublicDelegatedPrefixPublicDelegatedSubPrefix>
The list of sub public delegated prefixes that exist for this public delegated prefix.
requestId String
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
allocatablePrefixLength number
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
description string
An optional description of this resource. Provide this property when you create the resource.
ipCidrRange string
The IP address range, in CIDR format, represented by this public delegated prefix.
isLiveMigration boolean
If true, the prefix will be live migrated.
mode GlobalPublicDelegatedPrefixMode
The public delegated prefix mode for IPv6 only.
name string
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]([-a-z0-9]*[a-z0-9])? 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.
parentPrefix string
The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
project Changes to this property will trigger replacement. string
publicDelegatedSubPrefixs PublicDelegatedPrefixPublicDelegatedSubPrefix[]
The list of sub public delegated prefixes that exist for this public delegated prefix.
requestId string
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
allocatable_prefix_length int
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
description str
An optional description of this resource. Provide this property when you create the resource.
ip_cidr_range str
The IP address range, in CIDR format, represented by this public delegated prefix.
is_live_migration bool
If true, the prefix will be live migrated.
mode GlobalPublicDelegatedPrefixMode
The public delegated prefix mode for IPv6 only.
name str
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]([-a-z0-9]*[a-z0-9])? 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.
parent_prefix str
The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
project Changes to this property will trigger replacement. str
public_delegated_sub_prefixs Sequence[PublicDelegatedPrefixPublicDelegatedSubPrefixArgs]
The list of sub public delegated prefixes that exist for this public delegated prefix.
request_id str
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
allocatablePrefixLength Number
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
description String
An optional description of this resource. Provide this property when you create the resource.
ipCidrRange String
The IP address range, in CIDR format, represented by this public delegated prefix.
isLiveMigration Boolean
If true, the prefix will be live migrated.
mode "DELEGATION" | "EXTERNAL_IPV6_FORWARDING_RULE_CREATION"
The public delegated prefix mode for IPv6 only.
name String
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]([-a-z0-9]*[a-z0-9])? 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.
parentPrefix String
The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
project Changes to this property will trigger replacement. String
publicDelegatedSubPrefixs List<Property Map>
The list of sub public delegated prefixes that exist for this public delegated prefix.
requestId String
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).

Outputs

All input properties are implicitly available as output properties. Additionally, the GlobalPublicDelegatedPrefix resource produces the following output properties:

ByoipApiVersion string
The version of BYOIP API.
CreationTimestamp string
Creation timestamp in RFC3339 text format.
Fingerprint string
Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a new PublicDelegatedPrefix. An up-to-date fingerprint must be provided in order to update the PublicDelegatedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicDelegatedPrefix.
Id string
The provider-assigned unique ID for this managed resource.
Kind string
Type of the resource. Always compute#publicDelegatedPrefix for public delegated prefixes.
Region string
URL of the region where the public delegated prefix resides. This field applies only to the region resource. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
SelfLink string
Server-defined URL for the resource.
SelfLinkWithId string
Server-defined URL with id for the resource.
Status string
The status of the public delegated prefix, which can be one of following values: - INITIALIZING The public delegated prefix is being initialized and addresses cannot be created yet. - READY_TO_ANNOUNCE The public delegated prefix is a live migration prefix and is active. - ANNOUNCED The public delegated prefix is active. - DELETING The public delegated prefix is being deprovsioned.
ByoipApiVersion string
The version of BYOIP API.
CreationTimestamp string
Creation timestamp in RFC3339 text format.
Fingerprint string
Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a new PublicDelegatedPrefix. An up-to-date fingerprint must be provided in order to update the PublicDelegatedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicDelegatedPrefix.
Id string
The provider-assigned unique ID for this managed resource.
Kind string
Type of the resource. Always compute#publicDelegatedPrefix for public delegated prefixes.
Region string
URL of the region where the public delegated prefix resides. This field applies only to the region resource. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
SelfLink string
Server-defined URL for the resource.
SelfLinkWithId string
Server-defined URL with id for the resource.
Status string
The status of the public delegated prefix, which can be one of following values: - INITIALIZING The public delegated prefix is being initialized and addresses cannot be created yet. - READY_TO_ANNOUNCE The public delegated prefix is a live migration prefix and is active. - ANNOUNCED The public delegated prefix is active. - DELETING The public delegated prefix is being deprovsioned.
byoipApiVersion String
The version of BYOIP API.
creationTimestamp String
Creation timestamp in RFC3339 text format.
fingerprint String
Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a new PublicDelegatedPrefix. An up-to-date fingerprint must be provided in order to update the PublicDelegatedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicDelegatedPrefix.
id String
The provider-assigned unique ID for this managed resource.
kind String
Type of the resource. Always compute#publicDelegatedPrefix for public delegated prefixes.
region String
URL of the region where the public delegated prefix resides. This field applies only to the region resource. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
selfLink String
Server-defined URL for the resource.
selfLinkWithId String
Server-defined URL with id for the resource.
status String
The status of the public delegated prefix, which can be one of following values: - INITIALIZING The public delegated prefix is being initialized and addresses cannot be created yet. - READY_TO_ANNOUNCE The public delegated prefix is a live migration prefix and is active. - ANNOUNCED The public delegated prefix is active. - DELETING The public delegated prefix is being deprovsioned.
byoipApiVersion string
The version of BYOIP API.
creationTimestamp string
Creation timestamp in RFC3339 text format.
fingerprint string
Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a new PublicDelegatedPrefix. An up-to-date fingerprint must be provided in order to update the PublicDelegatedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicDelegatedPrefix.
id string
The provider-assigned unique ID for this managed resource.
kind string
Type of the resource. Always compute#publicDelegatedPrefix for public delegated prefixes.
region string
URL of the region where the public delegated prefix resides. This field applies only to the region resource. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
selfLink string
Server-defined URL for the resource.
selfLinkWithId string
Server-defined URL with id for the resource.
status string
The status of the public delegated prefix, which can be one of following values: - INITIALIZING The public delegated prefix is being initialized and addresses cannot be created yet. - READY_TO_ANNOUNCE The public delegated prefix is a live migration prefix and is active. - ANNOUNCED The public delegated prefix is active. - DELETING The public delegated prefix is being deprovsioned.
byoip_api_version str
The version of BYOIP API.
creation_timestamp str
Creation timestamp in RFC3339 text format.
fingerprint str
Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a new PublicDelegatedPrefix. An up-to-date fingerprint must be provided in order to update the PublicDelegatedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicDelegatedPrefix.
id str
The provider-assigned unique ID for this managed resource.
kind str
Type of the resource. Always compute#publicDelegatedPrefix for public delegated prefixes.
region str
URL of the region where the public delegated prefix resides. This field applies only to the region resource. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
self_link str
Server-defined URL for the resource.
self_link_with_id str
Server-defined URL with id for the resource.
status str
The status of the public delegated prefix, which can be one of following values: - INITIALIZING The public delegated prefix is being initialized and addresses cannot be created yet. - READY_TO_ANNOUNCE The public delegated prefix is a live migration prefix and is active. - ANNOUNCED The public delegated prefix is active. - DELETING The public delegated prefix is being deprovsioned.
byoipApiVersion String
The version of BYOIP API.
creationTimestamp String
Creation timestamp in RFC3339 text format.
fingerprint String
Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a new PublicDelegatedPrefix. An up-to-date fingerprint must be provided in order to update the PublicDelegatedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicDelegatedPrefix.
id String
The provider-assigned unique ID for this managed resource.
kind String
Type of the resource. Always compute#publicDelegatedPrefix for public delegated prefixes.
region String
URL of the region where the public delegated prefix resides. This field applies only to the region resource. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
selfLink String
Server-defined URL for the resource.
selfLinkWithId String
Server-defined URL with id for the resource.
status String
The status of the public delegated prefix, which can be one of following values: - INITIALIZING The public delegated prefix is being initialized and addresses cannot be created yet. - READY_TO_ANNOUNCE The public delegated prefix is a live migration prefix and is active. - ANNOUNCED The public delegated prefix is active. - DELETING The public delegated prefix is being deprovsioned.

Supporting Types

GlobalPublicDelegatedPrefixMode
, GlobalPublicDelegatedPrefixModeArgs

Delegation
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
ExternalIpv6ForwardingRuleCreation
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
GlobalPublicDelegatedPrefixModeDelegation
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
GlobalPublicDelegatedPrefixModeExternalIpv6ForwardingRuleCreation
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
Delegation
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
ExternalIpv6ForwardingRuleCreation
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
Delegation
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
ExternalIpv6ForwardingRuleCreation
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
DELEGATION
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
EXTERNAL_IPV6_FORWARDING_RULE_CREATION
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
"DELEGATION"
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
"EXTERNAL_IPV6_FORWARDING_RULE_CREATION"
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.

PublicDelegatedPrefixPublicDelegatedSubPrefix
, PublicDelegatedPrefixPublicDelegatedSubPrefixArgs

AllocatablePrefixLength int
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
DelegateeProject string
Name of the project scoping this PublicDelegatedSubPrefix.
Description string
An optional description of this resource. Provide this property when you create the resource.
IpCidrRange string
The IP address range, in CIDR format, represented by this sub public delegated prefix.
IsAddress bool
Whether the sub prefix is delegated to create Address resources in the delegatee project.
Mode Pulumi.GoogleNative.Compute.Alpha.PublicDelegatedPrefixPublicDelegatedSubPrefixMode
The PublicDelegatedSubPrefix mode for IPv6 only.
Name string
The name of the sub public delegated prefix.
AllocatablePrefixLength int
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
DelegateeProject string
Name of the project scoping this PublicDelegatedSubPrefix.
Description string
An optional description of this resource. Provide this property when you create the resource.
IpCidrRange string
The IP address range, in CIDR format, represented by this sub public delegated prefix.
IsAddress bool
Whether the sub prefix is delegated to create Address resources in the delegatee project.
Mode PublicDelegatedPrefixPublicDelegatedSubPrefixMode
The PublicDelegatedSubPrefix mode for IPv6 only.
Name string
The name of the sub public delegated prefix.
allocatablePrefixLength Integer
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
delegateeProject String
Name of the project scoping this PublicDelegatedSubPrefix.
description String
An optional description of this resource. Provide this property when you create the resource.
ipCidrRange String
The IP address range, in CIDR format, represented by this sub public delegated prefix.
isAddress Boolean
Whether the sub prefix is delegated to create Address resources in the delegatee project.
mode PublicDelegatedPrefixPublicDelegatedSubPrefixMode
The PublicDelegatedSubPrefix mode for IPv6 only.
name String
The name of the sub public delegated prefix.
allocatablePrefixLength number
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
delegateeProject string
Name of the project scoping this PublicDelegatedSubPrefix.
description string
An optional description of this resource. Provide this property when you create the resource.
ipCidrRange string
The IP address range, in CIDR format, represented by this sub public delegated prefix.
isAddress boolean
Whether the sub prefix is delegated to create Address resources in the delegatee project.
mode PublicDelegatedPrefixPublicDelegatedSubPrefixMode
The PublicDelegatedSubPrefix mode for IPv6 only.
name string
The name of the sub public delegated prefix.
allocatable_prefix_length int
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
delegatee_project str
Name of the project scoping this PublicDelegatedSubPrefix.
description str
An optional description of this resource. Provide this property when you create the resource.
ip_cidr_range str
The IP address range, in CIDR format, represented by this sub public delegated prefix.
is_address bool
Whether the sub prefix is delegated to create Address resources in the delegatee project.
mode PublicDelegatedPrefixPublicDelegatedSubPrefixMode
The PublicDelegatedSubPrefix mode for IPv6 only.
name str
The name of the sub public delegated prefix.
allocatablePrefixLength Number
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
delegateeProject String
Name of the project scoping this PublicDelegatedSubPrefix.
description String
An optional description of this resource. Provide this property when you create the resource.
ipCidrRange String
The IP address range, in CIDR format, represented by this sub public delegated prefix.
isAddress Boolean
Whether the sub prefix is delegated to create Address resources in the delegatee project.
mode "DELEGATION" | "EXTERNAL_IPV6_FORWARDING_RULE_CREATION"
The PublicDelegatedSubPrefix mode for IPv6 only.
name String
The name of the sub public delegated prefix.

PublicDelegatedPrefixPublicDelegatedSubPrefixMode
, PublicDelegatedPrefixPublicDelegatedSubPrefixModeArgs

Delegation
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
ExternalIpv6ForwardingRuleCreation
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
PublicDelegatedPrefixPublicDelegatedSubPrefixModeDelegation
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
PublicDelegatedPrefixPublicDelegatedSubPrefixModeExternalIpv6ForwardingRuleCreation
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
Delegation
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
ExternalIpv6ForwardingRuleCreation
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
Delegation
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
ExternalIpv6ForwardingRuleCreation
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
DELEGATION
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
EXTERNAL_IPV6_FORWARDING_RULE_CREATION
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
"DELEGATION"
DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
"EXTERNAL_IPV6_FORWARDING_RULE_CREATION"
EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.

PublicDelegatedPrefixPublicDelegatedSubPrefixResponse
, PublicDelegatedPrefixPublicDelegatedSubPrefixResponseArgs

AllocatablePrefixLength This property is required. int
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
DelegateeProject This property is required. string
Name of the project scoping this PublicDelegatedSubPrefix.
Description This property is required. string
An optional description of this resource. Provide this property when you create the resource.
IpCidrRange This property is required. string
The IP address range, in CIDR format, represented by this sub public delegated prefix.
IsAddress This property is required. bool
Whether the sub prefix is delegated to create Address resources in the delegatee project.
Mode This property is required. string
The PublicDelegatedSubPrefix mode for IPv6 only.
Name This property is required. string
The name of the sub public delegated prefix.
Region This property is required. string
The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
Status This property is required. string
The status of the sub public delegated prefix.
AllocatablePrefixLength This property is required. int
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
DelegateeProject This property is required. string
Name of the project scoping this PublicDelegatedSubPrefix.
Description This property is required. string
An optional description of this resource. Provide this property when you create the resource.
IpCidrRange This property is required. string
The IP address range, in CIDR format, represented by this sub public delegated prefix.
IsAddress This property is required. bool
Whether the sub prefix is delegated to create Address resources in the delegatee project.
Mode This property is required. string
The PublicDelegatedSubPrefix mode for IPv6 only.
Name This property is required. string
The name of the sub public delegated prefix.
Region This property is required. string
The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
Status This property is required. string
The status of the sub public delegated prefix.
allocatablePrefixLength This property is required. Integer
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
delegateeProject This property is required. String
Name of the project scoping this PublicDelegatedSubPrefix.
description This property is required. String
An optional description of this resource. Provide this property when you create the resource.
ipCidrRange This property is required. String
The IP address range, in CIDR format, represented by this sub public delegated prefix.
isAddress This property is required. Boolean
Whether the sub prefix is delegated to create Address resources in the delegatee project.
mode This property is required. String
The PublicDelegatedSubPrefix mode for IPv6 only.
name This property is required. String
The name of the sub public delegated prefix.
region This property is required. String
The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
status This property is required. String
The status of the sub public delegated prefix.
allocatablePrefixLength This property is required. number
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
delegateeProject This property is required. string
Name of the project scoping this PublicDelegatedSubPrefix.
description This property is required. string
An optional description of this resource. Provide this property when you create the resource.
ipCidrRange This property is required. string
The IP address range, in CIDR format, represented by this sub public delegated prefix.
isAddress This property is required. boolean
Whether the sub prefix is delegated to create Address resources in the delegatee project.
mode This property is required. string
The PublicDelegatedSubPrefix mode for IPv6 only.
name This property is required. string
The name of the sub public delegated prefix.
region This property is required. string
The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
status This property is required. string
The status of the sub public delegated prefix.
allocatable_prefix_length This property is required. int
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
delegatee_project This property is required. str
Name of the project scoping this PublicDelegatedSubPrefix.
description This property is required. str
An optional description of this resource. Provide this property when you create the resource.
ip_cidr_range This property is required. str
The IP address range, in CIDR format, represented by this sub public delegated prefix.
is_address This property is required. bool
Whether the sub prefix is delegated to create Address resources in the delegatee project.
mode This property is required. str
The PublicDelegatedSubPrefix mode for IPv6 only.
name This property is required. str
The name of the sub public delegated prefix.
region This property is required. str
The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
status This property is required. str
The status of the sub public delegated prefix.
allocatablePrefixLength This property is required. Number
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
delegateeProject This property is required. String
Name of the project scoping this PublicDelegatedSubPrefix.
description This property is required. String
An optional description of this resource. Provide this property when you create the resource.
ipCidrRange This property is required. String
The IP address range, in CIDR format, represented by this sub public delegated prefix.
isAddress This property is required. Boolean
Whether the sub prefix is delegated to create Address resources in the delegatee project.
mode This property is required. String
The PublicDelegatedSubPrefix mode for IPv6 only.
name This property is required. String
The name of the sub public delegated prefix.
region This property is required. String
The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
status This property is required. String
The status of the sub public delegated prefix.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0