Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.compute/v1.PublicAdvertisedPrefix
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a PublicAdvertisedPrefix in the specified project using the parameters that are included in the request.
Create PublicAdvertisedPrefix Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PublicAdvertisedPrefix(name: string, args?: PublicAdvertisedPrefixArgs, opts?: CustomResourceOptions);@overload
def PublicAdvertisedPrefix(resource_name: str,
                           args: Optional[PublicAdvertisedPrefixArgs] = None,
                           opts: Optional[ResourceOptions] = None)
@overload
def PublicAdvertisedPrefix(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           description: Optional[str] = None,
                           dns_verification_ip: Optional[str] = None,
                           ip_cidr_range: Optional[str] = None,
                           name: Optional[str] = None,
                           pdp_scope: Optional[PublicAdvertisedPrefixPdpScope] = None,
                           project: Optional[str] = None,
                           request_id: Optional[str] = None,
                           status: Optional[PublicAdvertisedPrefixStatus] = None)func NewPublicAdvertisedPrefix(ctx *Context, name string, args *PublicAdvertisedPrefixArgs, opts ...ResourceOption) (*PublicAdvertisedPrefix, error)public PublicAdvertisedPrefix(string name, PublicAdvertisedPrefixArgs? args = null, CustomResourceOptions? opts = null)
public PublicAdvertisedPrefix(String name, PublicAdvertisedPrefixArgs args)
public PublicAdvertisedPrefix(String name, PublicAdvertisedPrefixArgs args, CustomResourceOptions options)
type: google-native:compute/v1:PublicAdvertisedPrefix
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 PublicAdvertisedPrefixArgs
- 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 PublicAdvertisedPrefixArgs
- 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 PublicAdvertisedPrefixArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PublicAdvertisedPrefixArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PublicAdvertisedPrefixArgs
- 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 examplepublicAdvertisedPrefixResourceResourceFromComputev1 = new GoogleNative.Compute.V1.PublicAdvertisedPrefix("examplepublicAdvertisedPrefixResourceResourceFromComputev1", new()
{
    Description = "string",
    DnsVerificationIp = "string",
    IpCidrRange = "string",
    Name = "string",
    PdpScope = GoogleNative.Compute.V1.PublicAdvertisedPrefixPdpScope.Global,
    Project = "string",
    RequestId = "string",
    Status = GoogleNative.Compute.V1.PublicAdvertisedPrefixStatus.AnnouncedToInternet,
});
example, err := computev1.NewPublicAdvertisedPrefix(ctx, "examplepublicAdvertisedPrefixResourceResourceFromComputev1", &computev1.PublicAdvertisedPrefixArgs{
	Description:       pulumi.String("string"),
	DnsVerificationIp: pulumi.String("string"),
	IpCidrRange:       pulumi.String("string"),
	Name:              pulumi.String("string"),
	PdpScope:          computev1.PublicAdvertisedPrefixPdpScopeGlobal,
	Project:           pulumi.String("string"),
	RequestId:         pulumi.String("string"),
	Status:            computev1.PublicAdvertisedPrefixStatusAnnouncedToInternet,
})
var examplepublicAdvertisedPrefixResourceResourceFromComputev1 = new PublicAdvertisedPrefix("examplepublicAdvertisedPrefixResourceResourceFromComputev1", PublicAdvertisedPrefixArgs.builder()
    .description("string")
    .dnsVerificationIp("string")
    .ipCidrRange("string")
    .name("string")
    .pdpScope("GLOBAL")
    .project("string")
    .requestId("string")
    .status("ANNOUNCED_TO_INTERNET")
    .build());
examplepublic_advertised_prefix_resource_resource_from_computev1 = google_native.compute.v1.PublicAdvertisedPrefix("examplepublicAdvertisedPrefixResourceResourceFromComputev1",
    description="string",
    dns_verification_ip="string",
    ip_cidr_range="string",
    name="string",
    pdp_scope=google_native.compute.v1.PublicAdvertisedPrefixPdpScope.GLOBAL_,
    project="string",
    request_id="string",
    status=google_native.compute.v1.PublicAdvertisedPrefixStatus.ANNOUNCED_TO_INTERNET)
const examplepublicAdvertisedPrefixResourceResourceFromComputev1 = new google_native.compute.v1.PublicAdvertisedPrefix("examplepublicAdvertisedPrefixResourceResourceFromComputev1", {
    description: "string",
    dnsVerificationIp: "string",
    ipCidrRange: "string",
    name: "string",
    pdpScope: google_native.compute.v1.PublicAdvertisedPrefixPdpScope.Global,
    project: "string",
    requestId: "string",
    status: google_native.compute.v1.PublicAdvertisedPrefixStatus.AnnouncedToInternet,
});
type: google-native:compute/v1:PublicAdvertisedPrefix
properties:
    description: string
    dnsVerificationIp: string
    ipCidrRange: string
    name: string
    pdpScope: GLOBAL
    project: string
    requestId: string
    status: ANNOUNCED_TO_INTERNET
PublicAdvertisedPrefix 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 PublicAdvertisedPrefix resource accepts the following input properties:
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- DnsVerification stringIp 
- The address to be used for reverse DNS verification.
- IpCidr stringRange 
- The address range, in CIDR format, represented by this public advertised prefix.
- 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.
- PdpScope Pulumi.Google Native. Compute. V1. Public Advertised Prefix Pdp Scope 
- Specifies how child public delegated prefix will be scoped. It could be one of following values: - REGIONAL: The public delegated prefix is regional only. The provisioning will take a few minutes. -GLOBAL: The public delegated prefix is global only. The provisioning will take ~4 weeks. -GLOBAL_AND_REGIONAL[output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- Project string
- 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).
- Status
Pulumi.Google Native. Compute. V1. Public Advertised Prefix Status 
- The status of the public advertised prefix. Possible values include: - INITIAL: RPKI validation is complete. -PTR_CONFIGURED: User has configured the PTR. -VALIDATED: Reverse DNS lookup is successful. -REVERSE_DNS_LOOKUP_FAILED: Reverse DNS lookup failed. -PREFIX_CONFIGURATION_IN_PROGRESS: The prefix is being configured. -PREFIX_CONFIGURATION_COMPLETE: The prefix is fully configured. -PREFIX_REMOVAL_IN_PROGRESS: The prefix is being removed.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- DnsVerification stringIp 
- The address to be used for reverse DNS verification.
- IpCidr stringRange 
- The address range, in CIDR format, represented by this public advertised prefix.
- 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.
- PdpScope PublicAdvertised Prefix Pdp Scope 
- Specifies how child public delegated prefix will be scoped. It could be one of following values: - REGIONAL: The public delegated prefix is regional only. The provisioning will take a few minutes. -GLOBAL: The public delegated prefix is global only. The provisioning will take ~4 weeks. -GLOBAL_AND_REGIONAL[output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- Project string
- 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).
- Status
PublicAdvertised Prefix Status 
- The status of the public advertised prefix. Possible values include: - INITIAL: RPKI validation is complete. -PTR_CONFIGURED: User has configured the PTR. -VALIDATED: Reverse DNS lookup is successful. -REVERSE_DNS_LOOKUP_FAILED: Reverse DNS lookup failed. -PREFIX_CONFIGURATION_IN_PROGRESS: The prefix is being configured. -PREFIX_CONFIGURATION_COMPLETE: The prefix is fully configured. -PREFIX_REMOVAL_IN_PROGRESS: The prefix is being removed.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- dnsVerification StringIp 
- The address to be used for reverse DNS verification.
- ipCidr StringRange 
- The address range, in CIDR format, represented by this public advertised prefix.
- 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.
- pdpScope PublicAdvertised Prefix Pdp Scope 
- Specifies how child public delegated prefix will be scoped. It could be one of following values: - REGIONAL: The public delegated prefix is regional only. The provisioning will take a few minutes. -GLOBAL: The public delegated prefix is global only. The provisioning will take ~4 weeks. -GLOBAL_AND_REGIONAL[output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- project String
- 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).
- status
PublicAdvertised Prefix Status 
- The status of the public advertised prefix. Possible values include: - INITIAL: RPKI validation is complete. -PTR_CONFIGURED: User has configured the PTR. -VALIDATED: Reverse DNS lookup is successful. -REVERSE_DNS_LOOKUP_FAILED: Reverse DNS lookup failed. -PREFIX_CONFIGURATION_IN_PROGRESS: The prefix is being configured. -PREFIX_CONFIGURATION_COMPLETE: The prefix is fully configured. -PREFIX_REMOVAL_IN_PROGRESS: The prefix is being removed.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- dnsVerification stringIp 
- The address to be used for reverse DNS verification.
- ipCidr stringRange 
- The address range, in CIDR format, represented by this public advertised prefix.
- 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.
- pdpScope PublicAdvertised Prefix Pdp Scope 
- Specifies how child public delegated prefix will be scoped. It could be one of following values: - REGIONAL: The public delegated prefix is regional only. The provisioning will take a few minutes. -GLOBAL: The public delegated prefix is global only. The provisioning will take ~4 weeks. -GLOBAL_AND_REGIONAL[output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- project string
- 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).
- status
PublicAdvertised Prefix Status 
- The status of the public advertised prefix. Possible values include: - INITIAL: RPKI validation is complete. -PTR_CONFIGURED: User has configured the PTR. -VALIDATED: Reverse DNS lookup is successful. -REVERSE_DNS_LOOKUP_FAILED: Reverse DNS lookup failed. -PREFIX_CONFIGURATION_IN_PROGRESS: The prefix is being configured. -PREFIX_CONFIGURATION_COMPLETE: The prefix is fully configured. -PREFIX_REMOVAL_IN_PROGRESS: The prefix is being removed.
- description str
- An optional description of this resource. Provide this property when you create the resource.
- dns_verification_ strip 
- The address to be used for reverse DNS verification.
- ip_cidr_ strrange 
- The address range, in CIDR format, represented by this public advertised prefix.
- 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.
- pdp_scope PublicAdvertised Prefix Pdp Scope 
- Specifies how child public delegated prefix will be scoped. It could be one of following values: - REGIONAL: The public delegated prefix is regional only. The provisioning will take a few minutes. -GLOBAL: The public delegated prefix is global only. The provisioning will take ~4 weeks. -GLOBAL_AND_REGIONAL[output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- project str
- 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).
- status
PublicAdvertised Prefix Status 
- The status of the public advertised prefix. Possible values include: - INITIAL: RPKI validation is complete. -PTR_CONFIGURED: User has configured the PTR. -VALIDATED: Reverse DNS lookup is successful. -REVERSE_DNS_LOOKUP_FAILED: Reverse DNS lookup failed. -PREFIX_CONFIGURATION_IN_PROGRESS: The prefix is being configured. -PREFIX_CONFIGURATION_COMPLETE: The prefix is fully configured. -PREFIX_REMOVAL_IN_PROGRESS: The prefix is being removed.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- dnsVerification StringIp 
- The address to be used for reverse DNS verification.
- ipCidr StringRange 
- The address range, in CIDR format, represented by this public advertised prefix.
- 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.
- pdpScope "GLOBAL" | "GLOBAL_AND_REGIONAL" | "REGIONAL"
- Specifies how child public delegated prefix will be scoped. It could be one of following values: - REGIONAL: The public delegated prefix is regional only. The provisioning will take a few minutes. -GLOBAL: The public delegated prefix is global only. The provisioning will take ~4 weeks. -GLOBAL_AND_REGIONAL[output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- project String
- 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).
- status "ANNOUNCED_TO_INTERNET" | "INITIAL" | "PREFIX_CONFIGURATION_COMPLETE" | "PREFIX_CONFIGURATION_IN_PROGRESS" | "PREFIX_REMOVAL_IN_PROGRESS" | "PTR_CONFIGURED" | "READY_TO_ANNOUNCE" | "REVERSE_DNS_LOOKUP_FAILED" | "VALIDATED"
- The status of the public advertised prefix. Possible values include: - INITIAL: RPKI validation is complete. -PTR_CONFIGURED: User has configured the PTR. -VALIDATED: Reverse DNS lookup is successful. -REVERSE_DNS_LOOKUP_FAILED: Reverse DNS lookup failed. -PREFIX_CONFIGURATION_IN_PROGRESS: The prefix is being configured. -PREFIX_CONFIGURATION_COMPLETE: The prefix is fully configured. -PREFIX_REMOVAL_IN_PROGRESS: The prefix is being removed.
Outputs
All input properties are implicitly available as output properties. Additionally, the PublicAdvertisedPrefix resource produces the following output properties:
- ByoipApi stringVersion 
- 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 PublicAdvertisedPrefix. An up-to-date fingerprint must be provided in order to update the PublicAdvertisedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicAdvertisedPrefix.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Type of the resource. Always compute#publicAdvertisedPrefix for public advertised prefixes.
- PublicDelegated List<Pulumi.Prefixs Google Native. Compute. V1. Outputs. Public Advertised Prefix Public Delegated Prefix Response> 
- The list of public delegated prefixes that exist for this public advertised prefix.
- SelfLink string
- Server-defined URL for the resource.
- string
- The shared secret to be used for reverse DNS verification.
- ByoipApi stringVersion 
- 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 PublicAdvertisedPrefix. An up-to-date fingerprint must be provided in order to update the PublicAdvertisedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicAdvertisedPrefix.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Type of the resource. Always compute#publicAdvertisedPrefix for public advertised prefixes.
- PublicDelegated []PublicPrefixs Advertised Prefix Public Delegated Prefix Response 
- The list of public delegated prefixes that exist for this public advertised prefix.
- SelfLink string
- Server-defined URL for the resource.
- string
- The shared secret to be used for reverse DNS verification.
- byoipApi StringVersion 
- 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 PublicAdvertisedPrefix. An up-to-date fingerprint must be provided in order to update the PublicAdvertisedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicAdvertisedPrefix.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Type of the resource. Always compute#publicAdvertisedPrefix for public advertised prefixes.
- publicDelegated List<PublicPrefixs Advertised Prefix Public Delegated Prefix Response> 
- The list of public delegated prefixes that exist for this public advertised prefix.
- selfLink String
- Server-defined URL for the resource.
- String
- The shared secret to be used for reverse DNS verification.
- byoipApi stringVersion 
- 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 PublicAdvertisedPrefix. An up-to-date fingerprint must be provided in order to update the PublicAdvertisedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicAdvertisedPrefix.
- id string
- The provider-assigned unique ID for this managed resource.
- kind string
- Type of the resource. Always compute#publicAdvertisedPrefix for public advertised prefixes.
- publicDelegated PublicPrefixs Advertised Prefix Public Delegated Prefix Response[] 
- The list of public delegated prefixes that exist for this public advertised prefix.
- selfLink string
- Server-defined URL for the resource.
- string
- The shared secret to be used for reverse DNS verification.
- 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 PublicAdvertisedPrefix. An up-to-date fingerprint must be provided in order to update the PublicAdvertisedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicAdvertisedPrefix.
- id str
- The provider-assigned unique ID for this managed resource.
- kind str
- Type of the resource. Always compute#publicAdvertisedPrefix for public advertised prefixes.
- public_delegated_ Sequence[Publicprefixs Advertised Prefix Public Delegated Prefix Response] 
- The list of public delegated prefixes that exist for this public advertised prefix.
- self_link str
- Server-defined URL for the resource.
- str
- The shared secret to be used for reverse DNS verification.
- byoipApi StringVersion 
- 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 PublicAdvertisedPrefix. An up-to-date fingerprint must be provided in order to update the PublicAdvertisedPrefix, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a PublicAdvertisedPrefix.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Type of the resource. Always compute#publicAdvertisedPrefix for public advertised prefixes.
- publicDelegated List<Property Map>Prefixs 
- The list of public delegated prefixes that exist for this public advertised prefix.
- selfLink String
- Server-defined URL for the resource.
- String
- The shared secret to be used for reverse DNS verification.
Supporting Types
PublicAdvertisedPrefixPdpScope, PublicAdvertisedPrefixPdpScopeArgs          
- Global
- GLOBALThe public delegated prefix is global only. The provisioning will take ~4 weeks.
- GlobalAnd Regional 
- GLOBAL_AND_REGIONALThe public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- Regional
- REGIONALThe public delegated prefix is regional only. The provisioning will take a few minutes.
- PublicAdvertised Prefix Pdp Scope Global 
- GLOBALThe public delegated prefix is global only. The provisioning will take ~4 weeks.
- PublicAdvertised Prefix Pdp Scope Global And Regional 
- GLOBAL_AND_REGIONALThe public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- PublicAdvertised Prefix Pdp Scope Regional 
- REGIONALThe public delegated prefix is regional only. The provisioning will take a few minutes.
- Global
- GLOBALThe public delegated prefix is global only. The provisioning will take ~4 weeks.
- GlobalAnd Regional 
- GLOBAL_AND_REGIONALThe public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- Regional
- REGIONALThe public delegated prefix is regional only. The provisioning will take a few minutes.
- Global
- GLOBALThe public delegated prefix is global only. The provisioning will take ~4 weeks.
- GlobalAnd Regional 
- GLOBAL_AND_REGIONALThe public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- Regional
- REGIONALThe public delegated prefix is regional only. The provisioning will take a few minutes.
- GLOBAL_
- GLOBALThe public delegated prefix is global only. The provisioning will take ~4 weeks.
- GLOBAL_AND_REGIONAL
- GLOBAL_AND_REGIONALThe public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- REGIONAL
- REGIONALThe public delegated prefix is regional only. The provisioning will take a few minutes.
- "GLOBAL"
- GLOBALThe public delegated prefix is global only. The provisioning will take ~4 weeks.
- "GLOBAL_AND_REGIONAL"
- GLOBAL_AND_REGIONALThe public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2.
- "REGIONAL"
- REGIONALThe public delegated prefix is regional only. The provisioning will take a few minutes.
PublicAdvertisedPrefixPublicDelegatedPrefixResponse, PublicAdvertisedPrefixPublicDelegatedPrefixResponseArgs              
- IpRange string
- The IP address range of the public delegated prefix
- Name string
- The name of the public delegated prefix
- Project string
- The project number of the public delegated prefix
- Region string
- The region of the public delegated prefix if it is regional. If absent, the prefix is global.
- Status string
- The status of the public delegated prefix. Possible values are: INITIALIZING: The public delegated prefix is being initialized and addresses cannot be created yet. ANNOUNCED: The public delegated prefix is active.
- IpRange string
- The IP address range of the public delegated prefix
- Name string
- The name of the public delegated prefix
- Project string
- The project number of the public delegated prefix
- Region string
- The region of the public delegated prefix if it is regional. If absent, the prefix is global.
- Status string
- The status of the public delegated prefix. Possible values are: INITIALIZING: The public delegated prefix is being initialized and addresses cannot be created yet. ANNOUNCED: The public delegated prefix is active.
- ipRange String
- The IP address range of the public delegated prefix
- name String
- The name of the public delegated prefix
- project String
- The project number of the public delegated prefix
- region String
- The region of the public delegated prefix if it is regional. If absent, the prefix is global.
- status String
- The status of the public delegated prefix. Possible values are: INITIALIZING: The public delegated prefix is being initialized and addresses cannot be created yet. ANNOUNCED: The public delegated prefix is active.
- ipRange string
- The IP address range of the public delegated prefix
- name string
- The name of the public delegated prefix
- project string
- The project number of the public delegated prefix
- region string
- The region of the public delegated prefix if it is regional. If absent, the prefix is global.
- status string
- The status of the public delegated prefix. Possible values are: INITIALIZING: The public delegated prefix is being initialized and addresses cannot be created yet. ANNOUNCED: The public delegated prefix is active.
- ip_range str
- The IP address range of the public delegated prefix
- name str
- The name of the public delegated prefix
- project str
- The project number of the public delegated prefix
- region str
- The region of the public delegated prefix if it is regional. If absent, the prefix is global.
- status str
- The status of the public delegated prefix. Possible values are: INITIALIZING: The public delegated prefix is being initialized and addresses cannot be created yet. ANNOUNCED: The public delegated prefix is active.
- ipRange String
- The IP address range of the public delegated prefix
- name String
- The name of the public delegated prefix
- project String
- The project number of the public delegated prefix
- region String
- The region of the public delegated prefix if it is regional. If absent, the prefix is global.
- status String
- The status of the public delegated prefix. Possible values are: INITIALIZING: The public delegated prefix is being initialized and addresses cannot be created yet. ANNOUNCED: The public delegated prefix is active.
PublicAdvertisedPrefixStatus, PublicAdvertisedPrefixStatusArgs        
- AnnouncedTo Internet 
- ANNOUNCED_TO_INTERNETThe prefix is announced to Internet.
- Initial
- INITIALRPKI validation is complete.
- PrefixConfiguration Complete 
- PREFIX_CONFIGURATION_COMPLETEThe prefix is fully configured.
- PrefixConfiguration In Progress 
- PREFIX_CONFIGURATION_IN_PROGRESSThe prefix is being configured.
- PrefixRemoval In Progress 
- PREFIX_REMOVAL_IN_PROGRESSThe prefix is being removed.
- PtrConfigured 
- PTR_CONFIGUREDUser has configured the PTR.
- ReadyTo Announce 
- READY_TO_ANNOUNCEThe prefix is currently withdrawn but ready to be announced.
- ReverseDns Lookup Failed 
- REVERSE_DNS_LOOKUP_FAILEDReverse DNS lookup failed.
- Validated
- VALIDATEDReverse DNS lookup is successful.
- PublicAdvertised Prefix Status Announced To Internet 
- ANNOUNCED_TO_INTERNETThe prefix is announced to Internet.
- PublicAdvertised Prefix Status Initial 
- INITIALRPKI validation is complete.
- PublicAdvertised Prefix Status Prefix Configuration Complete 
- PREFIX_CONFIGURATION_COMPLETEThe prefix is fully configured.
- PublicAdvertised Prefix Status Prefix Configuration In Progress 
- PREFIX_CONFIGURATION_IN_PROGRESSThe prefix is being configured.
- PublicAdvertised Prefix Status Prefix Removal In Progress 
- PREFIX_REMOVAL_IN_PROGRESSThe prefix is being removed.
- PublicAdvertised Prefix Status Ptr Configured 
- PTR_CONFIGUREDUser has configured the PTR.
- PublicAdvertised Prefix Status Ready To Announce 
- READY_TO_ANNOUNCEThe prefix is currently withdrawn but ready to be announced.
- PublicAdvertised Prefix Status Reverse Dns Lookup Failed 
- REVERSE_DNS_LOOKUP_FAILEDReverse DNS lookup failed.
- PublicAdvertised Prefix Status Validated 
- VALIDATEDReverse DNS lookup is successful.
- AnnouncedTo Internet 
- ANNOUNCED_TO_INTERNETThe prefix is announced to Internet.
- Initial
- INITIALRPKI validation is complete.
- PrefixConfiguration Complete 
- PREFIX_CONFIGURATION_COMPLETEThe prefix is fully configured.
- PrefixConfiguration In Progress 
- PREFIX_CONFIGURATION_IN_PROGRESSThe prefix is being configured.
- PrefixRemoval In Progress 
- PREFIX_REMOVAL_IN_PROGRESSThe prefix is being removed.
- PtrConfigured 
- PTR_CONFIGUREDUser has configured the PTR.
- ReadyTo Announce 
- READY_TO_ANNOUNCEThe prefix is currently withdrawn but ready to be announced.
- ReverseDns Lookup Failed 
- REVERSE_DNS_LOOKUP_FAILEDReverse DNS lookup failed.
- Validated
- VALIDATEDReverse DNS lookup is successful.
- AnnouncedTo Internet 
- ANNOUNCED_TO_INTERNETThe prefix is announced to Internet.
- Initial
- INITIALRPKI validation is complete.
- PrefixConfiguration Complete 
- PREFIX_CONFIGURATION_COMPLETEThe prefix is fully configured.
- PrefixConfiguration In Progress 
- PREFIX_CONFIGURATION_IN_PROGRESSThe prefix is being configured.
- PrefixRemoval In Progress 
- PREFIX_REMOVAL_IN_PROGRESSThe prefix is being removed.
- PtrConfigured 
- PTR_CONFIGUREDUser has configured the PTR.
- ReadyTo Announce 
- READY_TO_ANNOUNCEThe prefix is currently withdrawn but ready to be announced.
- ReverseDns Lookup Failed 
- REVERSE_DNS_LOOKUP_FAILEDReverse DNS lookup failed.
- Validated
- VALIDATEDReverse DNS lookup is successful.
- ANNOUNCED_TO_INTERNET
- ANNOUNCED_TO_INTERNETThe prefix is announced to Internet.
- INITIAL
- INITIALRPKI validation is complete.
- PREFIX_CONFIGURATION_COMPLETE
- PREFIX_CONFIGURATION_COMPLETEThe prefix is fully configured.
- PREFIX_CONFIGURATION_IN_PROGRESS
- PREFIX_CONFIGURATION_IN_PROGRESSThe prefix is being configured.
- PREFIX_REMOVAL_IN_PROGRESS
- PREFIX_REMOVAL_IN_PROGRESSThe prefix is being removed.
- PTR_CONFIGURED
- PTR_CONFIGUREDUser has configured the PTR.
- READY_TO_ANNOUNCE
- READY_TO_ANNOUNCEThe prefix is currently withdrawn but ready to be announced.
- REVERSE_DNS_LOOKUP_FAILED
- REVERSE_DNS_LOOKUP_FAILEDReverse DNS lookup failed.
- VALIDATED
- VALIDATEDReverse DNS lookup is successful.
- "ANNOUNCED_TO_INTERNET"
- ANNOUNCED_TO_INTERNETThe prefix is announced to Internet.
- "INITIAL"
- INITIALRPKI validation is complete.
- "PREFIX_CONFIGURATION_COMPLETE"
- PREFIX_CONFIGURATION_COMPLETEThe prefix is fully configured.
- "PREFIX_CONFIGURATION_IN_PROGRESS"
- PREFIX_CONFIGURATION_IN_PROGRESSThe prefix is being configured.
- "PREFIX_REMOVAL_IN_PROGRESS"
- PREFIX_REMOVAL_IN_PROGRESSThe prefix is being removed.
- "PTR_CONFIGURED"
- PTR_CONFIGUREDUser has configured the PTR.
- "READY_TO_ANNOUNCE"
- READY_TO_ANNOUNCEThe prefix is currently withdrawn but ready to be announced.
- "REVERSE_DNS_LOOKUP_FAILED"
- REVERSE_DNS_LOOKUP_FAILEDReverse DNS lookup failed.
- "VALIDATED"
- VALIDATEDReverse DNS lookup is successful.
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.