Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.compute/alpha.GlobalPublicDelegatedPrefix
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- Allocatable
Prefix intLength - 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.
- Ip
Cidr stringRange - The IP address range, in CIDR format, represented by this public delegated prefix.
- Is
Live boolMigration - If true, the prefix will be live migrated.
- Mode
Pulumi.
Google Native. Compute. Alpha. Global Public Delegated Prefix Mode - 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. - Parent
Prefix string - The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
- Project string
- Public
Delegated List<Pulumi.Sub Prefixs Google Native. Compute. Alpha. Inputs. Public Delegated Prefix Public Delegated Sub Prefix> - The list of sub public delegated prefixes that exist for this public delegated prefix.
- Request
Id 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 intLength - 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.
- Ip
Cidr stringRange - The IP address range, in CIDR format, represented by this public delegated prefix.
- Is
Live boolMigration - If true, the prefix will be live migrated.
- Mode
Global
Public Delegated Prefix Mode - 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. - Parent
Prefix string - The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
- Project string
- Public
Delegated []PublicSub Prefixs Delegated Prefix Public Delegated Sub Prefix Args - The list of sub public delegated prefixes that exist for this public delegated prefix.
- Request
Id 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 IntegerLength - 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.
- ip
Cidr StringRange - The IP address range, in CIDR format, represented by this public delegated prefix.
- is
Live BooleanMigration - If true, the prefix will be live migrated.
- mode
Global
Public Delegated Prefix Mode - 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. - parent
Prefix String - The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
- project String
- public
Delegated List<PublicSub Prefixs Delegated Prefix Public Delegated Sub Prefix> - The list of sub public delegated prefixes that exist for this public delegated prefix.
- request
Id 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 numberLength - 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.
- ip
Cidr stringRange - The IP address range, in CIDR format, represented by this public delegated prefix.
- is
Live booleanMigration - If true, the prefix will be live migrated.
- mode
Global
Public Delegated Prefix Mode - 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. - parent
Prefix string - The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
- project string
- public
Delegated PublicSub Prefixs Delegated Prefix Public Delegated Sub Prefix[] - The list of sub public delegated prefixes that exist for this public delegated prefix.
- request
Id 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_ intlength - 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_ strrange - The IP address range, in CIDR format, represented by this public delegated prefix.
- is_
live_ boolmigration - If true, the prefix will be live migrated.
- mode
Global
Public Delegated Prefix Mode - 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 str
- public_
delegated_ Sequence[Publicsub_ prefixs Delegated Prefix Public Delegated Sub Prefix Args] - 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).
- allocatable
Prefix NumberLength - 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.
- ip
Cidr StringRange - The IP address range, in CIDR format, represented by this public delegated prefix.
- is
Live BooleanMigration - 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. - parent
Prefix String - The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
- project String
- public
Delegated List<Property Map>Sub Prefixs - The list of sub public delegated prefixes that exist for this public delegated prefix.
- request
Id 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:
- Byoip
Api stringVersion - The version of BYOIP API.
- Creation
Timestamp 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.
- Self
Link string - Server-defined URL for the resource.
- Self
Link stringWith Id - 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 stringVersion - The version of BYOIP API.
- Creation
Timestamp 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.
- Self
Link string - Server-defined URL for the resource.
- Self
Link stringWith Id - 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 StringVersion - The version of BYOIP API.
- creation
Timestamp 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.
- self
Link String - Server-defined URL for the resource.
- self
Link StringWith Id - 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 stringVersion - The version of BYOIP API.
- creation
Timestamp 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.
- self
Link string - Server-defined URL for the resource.
- self
Link stringWith Id - 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_ strversion - 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_ strwith_ id - 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.
- byoip
Api StringVersion - The version of BYOIP API.
- creation
Timestamp 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.
- self
Link String - Server-defined URL for the resource.
- self
Link StringWith Id - 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.
- External
Ipv6Forwarding Rule Creation - EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
- Global
Public Delegated Prefix Mode Delegation - DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
- Global
Public Delegated Prefix Mode External Ipv6Forwarding 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
Ipv6Forwarding 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
Ipv6Forwarding 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.
- "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
- Allocatable
Prefix intLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- Delegatee
Project string - Name of the project scoping this PublicDelegatedSubPrefix.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Ip
Cidr stringRange - 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
Pulumi.
Google Native. Compute. Alpha. Public Delegated Prefix Public Delegated Sub Prefix Mode - The PublicDelegatedSubPrefix mode for IPv6 only.
- Name string
- The name of the sub public delegated prefix.
- Allocatable
Prefix intLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- Delegatee
Project string - Name of the project scoping this PublicDelegatedSubPrefix.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Ip
Cidr stringRange - 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
Public
Delegated Prefix Public Delegated Sub Prefix Mode - The PublicDelegatedSubPrefix mode for IPv6 only.
- Name string
- The name of the sub public delegated prefix.
- allocatable
Prefix IntegerLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- delegatee
Project String - Name of the project scoping this PublicDelegatedSubPrefix.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- ip
Cidr StringRange - The IP address range, in CIDR format, represented by this sub public delegated prefix.
- is
Address Boolean - Whether the sub prefix is delegated to create Address resources in the delegatee project.
- mode
Public
Delegated Prefix Public Delegated Sub Prefix Mode - The PublicDelegatedSubPrefix mode for IPv6 only.
- name String
- The name of the sub public delegated prefix.
- allocatable
Prefix numberLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- delegatee
Project string - Name of the project scoping this PublicDelegatedSubPrefix.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- ip
Cidr stringRange - The IP address range, in CIDR format, represented by this sub public delegated prefix.
- is
Address boolean - Whether the sub prefix is delegated to create Address resources in the delegatee project.
- mode
Public
Delegated Prefix Public Delegated Sub Prefix Mode - The PublicDelegatedSubPrefix mode for IPv6 only.
- name string
- The name of the sub public delegated prefix.
- allocatable_
prefix_ intlength - 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_ strrange - 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
Public
Delegated Prefix Public Delegated Sub Prefix Mode - The PublicDelegatedSubPrefix mode for IPv6 only.
- name str
- The name of the sub public delegated prefix.
- allocatable
Prefix NumberLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- delegatee
Project String - Name of the project scoping this PublicDelegatedSubPrefix.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- ip
Cidr StringRange - The IP address range, in CIDR format, represented by this sub public delegated prefix.
- is
Address 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.
- External
Ipv6Forwarding Rule Creation - EXTERNAL_IPV6_FORWARDING_RULE_CREATIONThe public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
- Public
Delegated Prefix Public Delegated Sub Prefix Mode Delegation - DELEGATIONThe public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
- Public
Delegated Prefix Public Delegated Sub Prefix Mode External Ipv6Forwarding 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
Ipv6Forwarding 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
Ipv6Forwarding 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.
- "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
- Allocatable
Prefix intLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- Delegatee
Project string - Name of the project scoping this PublicDelegatedSubPrefix.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Ip
Cidr stringRange - 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 string
- The PublicDelegatedSubPrefix mode for IPv6 only.
- Name string
- The name of the sub public delegated prefix.
- Region string
- The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
- Status string
- The status of the sub public delegated prefix.
- Allocatable
Prefix intLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- Delegatee
Project string - Name of the project scoping this PublicDelegatedSubPrefix.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Ip
Cidr stringRange - 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 string
- The PublicDelegatedSubPrefix mode for IPv6 only.
- Name string
- The name of the sub public delegated prefix.
- Region string
- The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
- Status string
- The status of the sub public delegated prefix.
- allocatable
Prefix IntegerLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- delegatee
Project String - Name of the project scoping this PublicDelegatedSubPrefix.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- ip
Cidr StringRange - The IP address range, in CIDR format, represented by this sub public delegated prefix.
- is
Address Boolean - Whether the sub prefix is delegated to create Address resources in the delegatee project.
- mode String
- The PublicDelegatedSubPrefix mode for IPv6 only.
- name String
- The name of the sub public delegated prefix.
- region String
- The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
- status String
- The status of the sub public delegated prefix.
- allocatable
Prefix numberLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- delegatee
Project string - Name of the project scoping this PublicDelegatedSubPrefix.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- ip
Cidr stringRange - The IP address range, in CIDR format, represented by this sub public delegated prefix.
- is
Address boolean - Whether the sub prefix is delegated to create Address resources in the delegatee project.
- mode string
- The PublicDelegatedSubPrefix mode for IPv6 only.
- name string
- The name of the sub public delegated prefix.
- region string
- The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
- status string
- The status of the sub public delegated prefix.
- allocatable_
prefix_ intlength - 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_ strrange - 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 str
- The PublicDelegatedSubPrefix mode for IPv6 only.
- name str
- The name of the sub public delegated prefix.
- region str
- The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
- status str
- The status of the sub public delegated prefix.
- allocatable
Prefix NumberLength - The allocatable prefix length supported by this PublicDelegatedSubPrefix.
- delegatee
Project String - Name of the project scoping this PublicDelegatedSubPrefix.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- ip
Cidr StringRange - The IP address range, in CIDR format, represented by this sub public delegated prefix.
- is
Address Boolean - Whether the sub prefix is delegated to create Address resources in the delegatee project.
- mode String
- The PublicDelegatedSubPrefix mode for IPv6 only.
- name String
- The name of the sub public delegated prefix.
- region String
- The region of the sub public delegated prefix if it is regional. If absent, the sub prefix is global.
- status String
- The status of the sub public delegated prefix.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.