google-cloud-compute-v1 2.20.0 → 2.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/compute/v1/compute_pb.rb +27 -1
- data/lib/google/cloud/compute/v1/machine_images/rest/client.rb +100 -0
- data/lib/google/cloud/compute/v1/machine_images/rest/service_stub.rb +63 -0
- data/lib/google/cloud/compute/v1/reservation_blocks/credentials.rb +52 -0
- data/lib/google/cloud/compute/v1/reservation_blocks/rest/client.rb +661 -0
- data/lib/google/cloud/compute/v1/reservation_blocks/rest/service_stub.rb +273 -0
- data/lib/google/cloud/compute/v1/reservation_blocks/rest.rb +51 -0
- data/lib/google/cloud/compute/v1/reservation_blocks.rb +47 -0
- data/lib/google/cloud/compute/v1/reservations/rest/client.rb +105 -0
- data/lib/google/cloud/compute/v1/reservations/rest/service_stub.rb +64 -0
- data/lib/google/cloud/compute/v1/rest.rb +1 -0
- data/lib/google/cloud/compute/v1/version.rb +1 -1
- data/lib/google/cloud/compute/v1.rb +1 -0
- data/proto_docs/google/cloud/compute/v1/compute.rb +514 -20
- metadata +7 -2
@@ -2445,6 +2445,12 @@ module Google
|
|
2445
2445
|
end
|
2446
2446
|
|
2447
2447
|
# [Output Only] Contains output only fields.
|
2448
|
+
# @!attribute [rw] reservation_block_count
|
2449
|
+
# @return [::Integer]
|
2450
|
+
# The number of reservation blocks associated with this reservation.
|
2451
|
+
# @!attribute [rw] reservation_maintenance
|
2452
|
+
# @return [::Google::Cloud::Compute::V1::GroupMaintenanceInfo]
|
2453
|
+
# Maintenance information for this reservation
|
2448
2454
|
# @!attribute [rw] specific_sku_allocation
|
2449
2455
|
# @return [::Google::Cloud::Compute::V1::AllocationResourceStatusSpecificSKUAllocation]
|
2450
2456
|
# Allocation Properties of this reservation.
|
@@ -3533,7 +3539,7 @@ module Google
|
|
3533
3539
|
# Specifies a separate client (e.g. browser client) maximum TTL. This is used to clamp the max-age (or Expires) value sent to the client. With FORCE_CACHE_ALL, the lesser of client_ttl and default_ttl is used for the response max-age directive, along with a "public" directive. For cacheable content in CACHE_ALL_STATIC mode, client_ttl clamps the max-age from the origin (if specified), or else sets the response max-age directive to the lesser of the client_ttl and default_ttl, and also ensures a "public" cache-control directive is present. If a client TTL is not specified, a default value (1 hour) will be used. The maximum allowed value is 31,622,400s (1 year).
|
3534
3540
|
# @!attribute [rw] default_ttl
|
3535
3541
|
# @return [::Integer]
|
3536
|
-
# Specifies the default TTL for cached content served by this origin for responses that do not have an existing valid TTL (max-age or s-
|
3542
|
+
# Specifies the default TTL for cached content served by this origin for responses that do not have an existing valid TTL (max-age or s-maxage). Setting a TTL of "0" means "always revalidate". The value of defaultTTL cannot be set to a value greater than that of maxTTL, but can be equal. When the cacheMode is set to FORCE_CACHE_ALL, the defaultTTL will overwrite the TTL set in all responses. The maximum allowed value is 31,622,400s (1 year), noting that infrequently accessed objects may be evicted from the cache before the defined TTL.
|
3537
3543
|
# @!attribute [rw] max_ttl
|
3538
3544
|
# @return [::Integer]
|
3539
3545
|
# Specifies the maximum allowed TTL for cached content served by this origin. Cache directives that attempt to set a max-age or s-maxage higher than this, or an Expires header more than maxTTL seconds in the future will be capped at the value of maxTTL, as if it were the value of an s-maxage Cache-Control directive. Headers sent to the client will not be modified. Setting a TTL of "0" means "always revalidate". The maximum allowed value is 31,622,400s (1 year), noting that infrequently accessed objects may be evicted from the cache before the defined TTL.
|
@@ -3548,7 +3554,7 @@ module Google
|
|
3548
3554
|
# If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests to the origin.
|
3549
3555
|
# @!attribute [rw] serve_while_stale
|
3550
3556
|
# @return [::Integer]
|
3551
|
-
# Serve existing content from the cache (if available) when revalidating content with the origin, or when an error is encountered when refreshing the cache. This setting defines the default "max-stale" duration for any cached responses that do not specify a max-stale directive. Stale responses that exceed the TTL configured here will not be served. The default limit (max-stale) is 86400s (1 day), which will allow stale content to be served up to this limit beyond the max-age (or s-
|
3557
|
+
# Serve existing content from the cache (if available) when revalidating content with the origin, or when an error is encountered when refreshing the cache. This setting defines the default "max-stale" duration for any cached responses that do not specify a max-stale directive. Stale responses that exceed the TTL configured here will not be served. The default limit (max-stale) is 86400s (1 day), which will allow stale content to be served up to this limit beyond the max-age (or s-maxage) of a cached response. The maximum allowed value is 604800 (1 week). Set this to zero (0) to disable serve-while-stale.
|
3552
3558
|
# @!attribute [rw] signed_url_cache_max_age_sec
|
3553
3559
|
# @return [::Integer]
|
3554
3560
|
# Maximum number of seconds the response to a signed URL request will be considered fresh. After this time period, the response will be revalidated before being served. Defaults to 1hr (3600s). When serving responses to signed URL requests, Cloud CDN will internally behave as though all responses from this backend had a "Cache-Control: public, max-age=[TTL]" header, regardless of any existing Cache-Control header. The actual headers served in responses will not be altered.
|
@@ -3703,6 +3709,13 @@ module Google
|
|
3703
3709
|
# @!attribute [rw] enable_c_d_n
|
3704
3710
|
# @return [::Boolean]
|
3705
3711
|
# If true, enables Cloud CDN for the backend service of a global external Application Load Balancer.
|
3712
|
+
# @!attribute [rw] external_managed_migration_state
|
3713
|
+
# @return [::String]
|
3714
|
+
# Specifies the canary migration state. Possible values are PREPARE, TEST_BY_PERCENTAGE, and TEST_ALL_TRAFFIC. To begin the migration from EXTERNAL to EXTERNAL_MANAGED, the state must be changed to PREPARE. The state must be changed to TEST_ALL_TRAFFIC before the loadBalancingScheme can be changed to EXTERNAL_MANAGED. Optionally, the TEST_BY_PERCENTAGE state can be used to migrate traffic by percentage using externalManagedMigrationTestingPercentage. Rolling back a migration requires the states to be set in reverse order. So changing the scheme from EXTERNAL_MANAGED to EXTERNAL requires the state to be set to TEST_ALL_TRAFFIC at the same time. Optionally, the TEST_BY_PERCENTAGE state can be used to migrate some traffic back to EXTERNAL or PREPARE can be used to migrate all traffic back to EXTERNAL.
|
3715
|
+
# Check the ExternalManagedMigrationState enum for the list of possible values.
|
3716
|
+
# @!attribute [rw] external_managed_migration_testing_percentage
|
3717
|
+
# @return [::Float]
|
3718
|
+
# Determines the fraction of requests that should be processed by the Global external Application Load Balancer. The value of this field must be in the range [0, 100]. Session affinity options will slightly affect this routing behavior, for more details, see: Session Affinity. This value can only be set if the loadBalancingScheme in the BackendService is set to EXTERNAL (when using the classic Application Load Balancer) and the migration state is TEST_BY_PERCENTAGE.
|
3706
3719
|
# @!attribute [rw] failover_policy
|
3707
3720
|
# @return [::Google::Cloud::Compute::V1::BackendServiceFailoverPolicy]
|
3708
3721
|
# Requires at least one backend instance group to be defined as a backup (failover) backend. For load balancers that have configurable failover: [Internal passthrough Network Load Balancers](https://cloud.google.com/load-balancing/docs/internal/failover-overview) and [external passthrough Network Load Balancers](https://cloud.google.com/load-balancing/docs/network/networklb-failover-overview). failoverPolicy cannot be specified with haPolicy.
|
@@ -3826,6 +3839,18 @@ module Google
|
|
3826
3839
|
DISABLED = 516_696_700
|
3827
3840
|
end
|
3828
3841
|
|
3842
|
+
# Specifies the canary migration state. Possible values are PREPARE, TEST_BY_PERCENTAGE, and TEST_ALL_TRAFFIC. To begin the migration from EXTERNAL to EXTERNAL_MANAGED, the state must be changed to PREPARE. The state must be changed to TEST_ALL_TRAFFIC before the loadBalancingScheme can be changed to EXTERNAL_MANAGED. Optionally, the TEST_BY_PERCENTAGE state can be used to migrate traffic by percentage using externalManagedMigrationTestingPercentage. Rolling back a migration requires the states to be set in reverse order. So changing the scheme from EXTERNAL_MANAGED to EXTERNAL requires the state to be set to TEST_ALL_TRAFFIC at the same time. Optionally, the TEST_BY_PERCENTAGE state can be used to migrate some traffic back to EXTERNAL or PREPARE can be used to migrate all traffic back to EXTERNAL.
|
3843
|
+
module ExternalManagedMigrationState
|
3844
|
+
# A value indicating that the enum field is not set.
|
3845
|
+
UNDEFINED_EXTERNAL_MANAGED_MIGRATION_STATE = 0
|
3846
|
+
|
3847
|
+
PREPARE = 399_612_135
|
3848
|
+
|
3849
|
+
TEST_ALL_TRAFFIC = 79_728_882
|
3850
|
+
|
3851
|
+
TEST_BY_PERCENTAGE = 513_738_389
|
3852
|
+
end
|
3853
|
+
|
3829
3854
|
# Specifies a preference for traffic sent from the proxy to the backend (or from the client to the backend for proxyless gRPC). The possible values are: - IPV4_ONLY: Only send IPv4 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv4 health checks are used to check the health of the backends. This is the default setting. - PREFER_IPV6: Prioritize the connection to the endpoint's IPv6 address over its IPv4 address (provided there is a healthy IPv6 address). - IPV6_ONLY: Only send IPv6 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv6 health checks are used to check the health of the backends. This field is applicable to either: - Advanced global external Application Load Balancer (load balancing scheme EXTERNAL_MANAGED), - Regional external Application Load Balancer, - Internal proxy Network Load Balancer (load balancing scheme INTERNAL_MANAGED), - Regional internal Application Load Balancer (load balancing scheme INTERNAL_MANAGED), - Traffic Director with Envoy proxies and proxyless gRPC (load balancing scheme INTERNAL_SELF_MANAGED).
|
3830
3855
|
module IpAddressSelectionPolicy
|
3831
3856
|
# A value indicating that the enum field is not set.
|
@@ -4013,7 +4038,7 @@ module Google
|
|
4013
4038
|
# Specifies a separate client (e.g. browser client) maximum TTL. This is used to clamp the max-age (or Expires) value sent to the client. With FORCE_CACHE_ALL, the lesser of client_ttl and default_ttl is used for the response max-age directive, along with a "public" directive. For cacheable content in CACHE_ALL_STATIC mode, client_ttl clamps the max-age from the origin (if specified), or else sets the response max-age directive to the lesser of the client_ttl and default_ttl, and also ensures a "public" cache-control directive is present. If a client TTL is not specified, a default value (1 hour) will be used. The maximum allowed value is 31,622,400s (1 year).
|
4014
4039
|
# @!attribute [rw] default_ttl
|
4015
4040
|
# @return [::Integer]
|
4016
|
-
# Specifies the default TTL for cached content served by this origin for responses that do not have an existing valid TTL (max-age or s-
|
4041
|
+
# Specifies the default TTL for cached content served by this origin for responses that do not have an existing valid TTL (max-age or s-maxage). Setting a TTL of "0" means "always revalidate". The value of defaultTTL cannot be set to a value greater than that of maxTTL, but can be equal. When the cacheMode is set to FORCE_CACHE_ALL, the defaultTTL will overwrite the TTL set in all responses. The maximum allowed value is 31,622,400s (1 year), noting that infrequently accessed objects may be evicted from the cache before the defined TTL.
|
4017
4042
|
# @!attribute [rw] max_ttl
|
4018
4043
|
# @return [::Integer]
|
4019
4044
|
# Specifies the maximum allowed TTL for cached content served by this origin. Cache directives that attempt to set a max-age or s-maxage higher than this, or an Expires header more than maxTTL seconds in the future will be capped at the value of maxTTL, as if it were the value of an s-maxage Cache-Control directive. Headers sent to the client will not be modified. Setting a TTL of "0" means "always revalidate". The maximum allowed value is 31,622,400s (1 year), noting that infrequently accessed objects may be evicted from the cache before the defined TTL.
|
@@ -4028,7 +4053,7 @@ module Google
|
|
4028
4053
|
# If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests to the origin.
|
4029
4054
|
# @!attribute [rw] serve_while_stale
|
4030
4055
|
# @return [::Integer]
|
4031
|
-
# Serve existing content from the cache (if available) when revalidating content with the origin, or when an error is encountered when refreshing the cache. This setting defines the default "max-stale" duration for any cached responses that do not specify a max-stale directive. Stale responses that exceed the TTL configured here will not be served. The default limit (max-stale) is 86400s (1 day), which will allow stale content to be served up to this limit beyond the max-age (or s-
|
4056
|
+
# Serve existing content from the cache (if available) when revalidating content with the origin, or when an error is encountered when refreshing the cache. This setting defines the default "max-stale" duration for any cached responses that do not specify a max-stale directive. Stale responses that exceed the TTL configured here will not be served. The default limit (max-stale) is 86400s (1 day), which will allow stale content to be served up to this limit beyond the max-age (or s-maxage) of a cached response. The maximum allowed value is 604800 (1 week). Set this to zero (0) to disable serve-while-stale.
|
4032
4057
|
# @!attribute [rw] signed_url_cache_max_age_sec
|
4033
4058
|
# @return [::Integer]
|
4034
4059
|
# Maximum number of seconds the response to a signed URL request will be considered fresh. After this time period, the response will be revalidated before being served. Defaults to 1hr (3600s). When serving responses to signed URL requests, Cloud CDN will internally behave as though all responses from this backend had a "Cache-Control: public, max-age=[TTL]" header, regardless of any existing Cache-Control header. The actual headers served in responses will not be altered.
|
@@ -4174,13 +4199,13 @@ module Google
|
|
4174
4199
|
|
4175
4200
|
# @!attribute [rw] fast_i_p_move
|
4176
4201
|
# @return [::String]
|
4177
|
-
# Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it. Supported values are: - DISABLED: Fast IP Move is disabled. You can only use the haPolicy.leader API to update the leader. - >GARP_RA: Provides a method to very quickly define a new network endpoint as the leader. This method is faster than updating the leader using the haPolicy.leader API. Fast IP move works as follows: The VM hosting the network endpoint that should become the new leader sends either a Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA) packet (IPv6). Google Cloud immediately but temporarily associates the forwarding rule IP address with that VM, and both new and in-flight packets are quickly delivered to that VM. Note the important properties of the Fast IP Move functionality: - The GARP/RA-initiated re-routing stays active for approximately 20 minutes. After triggering fast failover, you must also appropriately set the haPolicy.leader. - The new leader instance should continue to send GARP/RA packets periodically every 10 seconds until at least 10 minutes after updating the haPolicy.leader (but stop immediately if it is no longer the leader). - After triggering a fast failover, we recommend that you wait at least 3 seconds before sending another GARP/RA packet from a different VM instance to avoid race conditions. - Don't send GARP/RA packets from different VM instances at the same time. If multiple instances continue to send GARP/RA packets, traffic might be routed to different destinations in an alternating order. This condition ceases when a single instance issues a GARP/RA packet. - The GARP/RA request always takes priority over the leader API. Using the haPolicy.leader API to change the leader to a different instance will have no effect until the GARP/RA request becomes inactive. - The GARP/RA packets should follow the GARP/RA Packet Specifications.. - When multiple forwarding rules refer to a regional backend service, you need only send a GARP or RA packet for a single forwarding rule virtual IP. The virtual IPs for all forwarding rules targeting the same backend service will also be moved to the sender of the GARP or RA packet. The following are the Fast IP Move limitations (that is, when fastIPMove is not DISABLED): - Multiple forwarding rules cannot use the same IP address if one of them refers to a regional backend service with fastIPMove. - The regional backend service must set the network field, and all NEGs must belong to that network. However, individual NEGs can belong to different subnetworks of that network. - The maximum number of network endpoints across all backends of a backend service with fastIPMove is 64. - The maximum number of backend services with fastIPMove that can have the same network endpoint attached to one of its backends is 64. - The maximum number of backend services with fastIPMove in a VPC in a region is 64. - The network endpoints that are attached to a backend of a backend service with fastIPMove cannot resolve to
|
4202
|
+
# Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it. Supported values are: - DISABLED: Fast IP Move is disabled. You can only use the haPolicy.leader API to update the leader. - >GARP_RA: Provides a method to very quickly define a new network endpoint as the leader. This method is faster than updating the leader using the haPolicy.leader API. Fast IP move works as follows: The VM hosting the network endpoint that should become the new leader sends either a Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA) packet (IPv6). Google Cloud immediately but temporarily associates the forwarding rule IP address with that VM, and both new and in-flight packets are quickly delivered to that VM. Note the important properties of the Fast IP Move functionality: - The GARP/RA-initiated re-routing stays active for approximately 20 minutes. After triggering fast failover, you must also appropriately set the haPolicy.leader. - The new leader instance should continue to send GARP/RA packets periodically every 10 seconds until at least 10 minutes after updating the haPolicy.leader (but stop immediately if it is no longer the leader). - After triggering a fast failover, we recommend that you wait at least 3 seconds before sending another GARP/RA packet from a different VM instance to avoid race conditions. - Don't send GARP/RA packets from different VM instances at the same time. If multiple instances continue to send GARP/RA packets, traffic might be routed to different destinations in an alternating order. This condition ceases when a single instance issues a GARP/RA packet. - The GARP/RA request always takes priority over the leader API. Using the haPolicy.leader API to change the leader to a different instance will have no effect until the GARP/RA request becomes inactive. - The GARP/RA packets should follow the GARP/RA Packet Specifications.. - When multiple forwarding rules refer to a regional backend service, you need only send a GARP or RA packet for a single forwarding rule virtual IP. The virtual IPs for all forwarding rules targeting the same backend service will also be moved to the sender of the GARP or RA packet. The following are the Fast IP Move limitations (that is, when fastIPMove is not DISABLED): - Multiple forwarding rules cannot use the same IP address if one of them refers to a regional backend service with fastIPMove. - The regional backend service must set the network field, and all NEGs must belong to that network. However, individual NEGs can belong to different subnetworks of that network. - The maximum number of network endpoints across all backends of a backend service with fastIPMove is 64. - The maximum number of backend services with fastIPMove that can have the same network endpoint attached to one of its backends is 64. - The maximum number of backend services with fastIPMove in a VPC in a region is 64. - The network endpoints that are attached to a backend of a backend service with fastIPMove cannot resolve to Gen3+ machines for IPv6. - Traffic directed to the leader by a static route next hop will not be redirected to a new leader by fast failover. Such traffic will only be redirected once an haPolicy.leader update has taken effect. Only traffic to the forwarding rule's virtual IP will be redirected to a new leader by fast failover. haPolicy.fastIPMove can be set only at backend service creation time. Once set, it cannot be updated. By default, fastIpMove is set to DISABLED.
|
4178
4203
|
# Check the FastIPMove enum for the list of possible values.
|
4179
4204
|
class BackendServiceHAPolicy
|
4180
4205
|
include ::Google::Protobuf::MessageExts
|
4181
4206
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4182
4207
|
|
4183
|
-
# Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it. Supported values are: - DISABLED: Fast IP Move is disabled. You can only use the haPolicy.leader API to update the leader. - >GARP_RA: Provides a method to very quickly define a new network endpoint as the leader. This method is faster than updating the leader using the haPolicy.leader API. Fast IP move works as follows: The VM hosting the network endpoint that should become the new leader sends either a Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA) packet (IPv6). Google Cloud immediately but temporarily associates the forwarding rule IP address with that VM, and both new and in-flight packets are quickly delivered to that VM. Note the important properties of the Fast IP Move functionality: - The GARP/RA-initiated re-routing stays active for approximately 20 minutes. After triggering fast failover, you must also appropriately set the haPolicy.leader. - The new leader instance should continue to send GARP/RA packets periodically every 10 seconds until at least 10 minutes after updating the haPolicy.leader (but stop immediately if it is no longer the leader). - After triggering a fast failover, we recommend that you wait at least 3 seconds before sending another GARP/RA packet from a different VM instance to avoid race conditions. - Don't send GARP/RA packets from different VM instances at the same time. If multiple instances continue to send GARP/RA packets, traffic might be routed to different destinations in an alternating order. This condition ceases when a single instance issues a GARP/RA packet. - The GARP/RA request always takes priority over the leader API. Using the haPolicy.leader API to change the leader to a different instance will have no effect until the GARP/RA request becomes inactive. - The GARP/RA packets should follow the GARP/RA Packet Specifications.. - When multiple forwarding rules refer to a regional backend service, you need only send a GARP or RA packet for a single forwarding rule virtual IP. The virtual IPs for all forwarding rules targeting the same backend service will also be moved to the sender of the GARP or RA packet. The following are the Fast IP Move limitations (that is, when fastIPMove is not DISABLED): - Multiple forwarding rules cannot use the same IP address if one of them refers to a regional backend service with fastIPMove. - The regional backend service must set the network field, and all NEGs must belong to that network. However, individual NEGs can belong to different subnetworks of that network. - The maximum number of network endpoints across all backends of a backend service with fastIPMove is 64. - The maximum number of backend services with fastIPMove that can have the same network endpoint attached to one of its backends is 64. - The maximum number of backend services with fastIPMove in a VPC in a region is 64. - The network endpoints that are attached to a backend of a backend service with fastIPMove cannot resolve to
|
4208
|
+
# Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it. Supported values are: - DISABLED: Fast IP Move is disabled. You can only use the haPolicy.leader API to update the leader. - >GARP_RA: Provides a method to very quickly define a new network endpoint as the leader. This method is faster than updating the leader using the haPolicy.leader API. Fast IP move works as follows: The VM hosting the network endpoint that should become the new leader sends either a Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA) packet (IPv6). Google Cloud immediately but temporarily associates the forwarding rule IP address with that VM, and both new and in-flight packets are quickly delivered to that VM. Note the important properties of the Fast IP Move functionality: - The GARP/RA-initiated re-routing stays active for approximately 20 minutes. After triggering fast failover, you must also appropriately set the haPolicy.leader. - The new leader instance should continue to send GARP/RA packets periodically every 10 seconds until at least 10 minutes after updating the haPolicy.leader (but stop immediately if it is no longer the leader). - After triggering a fast failover, we recommend that you wait at least 3 seconds before sending another GARP/RA packet from a different VM instance to avoid race conditions. - Don't send GARP/RA packets from different VM instances at the same time. If multiple instances continue to send GARP/RA packets, traffic might be routed to different destinations in an alternating order. This condition ceases when a single instance issues a GARP/RA packet. - The GARP/RA request always takes priority over the leader API. Using the haPolicy.leader API to change the leader to a different instance will have no effect until the GARP/RA request becomes inactive. - The GARP/RA packets should follow the GARP/RA Packet Specifications.. - When multiple forwarding rules refer to a regional backend service, you need only send a GARP or RA packet for a single forwarding rule virtual IP. The virtual IPs for all forwarding rules targeting the same backend service will also be moved to the sender of the GARP or RA packet. The following are the Fast IP Move limitations (that is, when fastIPMove is not DISABLED): - Multiple forwarding rules cannot use the same IP address if one of them refers to a regional backend service with fastIPMove. - The regional backend service must set the network field, and all NEGs must belong to that network. However, individual NEGs can belong to different subnetworks of that network. - The maximum number of network endpoints across all backends of a backend service with fastIPMove is 64. - The maximum number of backend services with fastIPMove that can have the same network endpoint attached to one of its backends is 64. - The maximum number of backend services with fastIPMove in a VPC in a region is 64. - The network endpoints that are attached to a backend of a backend service with fastIPMove cannot resolve to Gen3+ machines for IPv6. - Traffic directed to the leader by a static route next hop will not be redirected to a new leader by fast failover. Such traffic will only be redirected once an haPolicy.leader update has taken effect. Only traffic to the forwarding rule's virtual IP will be redirected to a new leader by fast failover. haPolicy.fastIPMove can be set only at backend service creation time. Once set, it cannot be updated. By default, fastIpMove is set to DISABLED.
|
4184
4209
|
module FastIPMove
|
4185
4210
|
# A value indicating that the enum field is not set.
|
4186
4211
|
UNDEFINED_FAST_I_P_MOVE = 0
|
@@ -4854,6 +4879,9 @@ module Google
|
|
4854
4879
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4855
4880
|
end
|
4856
4881
|
|
4882
|
+
# @!attribute [rw] cache_tags
|
4883
|
+
# @return [::Array<::String>]
|
4884
|
+
# A list of cache tags used to identify cached objects. - Cache tags are specified when the response is first cached, by setting the `Cache-Tag` response header at the origin. - Multiple cache tags in the same invalidation request are treated as Boolean `OR` - for example, `tag1 OR tag2 OR tag3`. - If other fields are also specified, these are treated as Boolean `AND` with any tags. Up to 10 tags can be specified in a single invalidation request.
|
4857
4885
|
# @!attribute [rw] host
|
4858
4886
|
# @return [::String]
|
4859
4887
|
# If set, this invalidation rule will only apply to requests with a Host header matching host.
|
@@ -5118,6 +5146,8 @@ module Google
|
|
5118
5146
|
|
5119
5147
|
ACCELERATOR_OPTIMIZED_A3_ULTRA = 27_812_811
|
5120
5148
|
|
5149
|
+
ACCELERATOR_OPTIMIZED_A4 = 158_574_527
|
5150
|
+
|
5121
5151
|
COMPUTE_OPTIMIZED = 158_349_023
|
5122
5152
|
|
5123
5153
|
COMPUTE_OPTIMIZED_C2D = 383_246_453
|
@@ -10542,6 +10572,24 @@ module Google
|
|
10542
10572
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
10543
10573
|
end
|
10544
10574
|
|
10575
|
+
# A request message for ReservationBlocks.Get. See the method description for details.
|
10576
|
+
# @!attribute [rw] project
|
10577
|
+
# @return [::String]
|
10578
|
+
# Project ID for this request.
|
10579
|
+
# @!attribute [rw] reservation
|
10580
|
+
# @return [::String]
|
10581
|
+
# The name of the reservation. Name should conform to RFC1035 or be a resource ID.
|
10582
|
+
# @!attribute [rw] reservation_block
|
10583
|
+
# @return [::String]
|
10584
|
+
# The name of the reservation block. Name should conform to RFC1035 or be a resource ID.
|
10585
|
+
# @!attribute [rw] zone
|
10586
|
+
# @return [::String]
|
10587
|
+
# Name of the zone for this request. Zone name should conform to RFC1035.
|
10588
|
+
class GetReservationBlockRequest
|
10589
|
+
include ::Google::Protobuf::MessageExts
|
10590
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
10591
|
+
end
|
10592
|
+
|
10545
10593
|
# A request message for Reservations.Get. See the method description for details.
|
10546
10594
|
# @!attribute [rw] project
|
10547
10595
|
# @return [::String]
|
@@ -11175,6 +11223,40 @@ module Google
|
|
11175
11223
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
11176
11224
|
end
|
11177
11225
|
|
11226
|
+
# Maintenance Info for ReservationBlocks.
|
11227
|
+
# @!attribute [rw] maintenance_ongoing_count
|
11228
|
+
# @return [::Integer]
|
11229
|
+
# Progress for ongoing maintenance for this group of VMs/hosts. Describes number of hosts in the block that have ongoing maintenance.
|
11230
|
+
# @!attribute [rw] maintenance_pending_count
|
11231
|
+
# @return [::Integer]
|
11232
|
+
# Progress for ongoing maintenance for this group of VMs/hosts. Describes number of hosts in the block that have pending maintenance.
|
11233
|
+
# @!attribute [rw] scheduling_type
|
11234
|
+
# @return [::String]
|
11235
|
+
# The type of maintenance for the reservation.
|
11236
|
+
# Check the SchedulingType enum for the list of possible values.
|
11237
|
+
# @!attribute [rw] upcoming_group_maintenance
|
11238
|
+
# @return [::Google::Cloud::Compute::V1::UpcomingMaintenance]
|
11239
|
+
# Maintenance information on this group of VMs.
|
11240
|
+
class GroupMaintenanceInfo
|
11241
|
+
include ::Google::Protobuf::MessageExts
|
11242
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
11243
|
+
|
11244
|
+
# The type of maintenance for the reservation.
|
11245
|
+
module SchedulingType
|
11246
|
+
# A value indicating that the enum field is not set.
|
11247
|
+
UNDEFINED_SCHEDULING_TYPE = 0
|
11248
|
+
|
11249
|
+
# Maintenance on all reserved instances in the reservation is synchronized.
|
11250
|
+
GROUPED = 474_540_862
|
11251
|
+
|
11252
|
+
# Unknown maintenance type.
|
11253
|
+
GROUP_MAINTENANCE_TYPE_UNSPECIFIED = 447_183_678
|
11254
|
+
|
11255
|
+
# Maintenance is not synchronized for this reservation. Instead, each instance has its own maintenance window.
|
11256
|
+
INDEPENDENT = 127_011_674
|
11257
|
+
end
|
11258
|
+
end
|
11259
|
+
|
11178
11260
|
# A guest attributes entry.
|
11179
11261
|
# @!attribute [rw] kind
|
11180
11262
|
# @return [::String]
|
@@ -11225,13 +11307,13 @@ module Google
|
|
11225
11307
|
# Guest OS features.
|
11226
11308
|
# @!attribute [rw] type
|
11227
11309
|
# @return [::String]
|
11228
|
-
# The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE_V2 - SEV_SNP_CAPABLE - TDX_CAPABLE - IDPF For more information, see Enabling guest operating system features.
|
11310
|
+
# The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE_V2 - SEV_SNP_CAPABLE - TDX_CAPABLE - IDPF - SNP_SVSM_CAPABLE For more information, see Enabling guest operating system features.
|
11229
11311
|
# Check the Type enum for the list of possible values.
|
11230
11312
|
class GuestOsFeature
|
11231
11313
|
include ::Google::Protobuf::MessageExts
|
11232
11314
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
11233
11315
|
|
11234
|
-
# The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE_V2 - SEV_SNP_CAPABLE - TDX_CAPABLE - IDPF For more information, see Enabling guest operating system features.
|
11316
|
+
# The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE_V2 - SEV_SNP_CAPABLE - TDX_CAPABLE - IDPF - SNP_SVSM_CAPABLE For more information, see Enabling guest operating system features.
|
11235
11317
|
module Type
|
11236
11318
|
# A value indicating that the enum field is not set.
|
11237
11319
|
UNDEFINED_TYPE = 0
|
@@ -15526,7 +15608,7 @@ module Google
|
|
15526
15608
|
|
15527
15609
|
# @!attribute [rw] disruption_schedule
|
15528
15610
|
# @return [::String]
|
15529
|
-
# The disruption schedule for the VM.
|
15611
|
+
# The disruption schedule for the VM. Required field, only allows IMMEDIATE.
|
15530
15612
|
# Check the DisruptionSchedule enum for the list of possible values.
|
15531
15613
|
# @!attribute [rw] fault_reasons
|
15532
15614
|
# @return [::Array<::Google::Cloud::Compute::V1::InstancesReportHostAsFaultyRequestFaultReason>]
|
@@ -15534,7 +15616,7 @@ module Google
|
|
15534
15616
|
include ::Google::Protobuf::MessageExts
|
15535
15617
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
15536
15618
|
|
15537
|
-
# The disruption schedule for the VM.
|
15619
|
+
# The disruption schedule for the VM. Required field, only allows IMMEDIATE.
|
15538
15620
|
module DisruptionSchedule
|
15539
15621
|
# A value indicating that the enum field is not set.
|
15540
15622
|
UNDEFINED_DISRUPTION_SCHEDULE = 0
|
@@ -16679,7 +16761,7 @@ module Google
|
|
16679
16761
|
# Check the AvailableFeatures enum for the list of possible values.
|
16680
16762
|
# @!attribute [rw] available_link_types
|
16681
16763
|
# @return [::Array<::String>]
|
16682
|
-
# [Output only] List of link types available at this InterconnectLocation, which can take one of the following values: - LINK_TYPE_ETHERNET_10G_LR - LINK_TYPE_ETHERNET_100G_LR
|
16764
|
+
# [Output only] List of link types available at this InterconnectLocation, which can take one of the following values: - LINK_TYPE_ETHERNET_10G_LR - LINK_TYPE_ETHERNET_100G_LR - LINK_TYPE_ETHERNET_400G_LR4
|
16683
16765
|
# Check the AvailableLinkTypes enum for the list of possible values.
|
16684
16766
|
# @!attribute [rw] city
|
16685
16767
|
# @return [::String]
|
@@ -19740,6 +19822,36 @@ module Google
|
|
19740
19822
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
19741
19823
|
end
|
19742
19824
|
|
19825
|
+
# A request message for ReservationBlocks.List. See the method description for details.
|
19826
|
+
# @!attribute [rw] filter
|
19827
|
+
# @return [::String]
|
19828
|
+
# A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request. If you want to use AIP-160, your expression must specify the field name, an operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute Engine instances, you can exclude instances named `example-instance` by specifying `name != example-instance`. The `:*` comparison can be used to test whether a key has been defined. For example, to find all objects with `owner` label use: ``` labels.owner:* ``` You can also filter nested fields. For example, you could specify `scheduling.automaticRestart = false` to include instances only if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels. To filter on multiple expressions, provide each separate expression within parentheses. For example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND` expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.automaticRestart = true) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`. You cannot combine constraints on multiple fields using regular expressions.
|
19829
|
+
# @!attribute [rw] max_results
|
19830
|
+
# @return [::Integer]
|
19831
|
+
# The maximum number of results per page that should be returned. If the number of available results is larger than `maxResults`, Compute Engine returns a `nextPageToken` that can be used to get the next page of results in subsequent list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`)
|
19832
|
+
# @!attribute [rw] order_by
|
19833
|
+
# @return [::String]
|
19834
|
+
# Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. You can also sort results in descending order based on the creation timestamp using `orderBy="creationTimestamp desc"`. This sorts results based on the `creationTimestamp` field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first. Currently, only sorting by `name` or `creationTimestamp desc` is supported.
|
19835
|
+
# @!attribute [rw] page_token
|
19836
|
+
# @return [::String]
|
19837
|
+
# Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results.
|
19838
|
+
# @!attribute [rw] project
|
19839
|
+
# @return [::String]
|
19840
|
+
# Project ID for this request.
|
19841
|
+
# @!attribute [rw] reservation
|
19842
|
+
# @return [::String]
|
19843
|
+
# The name of the reservation. Name should conform to RFC1035 or be a resource ID.
|
19844
|
+
# @!attribute [rw] return_partial_success
|
19845
|
+
# @return [::Boolean]
|
19846
|
+
# Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code.
|
19847
|
+
# @!attribute [rw] zone
|
19848
|
+
# @return [::String]
|
19849
|
+
# Name of the zone for this request. Zone name should conform to RFC1035.
|
19850
|
+
class ListReservationBlocksRequest
|
19851
|
+
include ::Google::Protobuf::MessageExts
|
19852
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
19853
|
+
end
|
19854
|
+
|
19743
19855
|
# A request message for Reservations.List. See the method description for details.
|
19744
19856
|
# @!attribute [rw] filter
|
19745
19857
|
# @return [::String]
|
@@ -20629,6 +20741,12 @@ module Google
|
|
20629
20741
|
# @!attribute [rw] kind
|
20630
20742
|
# @return [::String]
|
20631
20743
|
# [Output Only] The resource type, which is always compute#machineImage for machine image.
|
20744
|
+
# @!attribute [rw] label_fingerprint
|
20745
|
+
# @return [::String]
|
20746
|
+
# A fingerprint for the labels being applied to this machine image, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels. To see the latest fingerprint, make get() request to the machine image.
|
20747
|
+
# @!attribute [rw] labels
|
20748
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
20749
|
+
# Labels to apply to this machine image. These can be later modified by the setLabels method.
|
20632
20750
|
# @!attribute [rw] machine_image_encryption_key
|
20633
20751
|
# @return [::Google::Cloud::Compute::V1::CustomerEncryptionKey]
|
20634
20752
|
# Encrypts the machine image using a customer-supplied encryption key. After you encrypt a machine image using a customer-supplied key, you must provide the same key if you use the machine image later. For example, you must provide the encryption key when you create an instance from the encrypted machine image in a future request. Customer-supplied encryption keys do not protect access to metadata of the machine image. If you do not provide an encryption key when creating the machine image, then the machine image will be encrypted using an automatically generated key and you do not need to provide a key to use the machine image later.
|
@@ -20670,6 +20788,15 @@ module Google
|
|
20670
20788
|
include ::Google::Protobuf::MessageExts
|
20671
20789
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
20672
20790
|
|
20791
|
+
# @!attribute [rw] key
|
20792
|
+
# @return [::String]
|
20793
|
+
# @!attribute [rw] value
|
20794
|
+
# @return [::String]
|
20795
|
+
class LabelsEntry
|
20796
|
+
include ::Google::Protobuf::MessageExts
|
20797
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
20798
|
+
end
|
20799
|
+
|
20673
20800
|
# [Output Only] The status of the machine image. One of the following values: INVALID, CREATING, READY, DELETING, and UPLOADING.
|
20674
20801
|
module Status
|
20675
20802
|
# A value indicating that the enum field is not set.
|
@@ -22146,7 +22273,7 @@ module Google
|
|
22146
22273
|
# The URL of the peer network. It can be either full URL or partial URL. The peer network may belong to a different project. If the partial URL does not contain project, it is assumed that the peer network is in the same project as the current network.
|
22147
22274
|
# @!attribute [rw] peer_mtu
|
22148
22275
|
# @return [::Integer]
|
22149
|
-
# Maximum Transmission Unit in bytes.
|
22276
|
+
# [Output Only] Maximum Transmission Unit in bytes of the peer network.
|
22150
22277
|
# @!attribute [rw] stack_type
|
22151
22278
|
# @return [::String]
|
22152
22279
|
# Which IP version(s) of traffic and routes are allowed to be imported or exported between peer networks. The default value is IPV4_ONLY.
|
@@ -22284,6 +22411,10 @@ module Google
|
|
22284
22411
|
# @return [::String]
|
22285
22412
|
# Specifies whether cloud router creation is allowed.
|
22286
22413
|
# Check the AllowCloudRouter enum for the list of possible values.
|
22414
|
+
# @!attribute [rw] allow_default_nic_attachment
|
22415
|
+
# @return [::String]
|
22416
|
+
# Specifies whether default NIC attachment is allowed.
|
22417
|
+
# Check the AllowDefaultNicAttachment enum for the list of possible values.
|
22287
22418
|
# @!attribute [rw] allow_external_ip_access
|
22288
22419
|
# @return [::String]
|
22289
22420
|
# Specifies whether VMs are allowed to have external IP access on network interfaces connected to this VPC.
|
@@ -22292,6 +22423,10 @@ module Google
|
|
22292
22423
|
# @return [::String]
|
22293
22424
|
# Specifies whether Cloud Interconnect creation is allowed.
|
22294
22425
|
# Check the AllowInterconnect enum for the list of possible values.
|
22426
|
+
# @!attribute [rw] allow_ip_forwarding
|
22427
|
+
# @return [::String]
|
22428
|
+
# Specifies whether IP forwarding is allowed.
|
22429
|
+
# Check the AllowIpForwarding enum for the list of possible values.
|
22295
22430
|
# @!attribute [rw] allow_load_balancing
|
22296
22431
|
# @return [::String]
|
22297
22432
|
# Specifies whether cloud load balancing is allowed.
|
@@ -22300,6 +22435,14 @@ module Google
|
|
22300
22435
|
# @return [::String]
|
22301
22436
|
# Specifies whether multi-nic in the same network is allowed.
|
22302
22437
|
# Check the AllowMultiNicInSameNetwork enum for the list of possible values.
|
22438
|
+
# @!attribute [rw] allow_ncc
|
22439
|
+
# @return [::String]
|
22440
|
+
# Specifies whether NCC is allowed.
|
22441
|
+
# Check the AllowNcc enum for the list of possible values.
|
22442
|
+
# @!attribute [rw] allow_network_migration
|
22443
|
+
# @return [::String]
|
22444
|
+
# Specifies whether VM network migration is allowed.
|
22445
|
+
# Check the AllowNetworkMigration enum for the list of possible values.
|
22303
22446
|
# @!attribute [rw] allow_packet_mirroring
|
22304
22447
|
# @return [::String]
|
22305
22448
|
# Specifies whether Packet Mirroring 1.0 is supported.
|
@@ -22344,6 +22487,14 @@ module Google
|
|
22344
22487
|
# @return [::Array<::String>]
|
22345
22488
|
# Specifies which subnetwork stack types are supported.
|
22346
22489
|
# Check the SubnetStackTypes enum for the list of possible values.
|
22490
|
+
# @!attribute [rw] subnetwork_purposes
|
22491
|
+
# @return [::Array<::String>]
|
22492
|
+
# Specifies which subnetwork purposes are supported.
|
22493
|
+
# Check the SubnetworkPurposes enum for the list of possible values.
|
22494
|
+
# @!attribute [rw] subnetwork_stack_types
|
22495
|
+
# @return [::Array<::String>]
|
22496
|
+
# Specifies which subnetwork stack types are supported.
|
22497
|
+
# Check the SubnetworkStackTypes enum for the list of possible values.
|
22347
22498
|
# @!attribute [rw] unicast
|
22348
22499
|
# @return [::String]
|
22349
22500
|
# Specifies which type of unicast is supported.
|
@@ -22352,7 +22503,8 @@ module Google
|
|
22352
22503
|
include ::Google::Protobuf::MessageExts
|
22353
22504
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
22354
22505
|
|
22355
|
-
|
22506
|
+
# Additional supported values which may be not listed in the enum directly due to technical reasons:
|
22507
|
+
# PRIVATE_SERVICE_CONNECT
|
22356
22508
|
module AddressPurposes
|
22357
22509
|
# A value indicating that the enum field is not set.
|
22358
22510
|
UNDEFINED_ADDRESS_PURPOSES = 0
|
@@ -22369,7 +22521,6 @@ module Google
|
|
22369
22521
|
# External IP automatically reserved for Cloud NAT.
|
22370
22522
|
NAT_AUTO = 163_666_477
|
22371
22523
|
|
22372
|
-
# A private network IP address that can be used to configure Private Service Connect. This purpose can be specified only for GLOBAL addresses of Type INTERNAL
|
22373
22524
|
PRIVATE_SERVICE_CONNECT = 48_134_724
|
22374
22525
|
|
22375
22526
|
# A regional internal IP address range reserved for Serverless.
|
@@ -22432,6 +22583,16 @@ module Google
|
|
22432
22583
|
CLOUD_ROUTER_BLOCKED = 181_551_680
|
22433
22584
|
end
|
22434
22585
|
|
22586
|
+
# Specifies whether default NIC attachment is allowed.
|
22587
|
+
module AllowDefaultNicAttachment
|
22588
|
+
# A value indicating that the enum field is not set.
|
22589
|
+
UNDEFINED_ALLOW_DEFAULT_NIC_ATTACHMENT = 0
|
22590
|
+
|
22591
|
+
DEFAULT_NIC_ATTACHMENT_ALLOWED = 11_570_689
|
22592
|
+
|
22593
|
+
DEFAULT_NIC_ATTACHMENT_BLOCKED = 364_604_997
|
22594
|
+
end
|
22595
|
+
|
22435
22596
|
# Specifies whether VMs are allowed to have external IP access on network interfaces connected to this VPC.
|
22436
22597
|
module AllowExternalIpAccess
|
22437
22598
|
# A value indicating that the enum field is not set.
|
@@ -22452,6 +22613,16 @@ module Google
|
|
22452
22613
|
INTERCONNECT_BLOCKED = 515_879_707
|
22453
22614
|
end
|
22454
22615
|
|
22616
|
+
# Specifies whether IP forwarding is allowed.
|
22617
|
+
module AllowIpForwarding
|
22618
|
+
# A value indicating that the enum field is not set.
|
22619
|
+
UNDEFINED_ALLOW_IP_FORWARDING = 0
|
22620
|
+
|
22621
|
+
IP_FORWARDING_ALLOWED = 152_595_550
|
22622
|
+
|
22623
|
+
IP_FORWARDING_BLOCKED = 505_629_858
|
22624
|
+
end
|
22625
|
+
|
22455
22626
|
# Specifies whether cloud load balancing is allowed.
|
22456
22627
|
module AllowLoadBalancing
|
22457
22628
|
# A value indicating that the enum field is not set.
|
@@ -22472,6 +22643,26 @@ module Google
|
|
22472
22643
|
MULTI_NIC_IN_SAME_NETWORK_BLOCKED = 273_718_815
|
22473
22644
|
end
|
22474
22645
|
|
22646
|
+
# Specifies whether NCC is allowed.
|
22647
|
+
module AllowNcc
|
22648
|
+
# A value indicating that the enum field is not set.
|
22649
|
+
UNDEFINED_ALLOW_NCC = 0
|
22650
|
+
|
22651
|
+
NCC_ALLOWED = 467_227_511
|
22652
|
+
|
22653
|
+
NCC_BLOCKED = 283_390_907
|
22654
|
+
end
|
22655
|
+
|
22656
|
+
# Specifies whether VM network migration is allowed.
|
22657
|
+
module AllowNetworkMigration
|
22658
|
+
# A value indicating that the enum field is not set.
|
22659
|
+
UNDEFINED_ALLOW_NETWORK_MIGRATION = 0
|
22660
|
+
|
22661
|
+
NETWORK_MIGRATION_ALLOWED = 14_389_766
|
22662
|
+
|
22663
|
+
NETWORK_MIGRATION_BLOCKED = 367_424_074
|
22664
|
+
end
|
22665
|
+
|
22475
22666
|
# Specifies whether Packet Mirroring 1.0 is supported.
|
22476
22667
|
module AllowPacketMirroring
|
22477
22668
|
# A value indicating that the enum field is not set.
|
@@ -22595,6 +22786,48 @@ module Google
|
|
22595
22786
|
SUBNET_STACK_TYPE_IPV6_ONLY = 98_889_336
|
22596
22787
|
end
|
22597
22788
|
|
22789
|
+
# Additional supported values which may be not listed in the enum directly due to technical reasons:
|
22790
|
+
# PRIVATE_SERVICE_CONNECT
|
22791
|
+
module SubnetworkPurposes
|
22792
|
+
# A value indicating that the enum field is not set.
|
22793
|
+
UNDEFINED_SUBNETWORK_PURPOSES = 0
|
22794
|
+
|
22795
|
+
# Subnet reserved for Global Envoy-based Load Balancing.
|
22796
|
+
GLOBAL_MANAGED_PROXY = 236_463_602
|
22797
|
+
|
22798
|
+
# Subnet reserved for Internal HTTP(S) Load Balancing. This is a legacy purpose, please use REGIONAL_MANAGED_PROXY instead.
|
22799
|
+
INTERNAL_HTTPS_LOAD_BALANCER = 248_748_889
|
22800
|
+
|
22801
|
+
# Subnetwork will be used for Migration from one peered VPC to another. (a transient state of subnetwork while migrating resources from one project to another).
|
22802
|
+
PEER_MIGRATION = 491_902_225
|
22803
|
+
|
22804
|
+
# Regular user created or automatically created subnet.
|
22805
|
+
PRIVATE = 403_485_027
|
22806
|
+
|
22807
|
+
# Subnetwork used as source range for Private NAT Gateways.
|
22808
|
+
PRIVATE_NAT = 367_764_517
|
22809
|
+
|
22810
|
+
# Regular user created or automatically created subnet.
|
22811
|
+
PRIVATE_RFC_1918 = 254_902_107
|
22812
|
+
|
22813
|
+
# Subnetwork used for Regional Envoy-based Load Balancing.
|
22814
|
+
REGIONAL_MANAGED_PROXY = 153_049_966
|
22815
|
+
end
|
22816
|
+
|
22817
|
+
module SubnetworkStackTypes
|
22818
|
+
# A value indicating that the enum field is not set.
|
22819
|
+
UNDEFINED_SUBNETWORK_STACK_TYPES = 0
|
22820
|
+
|
22821
|
+
# New VMs in this subnet can have both IPv4 and IPv6 addresses.
|
22822
|
+
IPV4_IPV6 = 22_197_249
|
22823
|
+
|
22824
|
+
# New VMs in this subnet will only be assigned IPv4 addresses.
|
22825
|
+
IPV4_ONLY = 22_373_798
|
22826
|
+
|
22827
|
+
# New VMs in this subnet will only be assigned IPv6 addresses.
|
22828
|
+
IPV6_ONLY = 79_632_100
|
22829
|
+
end
|
22830
|
+
|
22598
22831
|
# Specifies which type of unicast is supported.
|
22599
22832
|
module Unicast
|
22600
22833
|
# A value indicating that the enum field is not set.
|
@@ -25176,6 +25409,51 @@ module Google
|
|
25176
25409
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
25177
25410
|
end
|
25178
25411
|
|
25412
|
+
# A request message for ReservationBlocks.PerformMaintenance. See the method description for details.
|
25413
|
+
# @!attribute [rw] project
|
25414
|
+
# @return [::String]
|
25415
|
+
# Project ID for this request.
|
25416
|
+
# @!attribute [rw] request_id
|
25417
|
+
# @return [::String]
|
25418
|
+
# 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).
|
25419
|
+
# @!attribute [rw] reservation
|
25420
|
+
# @return [::String]
|
25421
|
+
# The name of the reservation. Name should conform to RFC1035 or be a resource ID.
|
25422
|
+
# @!attribute [rw] reservation_block
|
25423
|
+
# @return [::String]
|
25424
|
+
# The name of the reservation block. Name should conform to RFC1035 or be a resource ID.
|
25425
|
+
# @!attribute [rw] reservations_blocks_perform_maintenance_request_resource
|
25426
|
+
# @return [::Google::Cloud::Compute::V1::ReservationsBlocksPerformMaintenanceRequest]
|
25427
|
+
# The body resource for this request
|
25428
|
+
# @!attribute [rw] zone
|
25429
|
+
# @return [::String]
|
25430
|
+
# Name of the zone for this request. Zone name should conform to RFC1035.
|
25431
|
+
class PerformMaintenanceReservationBlockRequest
|
25432
|
+
include ::Google::Protobuf::MessageExts
|
25433
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
25434
|
+
end
|
25435
|
+
|
25436
|
+
# A request message for Reservations.PerformMaintenance. See the method description for details.
|
25437
|
+
# @!attribute [rw] project
|
25438
|
+
# @return [::String]
|
25439
|
+
# Project ID for this request.
|
25440
|
+
# @!attribute [rw] request_id
|
25441
|
+
# @return [::String]
|
25442
|
+
# 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).
|
25443
|
+
# @!attribute [rw] reservation
|
25444
|
+
# @return [::String]
|
25445
|
+
# The name of the reservation. Name should conform to RFC1035 or be a resource ID.
|
25446
|
+
# @!attribute [rw] reservations_perform_maintenance_request_resource
|
25447
|
+
# @return [::Google::Cloud::Compute::V1::ReservationsPerformMaintenanceRequest]
|
25448
|
+
# The body resource for this request
|
25449
|
+
# @!attribute [rw] zone
|
25450
|
+
# @return [::String]
|
25451
|
+
# Name of the zone for this request. Zone name should conform to RFC1035.
|
25452
|
+
class PerformMaintenanceReservationRequest
|
25453
|
+
include ::Google::Protobuf::MessageExts
|
25454
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
25455
|
+
end
|
25456
|
+
|
25179
25457
|
# An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). **JSON example:** ``` { "bindings": [ { "role": "roles/resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@appspot.gserviceaccount.com" ] }, { "role": "roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com" ], "condition": { "title": "expirable access", "description": "Does not grant access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", } } ], "etag": "BwWWja0YfJA=", "version": 3 } ``` **YAML example:** ``` bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the [IAM documentation](https://cloud.google.com/iam/docs/).
|
25180
25458
|
# @!attribute [rw] audit_configs
|
25181
25459
|
# @return [::Array<::Google::Cloud::Compute::V1::AuditConfig>]
|
@@ -27467,6 +27745,10 @@ module Google
|
|
27467
27745
|
# @!attribute [rw] creation_timestamp
|
27468
27746
|
# @return [::String]
|
27469
27747
|
# [Output Only] Creation timestamp in RFC3339 text format.
|
27748
|
+
# @!attribute [rw] deployment_type
|
27749
|
+
# @return [::String]
|
27750
|
+
# Specifies the deployment strategy for this reservation.
|
27751
|
+
# Check the DeploymentType enum for the list of possible values.
|
27470
27752
|
# @!attribute [rw] description
|
27471
27753
|
# @return [::String]
|
27472
27754
|
# An optional description of this resource. Provide this property when you create the resource.
|
@@ -27476,6 +27758,9 @@ module Google
|
|
27476
27758
|
# @!attribute [rw] kind
|
27477
27759
|
# @return [::String]
|
27478
27760
|
# [Output Only] Type of the resource. Always compute#reservations for reservations.
|
27761
|
+
# @!attribute [rw] linked_commitments
|
27762
|
+
# @return [::Array<::String>]
|
27763
|
+
# [Output Only] Full or partial URL to parent commitments. This field displays for reservations that are tied to multiple commitments.
|
27479
27764
|
# @!attribute [rw] name
|
27480
27765
|
# @return [::String]
|
27481
27766
|
# The name of the resource, provided by the client when initially creating the resource. The resource 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.
|
@@ -27523,6 +27808,17 @@ module Google
|
|
27523
27808
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
27524
27809
|
end
|
27525
27810
|
|
27811
|
+
# Specifies the deployment strategy for this reservation.
|
27812
|
+
module DeploymentType
|
27813
|
+
# A value indicating that the enum field is not set.
|
27814
|
+
UNDEFINED_DEPLOYMENT_TYPE = 0
|
27815
|
+
|
27816
|
+
# The reserved capacity is made up of densely deployed reservation blocks.
|
27817
|
+
DENSE = 64_932_607
|
27818
|
+
|
27819
|
+
DEPLOYMENT_TYPE_UNSPECIFIED = 234_847_180
|
27820
|
+
end
|
27821
|
+
|
27526
27822
|
# [Output Only] The status of the reservation. - CREATING: Reservation resources are being allocated. - READY: Reservation resources have been allocated, and the reservation is ready for use. - DELETING: Reservation deletion is in progress. - UPDATING: Reservation update is in progress.
|
27527
27823
|
module Status
|
27528
27824
|
# A value indicating that the enum field is not set.
|
@@ -27613,6 +27909,108 @@ module Google
|
|
27613
27909
|
end
|
27614
27910
|
end
|
27615
27911
|
|
27912
|
+
# Represents a reservation block resource.
|
27913
|
+
# @!attribute [rw] count
|
27914
|
+
# @return [::Integer]
|
27915
|
+
# [Output Only] The number of resources that are allocated in this reservation block.
|
27916
|
+
# @!attribute [rw] creation_timestamp
|
27917
|
+
# @return [::String]
|
27918
|
+
# [Output Only] Creation timestamp in RFC3339 text format.
|
27919
|
+
# @!attribute [rw] id
|
27920
|
+
# @return [::Integer]
|
27921
|
+
# [Output Only] The unique identifier for the resource. This identifier is defined by the server.
|
27922
|
+
# @!attribute [rw] in_use_count
|
27923
|
+
# @return [::Integer]
|
27924
|
+
# [Output Only] The number of instances that are currently in use on this reservation block.
|
27925
|
+
# @!attribute [rw] kind
|
27926
|
+
# @return [::String]
|
27927
|
+
# [Output Only] Type of the resource. Always compute#reservationBlock for reservation blocks.
|
27928
|
+
# @!attribute [rw] name
|
27929
|
+
# @return [::String]
|
27930
|
+
# [Output Only] The name of this reservation block generated by Google Compute Engine. The name must be 1-63 characters long, and comply with RFC1035 @pattern [a-z](?:[-a-z0-9]\\{0,61}[a-z0-9])?
|
27931
|
+
# @!attribute [rw] physical_topology
|
27932
|
+
# @return [::Google::Cloud::Compute::V1::ReservationBlockPhysicalTopology]
|
27933
|
+
# [Output Only] The physical topology of the reservation block.
|
27934
|
+
# @!attribute [rw] reservation_maintenance
|
27935
|
+
# @return [::Google::Cloud::Compute::V1::GroupMaintenanceInfo]
|
27936
|
+
# [Output Only] Maintenance information for this reservation block.
|
27937
|
+
# @!attribute [rw] self_link
|
27938
|
+
# @return [::String]
|
27939
|
+
# [Output Only] Server-defined fully-qualified URL for this resource.
|
27940
|
+
# @!attribute [rw] self_link_with_id
|
27941
|
+
# @return [::String]
|
27942
|
+
# [Output Only] Server-defined URL for this resource with the resource id.
|
27943
|
+
# @!attribute [rw] status
|
27944
|
+
# @return [::String]
|
27945
|
+
# [Output Only] Status of the reservation block.
|
27946
|
+
# Check the Status enum for the list of possible values.
|
27947
|
+
# @!attribute [rw] zone
|
27948
|
+
# @return [::String]
|
27949
|
+
# [Output Only] Zone in which the reservation block resides.
|
27950
|
+
class ReservationBlock
|
27951
|
+
include ::Google::Protobuf::MessageExts
|
27952
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
27953
|
+
|
27954
|
+
# [Output Only] Status of the reservation block.
|
27955
|
+
module Status
|
27956
|
+
# A value indicating that the enum field is not set.
|
27957
|
+
UNDEFINED_STATUS = 0
|
27958
|
+
|
27959
|
+
# Resources are being allocated for the reservation block.
|
27960
|
+
CREATING = 455_564_985
|
27961
|
+
|
27962
|
+
# Reservation block is currently being deleted.
|
27963
|
+
DELETING = 528_602_024
|
27964
|
+
|
27965
|
+
INVALID = 530_283_991
|
27966
|
+
|
27967
|
+
# Reservation block has allocated all its resources.
|
27968
|
+
READY = 77_848_963
|
27969
|
+
end
|
27970
|
+
end
|
27971
|
+
|
27972
|
+
# @!attribute [rw] block
|
27973
|
+
# @return [::String]
|
27974
|
+
# The hash of the capacity block within the cluster.
|
27975
|
+
# @!attribute [rw] cluster
|
27976
|
+
# @return [::String]
|
27977
|
+
# The cluster name of the reservation block.
|
27978
|
+
class ReservationBlockPhysicalTopology
|
27979
|
+
include ::Google::Protobuf::MessageExts
|
27980
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
27981
|
+
end
|
27982
|
+
|
27983
|
+
# @!attribute [rw] resource
|
27984
|
+
# @return [::Google::Cloud::Compute::V1::ReservationBlock]
|
27985
|
+
class ReservationBlocksGetResponse
|
27986
|
+
include ::Google::Protobuf::MessageExts
|
27987
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
27988
|
+
end
|
27989
|
+
|
27990
|
+
# A list of reservation blocks under a single reservation.
|
27991
|
+
# @!attribute [rw] id
|
27992
|
+
# @return [::String]
|
27993
|
+
# Unique identifier for the resource; defined by the server.
|
27994
|
+
# @!attribute [rw] items
|
27995
|
+
# @return [::Array<::Google::Cloud::Compute::V1::ReservationBlock>]
|
27996
|
+
# A list of reservation block resources.
|
27997
|
+
# @!attribute [rw] kind
|
27998
|
+
# @return [::String]
|
27999
|
+
# Type of the resource. Always compute#reservationBlock for a list of reservation blocks.
|
28000
|
+
# @!attribute [rw] next_page_token
|
28001
|
+
# @return [::String]
|
28002
|
+
# This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.
|
28003
|
+
# @!attribute [rw] self_link
|
28004
|
+
# @return [::String]
|
28005
|
+
# Server-defined URL for this resource.
|
28006
|
+
# @!attribute [rw] warning
|
28007
|
+
# @return [::Google::Cloud::Compute::V1::Warning]
|
28008
|
+
# Informational warning message.
|
28009
|
+
class ReservationBlocksListResponse
|
28010
|
+
include ::Google::Protobuf::MessageExts
|
28011
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
28012
|
+
end
|
28013
|
+
|
27616
28014
|
# @!attribute [rw] id
|
27617
28015
|
# @return [::String]
|
27618
28016
|
# [Output Only] The unique identifier for the resource. This identifier is defined by the server.
|
@@ -27636,6 +28034,60 @@ module Google
|
|
27636
28034
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
27637
28035
|
end
|
27638
28036
|
|
28037
|
+
# @!attribute [rw] maintenance_scope
|
28038
|
+
# @return [::String]
|
28039
|
+
# Specifies if all, running or unused hosts are in scope for this request.
|
28040
|
+
# Check the MaintenanceScope enum for the list of possible values.
|
28041
|
+
class ReservationsBlocksPerformMaintenanceRequest
|
28042
|
+
include ::Google::Protobuf::MessageExts
|
28043
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
28044
|
+
|
28045
|
+
# Specifies if all, running or unused hosts are in scope for this request.
|
28046
|
+
module MaintenanceScope
|
28047
|
+
# A value indicating that the enum field is not set.
|
28048
|
+
UNDEFINED_MAINTENANCE_SCOPE = 0
|
28049
|
+
|
28050
|
+
# Trigger maintenance for all hosts belonging to this reservation irrespective of whether VMs are running on them or not.
|
28051
|
+
ALL = 64_897
|
28052
|
+
|
28053
|
+
# Internal only
|
28054
|
+
MAINTENANCE_SCOPE_UNSPECIFIED = 78_827_328
|
28055
|
+
|
28056
|
+
# Trigger maintenance only on the hosts belonging to this reservation which have VMs running on them.
|
28057
|
+
RUNNING_VMS = 535_770_588
|
28058
|
+
|
28059
|
+
# Trigger maintenance only on the hosts belonging to this reservation which do not have any VMs running on them. This is not allowed for Standard ExR
|
28060
|
+
UNUSED_CAPACITY = 212_724_995
|
28061
|
+
end
|
28062
|
+
end
|
28063
|
+
|
28064
|
+
# @!attribute [rw] maintenance_scope
|
28065
|
+
# @return [::String]
|
28066
|
+
# Specifies if all, running or unused hosts are in scope for this request.
|
28067
|
+
# Check the MaintenanceScope enum for the list of possible values.
|
28068
|
+
class ReservationsPerformMaintenanceRequest
|
28069
|
+
include ::Google::Protobuf::MessageExts
|
28070
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
28071
|
+
|
28072
|
+
# Specifies if all, running or unused hosts are in scope for this request.
|
28073
|
+
module MaintenanceScope
|
28074
|
+
# A value indicating that the enum field is not set.
|
28075
|
+
UNDEFINED_MAINTENANCE_SCOPE = 0
|
28076
|
+
|
28077
|
+
# Trigger maintenance for all hosts belonging to this reservation irrespective of whether VMs are running on them or not.
|
28078
|
+
ALL = 64_897
|
28079
|
+
|
28080
|
+
# Internal only
|
28081
|
+
MAINTENANCE_SCOPE_UNSPECIFIED = 78_827_328
|
28082
|
+
|
28083
|
+
# Trigger maintenance only on the hosts belonging to this reservation which have VMs running on them.
|
28084
|
+
RUNNING_VMS = 535_770_588
|
28085
|
+
|
28086
|
+
# Trigger maintenance only on the hosts belonging to this reservation which do not have any VMs running on them. This is not allowed for Standard ExR
|
28087
|
+
UNUSED_CAPACITY = 212_724_995
|
28088
|
+
end
|
28089
|
+
end
|
28090
|
+
|
27639
28091
|
# @!attribute [rw] specific_sku_count
|
27640
28092
|
# @return [::Integer]
|
27641
28093
|
# Number of allocated resources can be resized with minimum = 1 and maximum = 1000.
|
@@ -28940,6 +29392,9 @@ module Google
|
|
28940
29392
|
# @!attribute [rw] name
|
28941
29393
|
# @return [::String]
|
28942
29394
|
# Unique name of this Nat service. The name must be 1-63 characters long and comply with RFC1035.
|
29395
|
+
# @!attribute [rw] nat64_subnetworks
|
29396
|
+
# @return [::Array<::Google::Cloud::Compute::V1::RouterNatSubnetworkToNat64>]
|
29397
|
+
# List of Subnetwork resources whose traffic should be translated by NAT64 Gateway. It is used only when LIST_OF_IPV6_SUBNETWORKS is selected for the SubnetworkIpRangeToNat64Option above.
|
28943
29398
|
# @!attribute [rw] nat_ip_allocate_option
|
28944
29399
|
# @return [::String]
|
28945
29400
|
# Specify the NatIpAllocateOption, which can take one of the following values: - MANUAL_ONLY: Uses only Nat IP addresses provided by customers. When there are not enough specified Nat IPs, the Nat service fails for new VMs. - AUTO_ONLY: Nat IPs are allocated by Google Cloud Platform; customers can't specify any Nat IPs. When choosing AUTO_ONLY, then nat_ip should be empty.
|
@@ -28954,6 +29409,10 @@ module Google
|
|
28954
29409
|
# @return [::String]
|
28955
29410
|
# Specify the Nat option, which can take one of the following values: - ALL_SUBNETWORKS_ALL_IP_RANGES: All of the IP ranges in every Subnetwork are allowed to Nat. - ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES: All of the primary IP ranges in every Subnetwork are allowed to Nat. - LIST_OF_SUBNETWORKS: A list of Subnetworks are allowed to Nat (specified in the field subnetwork below) The default is SUBNETWORK_IP_RANGE_TO_NAT_OPTION_UNSPECIFIED. Note that if this field contains ALL_SUBNETWORKS_ALL_IP_RANGES then there should not be any other Router.Nat section in any Router for this network in this region.
|
28956
29411
|
# Check the SourceSubnetworkIpRangesToNat enum for the list of possible values.
|
29412
|
+
# @!attribute [rw] source_subnetwork_ip_ranges_to_nat64
|
29413
|
+
# @return [::String]
|
29414
|
+
# Specify the Nat option for NAT64, which can take one of the following values: - ALL_IPV6_SUBNETWORKS: All of the IP ranges in every Subnetwork are allowed to Nat. - LIST_OF_IPV6_SUBNETWORKS: A list of Subnetworks are allowed to Nat (specified in the field nat64_subnetwork below) The default is NAT64_OPTION_UNSPECIFIED. Note that if this field contains NAT64_ALL_V6_SUBNETWORKS no other Router.Nat section in this region can also enable NAT64 for any Subnetworks in this network. Other Router.Nat sections can still be present to enable NAT44 only.
|
29415
|
+
# Check the SourceSubnetworkIpRangesToNat64 enum for the list of possible values.
|
28957
29416
|
# @!attribute [rw] subnetworks
|
28958
29417
|
# @return [::Array<::Google::Cloud::Compute::V1::RouterNatSubnetworkToNat>]
|
28959
29418
|
# A list of Subnetwork resources whose traffic should be translated by NAT Gateway. It is used only when LIST_OF_SUBNETWORKS is selected for the SubnetworkIpRangeToNatOption above.
|
@@ -29036,6 +29495,18 @@ module Google
|
|
29036
29495
|
LIST_OF_SUBNETWORKS = 517_542_270
|
29037
29496
|
end
|
29038
29497
|
|
29498
|
+
# Specify the Nat option for NAT64, which can take one of the following values: - ALL_IPV6_SUBNETWORKS: All of the IP ranges in every Subnetwork are allowed to Nat. - LIST_OF_IPV6_SUBNETWORKS: A list of Subnetworks are allowed to Nat (specified in the field nat64_subnetwork below) The default is NAT64_OPTION_UNSPECIFIED. Note that if this field contains NAT64_ALL_V6_SUBNETWORKS no other Router.Nat section in this region can also enable NAT64 for any Subnetworks in this network. Other Router.Nat sections can still be present to enable NAT44 only.
|
29499
|
+
module SourceSubnetworkIpRangesToNat64
|
29500
|
+
# A value indicating that the enum field is not set.
|
29501
|
+
UNDEFINED_SOURCE_SUBNETWORK_IP_RANGES_TO_NAT64 = 0
|
29502
|
+
|
29503
|
+
# NAT64 is enabled for all the IPv6 subnet ranges. In dual stack subnets, NAT64 will only be enabled for IPv6-only VMs.
|
29504
|
+
ALL_IPV6_SUBNETWORKS = 341_632_747
|
29505
|
+
|
29506
|
+
# NAT64 is enabled for a list of IPv6 subnet ranges. In dual stack subnets, NAT64 will only be enabled for IPv6-only VMs. If this option is used, the nat64_subnetworks field must be specified.
|
29507
|
+
LIST_OF_IPV6_SUBNETWORKS = 521_079_860
|
29508
|
+
end
|
29509
|
+
|
29039
29510
|
# Indicates whether this NAT is used for public or private IP translation. If unspecified, it defaults to PUBLIC.
|
29040
29511
|
module Type
|
29041
29512
|
# A value indicating that the enum field is not set.
|
@@ -29142,6 +29613,15 @@ module Google
|
|
29142
29613
|
end
|
29143
29614
|
end
|
29144
29615
|
|
29616
|
+
# Specifies a subnetwork to enable NAT64.
|
29617
|
+
# @!attribute [rw] name
|
29618
|
+
# @return [::String]
|
29619
|
+
# URL for the subnetwork resource that will use NAT64.
|
29620
|
+
class RouterNatSubnetworkToNat64
|
29621
|
+
include ::Google::Protobuf::MessageExts
|
29622
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
29623
|
+
end
|
29624
|
+
|
29145
29625
|
# @!attribute [rw] best_routes
|
29146
29626
|
# @return [::Array<::Google::Cloud::Compute::V1::Route>]
|
29147
29627
|
# A list of the best dynamic routes for this Cloud Router's Virtual Private Cloud (VPC) network in the same region as this Cloud Router. Lists all of the best routes per prefix that are programmed into this region's VPC data plane. When global dynamic routing mode is turned on in the VPC network, this list can include cross-region dynamic routes from Cloud Routers in other regions.
|
@@ -31717,6 +32197,21 @@ module Google
|
|
31717
32197
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
31718
32198
|
end
|
31719
32199
|
|
32200
|
+
# A request message for MachineImages.SetLabels. See the method description for details.
|
32201
|
+
# @!attribute [rw] global_set_labels_request_resource
|
32202
|
+
# @return [::Google::Cloud::Compute::V1::GlobalSetLabelsRequest]
|
32203
|
+
# The body resource for this request
|
32204
|
+
# @!attribute [rw] project
|
32205
|
+
# @return [::String]
|
32206
|
+
# Project ID for this request.
|
32207
|
+
# @!attribute [rw] resource
|
32208
|
+
# @return [::String]
|
32209
|
+
# Name or id of the resource for this request.
|
32210
|
+
class SetLabelsMachineImageRequest
|
32211
|
+
include ::Google::Protobuf::MessageExts
|
32212
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
32213
|
+
end
|
32214
|
+
|
31720
32215
|
# A request message for RegionDisks.SetLabels. See the method description for details.
|
31721
32216
|
# @!attribute [rw] project
|
31722
32217
|
# @return [::String]
|
@@ -32723,7 +33218,7 @@ module Google
|
|
32723
33218
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
32724
33219
|
end
|
32725
33220
|
|
32726
|
-
# Represents a Persistent Disk Snapshot resource. You can use snapshots to back up data on a regular interval. For more information, read Creating persistent disk snapshots.
|
33221
|
+
# Represents a Persistent Disk Snapshot resource. You can use snapshots to back up data on a regular interval. For more information, read Creating persistent disk snapshots. LINT.IfChange
|
32727
33222
|
# @!attribute [rw] architecture
|
32728
33223
|
# @return [::String]
|
32729
33224
|
# [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64.
|
@@ -32752,6 +33247,9 @@ module Google
|
|
32752
33247
|
# @!attribute [rw] enable_confidential_compute
|
32753
33248
|
# @return [::Boolean]
|
32754
33249
|
# Whether this snapshot is created from a confidential compute mode disk. [Output Only]: This field is not set by user, but from source disk.
|
33250
|
+
# @!attribute [rw] guest_flush
|
33251
|
+
# @return [::Boolean]
|
33252
|
+
# [Input Only] Whether to attempt an application consistent snapshot by informing the OS to prepare for the snapshot process.
|
32755
33253
|
# @!attribute [rw] guest_os_features
|
32756
33254
|
# @return [::Array<::Google::Cloud::Compute::V1::GuestOsFeature>]
|
32757
33255
|
# [Output Only] A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options.
|
@@ -34300,7 +34798,6 @@ module Google
|
|
34300
34798
|
# Check the PrivateIpv6GoogleAccess enum for the list of possible values.
|
34301
34799
|
# @!attribute [rw] purpose
|
34302
34800
|
# @return [::String]
|
34303
|
-
# The purpose of the resource. This field can be either PRIVATE, GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PEER_MIGRATION, PRIVATE_SERVICE_CONNECT or PRIVATE_NAT. PRIVATE is the default purpose for user-created subnets or subnets that are automatically created in auto mode networks. Subnets with purpose set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks that are reserved for Envoy-based load balancers. A subnet with purpose set to PRIVATE_SERVICE_CONNECT is used to publish services using Private Service Connect. A subnet with purpose set to PEER_MIGRATION is used for subnet migration from one peered VPC to another. A subnet with purpose set to PRIVATE_NAT is used for Private NAT IP address by Private NAT Gateway. If unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field isn't supported if the subnet purpose field is set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY.
|
34304
34801
|
# Check the Purpose enum for the list of possible values.
|
34305
34802
|
# @!attribute [rw] region
|
34306
34803
|
# @return [::String]
|
@@ -34369,7 +34866,6 @@ module Google
|
|
34369
34866
|
ENABLE_OUTBOUND_VM_ACCESS_TO_GOOGLE = 288_210_263
|
34370
34867
|
end
|
34371
34868
|
|
34372
|
-
# The purpose of the resource. This field can be either PRIVATE, GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PEER_MIGRATION, PRIVATE_SERVICE_CONNECT or PRIVATE_NAT. PRIVATE is the default purpose for user-created subnets or subnets that are automatically created in auto mode networks. Subnets with purpose set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks that are reserved for Envoy-based load balancers. A subnet with purpose set to PRIVATE_SERVICE_CONNECT is used to publish services using Private Service Connect. A subnet with purpose set to PEER_MIGRATION is used for subnet migration from one peered VPC to another. A subnet with purpose set to PRIVATE_NAT is used for Private NAT IP address by Private NAT Gateway. If unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field isn't supported if the subnet purpose field is set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY.
|
34373
34869
|
module Purpose
|
34374
34870
|
# A value indicating that the enum field is not set.
|
34375
34871
|
UNDEFINED_PURPOSE = 0
|
@@ -37263,7 +37759,6 @@ module Google
|
|
37263
37759
|
# Network URL.
|
37264
37760
|
# @!attribute [rw] purpose
|
37265
37761
|
# @return [::String]
|
37266
|
-
# The purpose of the resource. This field can be either PRIVATE, GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PEER_MIGRATION, PRIVATE_SERVICE_CONNECT or PRIVATE_NAT. PRIVATE is the default purpose for user-created subnets or subnets that are automatically created in auto mode networks. Subnets with purpose set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks that are reserved for Envoy-based load balancers. A subnet with purpose set to PRIVATE_SERVICE_CONNECT is used to publish services using Private Service Connect. A subnet with purpose set to PEER_MIGRATION is used for subnet migration from one peered VPC to another. A subnet with purpose set to PRIVATE_NAT is used for Private NAT IP address by Private NAT Gateway. If unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field isn't supported if the subnet purpose field is set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY.
|
37267
37762
|
# Check the Purpose enum for the list of possible values.
|
37268
37763
|
# @!attribute [rw] role
|
37269
37764
|
# @return [::String]
|
@@ -37295,7 +37790,6 @@ module Google
|
|
37295
37790
|
INTERNAL = 279_295_677
|
37296
37791
|
end
|
37297
37792
|
|
37298
|
-
# The purpose of the resource. This field can be either PRIVATE, GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PEER_MIGRATION, PRIVATE_SERVICE_CONNECT or PRIVATE_NAT. PRIVATE is the default purpose for user-created subnets or subnets that are automatically created in auto mode networks. Subnets with purpose set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks that are reserved for Envoy-based load balancers. A subnet with purpose set to PRIVATE_SERVICE_CONNECT is used to publish services using Private Service Connect. A subnet with purpose set to PEER_MIGRATION is used for subnet migration from one peered VPC to another. A subnet with purpose set to PRIVATE_NAT is used for Private NAT IP address by Private NAT Gateway. If unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field isn't supported if the subnet purpose field is set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY.
|
37299
37793
|
module Purpose
|
37300
37794
|
# A value indicating that the enum field is not set.
|
37301
37795
|
UNDEFINED_PURPOSE = 0
|
@@ -38039,7 +38533,7 @@ module Google
|
|
38039
38533
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
38040
38534
|
end
|
38041
38535
|
|
38042
|
-
#
|
38536
|
+
# Informational warning message.
|
38043
38537
|
# @!attribute [rw] code
|
38044
38538
|
# @return [::String]
|
38045
38539
|
# [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
|