Class: Google::Cloud::Compute::V1::PublicDelegatedPrefix

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/compute/v1/compute.rb

Overview

A PublicDelegatedPrefix resource represents an IP block within a PublicAdvertisedPrefix that is configured within a single cloud scope (global or region). IPs in the block can be allocated to resources within that scope. Public delegated prefixes may be further broken up into smaller IP blocks in the same scope as the parent block.

Defined Under Namespace

Modules: ByoipApiVersion, Ipv6AccessType, Mode, Status

Instance Attribute Summary collapse

Instance Attribute Details

#allocatable_prefix_length::Integer

Returns 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.

Returns:

  • (::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.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#byoip_api_version::String

Returns Output only. [Output Only] The version of BYOIP API. Check the ByoipApiVersion enum for the list of possible values.

Returns:

  • (::String)

    Output only. [Output Only] The version of BYOIP API. Check the ByoipApiVersion enum for the list of possible values.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#creation_timestamp::String

Returns Output only. [Output Only] Creation timestamp inRFC3339 text format.

Returns:

  • (::String)

    Output only. [Output Only] Creation timestamp inRFC3339 text format.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#description::String

Returns An optional description of this resource. Provide this property when you create the resource.

Returns:

  • (::String)

    An optional description of this resource. Provide this property when you create the resource.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#enable_enhanced_ipv4_allocation::Boolean

Returns Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations. Applicable for IPv4 PDPs only.

Returns:

  • (::Boolean)

    Output only. [Output Only] Whether this PDP supports enhanced IPv4 allocations. Applicable for IPv4 PDPs only.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#fingerprint::String

Returns 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 thePublicDelegatedPrefix, otherwise the request will fail with error 412 conditionNotMet.

To see the latest fingerprint, make a get() request to retrieve a PublicDelegatedPrefix.

Returns:

  • (::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 thePublicDelegatedPrefix, otherwise the request will fail with error 412 conditionNotMet.

    To see the latest fingerprint, make a get() request to retrieve a PublicDelegatedPrefix.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#id::Integer

Returns Output only. [Output Only] The unique identifier for the resource type. The server generates this identifier.

Returns:

  • (::Integer)

    Output only. [Output Only] The unique identifier for the resource type. The server generates this identifier.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#ip_cidr_range::String

Returns The IP address range, in CIDR format, represented by this public delegated prefix.

Returns:

  • (::String)

    The IP address range, in CIDR format, represented by this public delegated prefix.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#ipv6_access_type::String

Returns Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes. Inherited from parent prefix. Check the Ipv6AccessType enum for the list of possible values.

Returns:

  • (::String)

    Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes. Inherited from parent prefix. Check the Ipv6AccessType enum for the list of possible values.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#is_live_migration::Boolean

Returns If true, the prefix will be live migrated.

Returns:

  • (::Boolean)

    If true, the prefix will be live migrated.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#kind::String

Returns Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.

Returns:

  • (::String)

    Output only. [Output Only] Type of the resource. Alwayscompute#publicDelegatedPrefix for public delegated prefixes.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#mode::String

Returns The public delegated prefix mode for IPv6 only. Check the Mode enum for the list of possible values.

Returns:

  • (::String)

    The public delegated prefix mode for IPv6 only. Check the Mode enum for the list of possible values.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#name::String

Returns Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply withRFC1035. 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.

Returns:

  • (::String)

    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply withRFC1035. 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.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#parent_prefix::String

Returns The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.

Returns:

  • (::String)

    The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#public_delegated_sub_prefixs::Array<::Google::Cloud::Compute::V1::PublicDelegatedPrefixPublicDelegatedSubPrefix>

Returns The list of sub public delegated prefixes that exist for this public delegated prefix.

Returns:



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#region::String

Returns Output only. [Output Only] 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.

Returns:

  • (::String)

    Output only. [Output Only] 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.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

Returns Output only. [Output Only] Server-defined URL for the resource.

Returns:

  • (::String)

    Output only. [Output Only] Server-defined URL for the resource.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end

#status::String

Returns [Output Only] 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 announced and ready to
 use.
 - `DELETING` The public delegated prefix is being deprovsioned.
 - `ACTIVE` The public delegated prefix is ready to use.

Check the Status enum for the list of possible values.

Returns:

  • (::String)

    [Output Only] 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 announced and ready to
     use.
     - `DELETING` The public delegated prefix is being deprovsioned.
     - `ACTIVE` The public delegated prefix is ready to use.
    

    Check the Status enum for the list of possible values.



61587
61588
61589
61590
61591
61592
61593
61594
61595
61596
61597
61598
61599
61600
61601
61602
61603
61604
61605
61606
61607
61608
61609
61610
61611
61612
61613
61614
61615
61616
61617
61618
61619
61620
61621
61622
61623
61624
61625
61626
61627
61628
61629
61630
61631
61632
61633
61634
61635
61636
61637
61638
61639
61640
61641
61642
61643
61644
61645
61646
61647
61648
61649
61650
61651
61652
61653
61654
61655
61656
61657
61658
61659
61660
61661
61662
61663
61664
61665
61666
61667
61668
61669
61670
61671
61672
61673
61674
61675
61676
61677
61678
61679
61680
61681
61682
61683
61684
61685
61686
61687
61688
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 61587

class PublicDelegatedPrefix
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Output only. [Output Only] The version of BYOIP API.
  module ByoipApiVersion
    # A value indicating that the enum field is not set.
    UNDEFINED_BYOIP_API_VERSION = 0

    # This public delegated prefix usually takes 4 weeks to delete, and the BGP
    # status cannot be changed. Announce and Withdraw APIs can not be used on
    # this prefix.
    V1 = 2715

    # This public delegated prefix takes minutes to delete. Announce and
    # Withdraw APIs can be used on this prefix to change the BGP status.
    V2 = 2716
  end

  # Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes.
  # Inherited from parent prefix.
  module Ipv6AccessType
    # A value indicating that the enum field is not set.
    UNDEFINED_IPV6_ACCESS_TYPE = 0

    # The parent public advertised prefix will be announced to the internet.
    # All children public delegated prefixes will have IPv6 access type as
    # EXTERNAL.
    EXTERNAL = 35_607_499

    # The parent public advertised prefix will not be announced to the
    # internet. Prefix will be used privately within Cloud. All children
    # public delegated prefixes will have IPv6 access type as INTERNAL.
    INTERNAL = 279_295_677
  end

  # The public delegated prefix mode for IPv6 only.
  module Mode
    # A value indicating that the enum field is not set.
    UNDEFINED_MODE = 0

    # The public delegated prefix is used for further sub-delegation only. Such
    # prefixes cannot set allocatablePrefixLength.
    DELEGATION = 264_149_288

    # The public delegated prefix is used for creating forwarding rules only.
    # Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356

    # The public delegated prefix is used for creating dual-mode subnetworks
    # only. Such prefixes cannot set publicDelegatedSubPrefixes. Parent public
    # delegated prefix must have IPv6 access type as EXTERNAL.
    EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284

    # The public delegated prefix is used for creating dual stack or IPv6-only
    # subnetwork with internal access only. Such prefixes cannot set
    # publicDelegatedSubPrefixes and allocatablePrefixLength. Parent public
    # delegated prefix must have IPv6 access type as INTERNAL.
    INTERNAL_IPV6_SUBNETWORK_CREATION = 153_239_834
  end

  # [Output Only] 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 announced and ready to
  #      use.
  #      - `DELETING` The public delegated prefix is being deprovsioned.
  #      - `ACTIVE` The public delegated prefix is ready to use.
  module Status
    # A value indicating that the enum field is not set.
    UNDEFINED_STATUS = 0

    # The public delegated prefix is ready to use.
    ACTIVE = 314_733_318

    # The public delegated prefix is announced and ready to use.
    ANNOUNCED = 365_103_355

    # The prefix is announced within Google network.
    ANNOUNCED_TO_GOOGLE = 454_875_705

    # The prefix is announced to Internet and within Google.
    ANNOUNCED_TO_INTERNET = 177_880_897

    # The public delegated prefix is being deprovsioned.
    DELETING = 528_602_024

    # The public delegated prefix is being initialized and addresses cannot be
    # created yet.
    INITIALIZING = 306_588_749

    # The public delegated prefix is currently withdrawn but ready to be
    # announced.
    READY_TO_ANNOUNCE = 64_641_265
  end
end