google-cloud-compute-v1 3.8.0 → 3.9.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/backend_services/rest/client.rb +4 -1
- data/lib/google/cloud/compute/v1/compute_pb.rb +34 -1
- data/lib/google/cloud/compute/v1/forwarding_rules/rest/client.rb +3 -1
- data/lib/google/cloud/compute/v1/global_forwarding_rules/rest/client.rb +3 -1
- data/lib/google/cloud/compute/v1/instance_group_managers/rest/client.rb +16 -4
- data/lib/google/cloud/compute/v1/region_backend_services/rest/client.rb +4 -2
- data/lib/google/cloud/compute/v1/region_instance_group_managers/rest/client.rb +16 -4
- data/lib/google/cloud/compute/v1/rollouts/rest/client.rb +349 -3
- data/lib/google/cloud/compute/v1/rollouts/rest/service_stub.rb +186 -0
- data/lib/google/cloud/compute/v1/routers/rest/client.rb +634 -0
- data/lib/google/cloud/compute/v1/routers/rest/service_stub.rb +317 -0
- data/lib/google/cloud/compute/v1/version.rb +1 -1
- data/proto_docs/google/cloud/compute/v1/compute.rb +1023 -75
- metadata +1 -1
|
@@ -1207,21 +1207,34 @@ module Google
|
|
|
1207
1207
|
# defined by the server.
|
|
1208
1208
|
# @!attribute [rw] ip_collection
|
|
1209
1209
|
# @return [::String]
|
|
1210
|
-
# Reference to the source of
|
|
1211
|
-
# like a PublicDelegatedPrefix (PDP) for BYOIP.
|
|
1212
|
-
# The PDP must support enhanced IPv4 allocations.
|
|
1210
|
+
# Reference to the source of IP addresses.
|
|
1213
1211
|
#
|
|
1214
|
-
#
|
|
1215
|
-
# external IPv4 address using BYOIP.
|
|
1212
|
+
# It supports the following cases:
|
|
1216
1213
|
#
|
|
1217
1214
|
# -
|
|
1218
|
-
#
|
|
1215
|
+
# Case 1: PublicDelegatedPrefix (PDP) for BYOIP external IPv4
|
|
1216
|
+
# addresses. The PDP must support enhanced IPv4 allocations.
|
|
1219
1217
|
# -
|
|
1220
|
-
#
|
|
1218
|
+
# Case 2: Internal Range for global internal addresses.
|
|
1219
|
+
#
|
|
1220
|
+
#
|
|
1221
|
+
#
|
|
1222
|
+
# Use one of the following formats to specify the resource:
|
|
1223
|
+
#
|
|
1224
|
+
# For a Public Delegated Prefix:
|
|
1225
|
+
#
|
|
1226
|
+
# -
|
|
1227
|
+
# Full resource URL:https://www.googleapis.com/compute/v1/projects/projectId/regions/region/publicDelegatedPrefixes/pdp
|
|
1228
|
+
# - Partial URL:
|
|
1229
|
+
# - projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
|
|
1230
|
+
# - regions/region/publicDelegatedPrefixes/pdp-name
|
|
1231
|
+
#
|
|
1232
|
+
#
|
|
1221
1233
|
#
|
|
1234
|
+
# For an Internal Range:
|
|
1222
1235
|
#
|
|
1223
|
-
#
|
|
1224
|
-
#
|
|
1236
|
+
# - Full URL:https://networkconnectivity.googleapis.com/v1/projects/project/locations/global/internalRanges/internal-range
|
|
1237
|
+
# - Partial URL:projects/project/locations/global/internalRanges/internal-range
|
|
1225
1238
|
# @!attribute [rw] ip_version
|
|
1226
1239
|
# @return [::String]
|
|
1227
1240
|
# The IP version that will be used by this address. Valid options areIPV4 or IPV6.
|
|
@@ -1572,6 +1585,36 @@ module Google
|
|
|
1572
1585
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1573
1586
|
end
|
|
1574
1587
|
|
|
1588
|
+
# A request message for Rollouts.Advance. See the method description for details.
|
|
1589
|
+
# @!attribute [rw] current_wave_number
|
|
1590
|
+
# @return [::Integer]
|
|
1591
|
+
# Required. Wave number of the current wave.
|
|
1592
|
+
# @!attribute [rw] project
|
|
1593
|
+
# @return [::String]
|
|
1594
|
+
# Required. Project ID for this request.
|
|
1595
|
+
# @!attribute [rw] request_id
|
|
1596
|
+
# @return [::String]
|
|
1597
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
|
1598
|
+
# that if you must retry your request, the server will know to ignore the
|
|
1599
|
+
# request if it has already been completed.
|
|
1600
|
+
#
|
|
1601
|
+
# For example, consider a situation where you make an initial request and
|
|
1602
|
+
# the request times out. If you make the request again with the same
|
|
1603
|
+
# request ID, the server can check if original operation with the same
|
|
1604
|
+
# request ID was received, and if so, will ignore the second request. This
|
|
1605
|
+
# prevents clients from accidentally creating duplicate commitments.
|
|
1606
|
+
#
|
|
1607
|
+
# The request ID must be
|
|
1608
|
+
# a valid UUID with the exception that zero UUID is not supported
|
|
1609
|
+
# (00000000-0000-0000-0000-000000000000).
|
|
1610
|
+
# @!attribute [rw] rollout
|
|
1611
|
+
# @return [::String]
|
|
1612
|
+
# Required. Name of the Rollout resource to advance.
|
|
1613
|
+
class AdvanceRolloutRequest
|
|
1614
|
+
include ::Google::Protobuf::MessageExts
|
|
1615
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1616
|
+
end
|
|
1617
|
+
|
|
1575
1618
|
# Specifies options for controlling advanced machine features.
|
|
1576
1619
|
# Options that would traditionally be configured in a BIOS belong
|
|
1577
1620
|
# here. Features that require operating system support may have
|
|
@@ -8511,27 +8554,6 @@ module Google
|
|
|
8511
8554
|
# is 500 GB.
|
|
8512
8555
|
# @!attribute [rw] disk_type
|
|
8513
8556
|
# @return [::String]
|
|
8514
|
-
# Specifies the disk type to use to create the instance. If not specified,
|
|
8515
|
-
# the default is pd-standard, specified using the full URL.
|
|
8516
|
-
# For example:
|
|
8517
|
-
#
|
|
8518
|
-
# https://www.googleapis.com/compute/v1/projects/project/zones/zone/diskTypes/pd-standard
|
|
8519
|
-
#
|
|
8520
|
-
#
|
|
8521
|
-
# For a full list of acceptable values, seePersistent disk
|
|
8522
|
-
# types. If you specify this field when creating a VM, you can provide
|
|
8523
|
-
# either the full or partial URL. For example, the following values are
|
|
8524
|
-
# valid:
|
|
8525
|
-
#
|
|
8526
|
-
#
|
|
8527
|
-
# - https://www.googleapis.com/compute/v1/projects/project/zones/zone/diskTypes/diskType
|
|
8528
|
-
# - projects/project/zones/zone/diskTypes/diskType
|
|
8529
|
-
# - zones/zone/diskTypes/diskType
|
|
8530
|
-
#
|
|
8531
|
-
#
|
|
8532
|
-
# If you specify this field when creating or updating an instance template
|
|
8533
|
-
# or all-instances configuration, specify the type of the disk, not the
|
|
8534
|
-
# URL. For example: pd-standard.
|
|
8535
8557
|
# @!attribute [rw] enable_confidential_compute
|
|
8536
8558
|
# @return [::Boolean]
|
|
8537
8559
|
# Whether this disk is using confidential compute mode.
|
|
@@ -9367,6 +9389,7 @@ module Google
|
|
|
9367
9389
|
|
|
9368
9390
|
# Automatically create VMs according to the policy, but do not scale
|
|
9369
9391
|
# the MIG in.
|
|
9392
|
+
# It's recommended to use ONLY_SCALE_OUT instead of ONLY_UP.
|
|
9370
9393
|
ONLY_UP = 478_095_374
|
|
9371
9394
|
end
|
|
9372
9395
|
end
|
|
@@ -12096,6 +12119,12 @@ module Google
|
|
|
12096
12119
|
# @return [::Boolean]
|
|
12097
12120
|
# Denotes whether to enable logging for the load balancer
|
|
12098
12121
|
# traffic served by this backend service. The default value is false.
|
|
12122
|
+
# @!attribute [rw] logging_http_request_headers
|
|
12123
|
+
# @return [::Array<::Google::Cloud::Compute::V1::BackendServiceLogConfigLoggingHttpHeader>]
|
|
12124
|
+
# The list of request headers that will be logged to Stackdriver.
|
|
12125
|
+
# @!attribute [rw] logging_http_response_headers
|
|
12126
|
+
# @return [::Array<::Google::Cloud::Compute::V1::BackendServiceLogConfigLoggingHttpHeader>]
|
|
12127
|
+
# The list of response headers that will be logged to Stackdriver.
|
|
12099
12128
|
# @!attribute [rw] optional_fields
|
|
12100
12129
|
# @return [::Array<::String>]
|
|
12101
12130
|
# This field can only be specified if logging is enabled for this backend
|
|
@@ -12140,6 +12169,15 @@ module Google
|
|
|
12140
12169
|
end
|
|
12141
12170
|
end
|
|
12142
12171
|
|
|
12172
|
+
# Determines which HTTP headers will be logged to Stackdriver.
|
|
12173
|
+
# @!attribute [rw] header_name
|
|
12174
|
+
# @return [::String]
|
|
12175
|
+
# The name of the header to be logged.
|
|
12176
|
+
class BackendServiceLogConfigLoggingHttpHeader
|
|
12177
|
+
include ::Google::Protobuf::MessageExts
|
|
12178
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
12179
|
+
end
|
|
12180
|
+
|
|
12143
12181
|
# @!attribute [rw] zonal_affinity
|
|
12144
12182
|
# @return [::Google::Cloud::Compute::V1::BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity]
|
|
12145
12183
|
# When configured, new connections are load balanced across healthy backend
|
|
@@ -14399,6 +14437,9 @@ module Google
|
|
|
14399
14437
|
# A value indicating that the enum field is not set.
|
|
14400
14438
|
UNDEFINED_CONFIDENTIAL_INSTANCE_TYPE = 0
|
|
14401
14439
|
|
|
14440
|
+
# Arm Confidential Compute Architecture.
|
|
14441
|
+
CCA = 66_529
|
|
14442
|
+
|
|
14402
14443
|
# No type specified. Do not use this value.
|
|
14403
14444
|
CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED = 115_021_829
|
|
14404
14445
|
|
|
@@ -14980,6 +15021,71 @@ module Google
|
|
|
14980
15021
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
14981
15022
|
end
|
|
14982
15023
|
|
|
15024
|
+
# Represents civil time (or occasionally physical time).
|
|
15025
|
+
#
|
|
15026
|
+
# This type can represent a civil time in one of a few possible ways:
|
|
15027
|
+
#
|
|
15028
|
+
# * When utc_offset is set and time_zone is unset: a civil time on a calendar
|
|
15029
|
+
# day with a particular offset from UTC.
|
|
15030
|
+
# * When time_zone is set and utc_offset is unset: a civil time on a calendar
|
|
15031
|
+
# day in a particular time zone.
|
|
15032
|
+
# * When neither time_zone nor utc_offset is set: a civil time on a calendar
|
|
15033
|
+
# day in local time.
|
|
15034
|
+
#
|
|
15035
|
+
# The date is relative to the Proleptic Gregorian Calendar.
|
|
15036
|
+
#
|
|
15037
|
+
# If year, month, or day are 0, the DateTime is considered not to have a
|
|
15038
|
+
# specific year, month, or day respectively.
|
|
15039
|
+
#
|
|
15040
|
+
# This type may also be used to represent a physical time if all the date and
|
|
15041
|
+
# time fields are set and either case of the `time_offset` oneof is set.
|
|
15042
|
+
# Consider using `Timestamp` message for physical time instead. If your use
|
|
15043
|
+
# case also would like to store the user's timezone, that can be done in
|
|
15044
|
+
# another field.
|
|
15045
|
+
#
|
|
15046
|
+
# This type is more flexible than some applications may want. Make sure to
|
|
15047
|
+
# document and validate your application's limitations.
|
|
15048
|
+
# @!attribute [rw] day
|
|
15049
|
+
# @return [::Integer]
|
|
15050
|
+
# Optional. Day of month. Must be from 1 to 31 and valid for the year and
|
|
15051
|
+
# month, or 0 if specifying a datetime without a day.
|
|
15052
|
+
# @!attribute [rw] hours
|
|
15053
|
+
# @return [::Integer]
|
|
15054
|
+
# Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults
|
|
15055
|
+
# to 0 (midnight). An API may choose to allow the value "24:00:00" for
|
|
15056
|
+
# scenarios like business closing time.
|
|
15057
|
+
# @!attribute [rw] minutes
|
|
15058
|
+
# @return [::Integer]
|
|
15059
|
+
# Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0.
|
|
15060
|
+
# @!attribute [rw] month
|
|
15061
|
+
# @return [::Integer]
|
|
15062
|
+
# Optional. Month of year. Must be from 1 to 12, or 0 if specifying a
|
|
15063
|
+
# datetime without a month.
|
|
15064
|
+
# @!attribute [rw] nanos
|
|
15065
|
+
# @return [::Integer]
|
|
15066
|
+
# Optional. Fractions of seconds in nanoseconds. Must be from 0 to
|
|
15067
|
+
# 999,999,999, defaults to 0.
|
|
15068
|
+
# @!attribute [rw] seconds
|
|
15069
|
+
# @return [::Integer]
|
|
15070
|
+
# Optional. Seconds of minutes of the time. Must normally be from 0 to 59,
|
|
15071
|
+
# defaults to 0. An API may allow the value 60 if it allows leap-seconds.
|
|
15072
|
+
# @!attribute [rw] time_zone
|
|
15073
|
+
# @return [::Google::Cloud::Compute::V1::TimeZone]
|
|
15074
|
+
# Time zone.
|
|
15075
|
+
# @!attribute [rw] utc_offset
|
|
15076
|
+
# @return [::String]
|
|
15077
|
+
# UTC offset. Must be whole seconds, between -18 hours and +18 hours.
|
|
15078
|
+
# For example, a UTC offset of -4:00 would be represented as
|
|
15079
|
+
# { seconds: -14400 }.
|
|
15080
|
+
# @!attribute [rw] year
|
|
15081
|
+
# @return [::Integer]
|
|
15082
|
+
# Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a
|
|
15083
|
+
# datetime without a year.
|
|
15084
|
+
class DateTime
|
|
15085
|
+
include ::Google::Protobuf::MessageExts
|
|
15086
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
15087
|
+
end
|
|
15088
|
+
|
|
14983
15089
|
# A request message for Instances.DeleteAccessConfig. See the method description for details.
|
|
14984
15090
|
# @!attribute [rw] access_config
|
|
14985
15091
|
# @return [::String]
|
|
@@ -15561,6 +15667,10 @@ module Google
|
|
|
15561
15667
|
# @!attribute [rw] instance_group_manager
|
|
15562
15668
|
# @return [::String]
|
|
15563
15669
|
# The name of the managed instance group to delete.
|
|
15670
|
+
# @!attribute [rw] no_graceful_shutdown
|
|
15671
|
+
# @return [::Boolean]
|
|
15672
|
+
# When set, graceful shutdown is skipped for instance deletion even if it's
|
|
15673
|
+
# configured for the instances.
|
|
15564
15674
|
# @!attribute [rw] project
|
|
15565
15675
|
# @return [::String]
|
|
15566
15676
|
# Project ID for this request.
|
|
@@ -15719,6 +15829,10 @@ module Google
|
|
|
15719
15829
|
# @!attribute [rw] instance_group_managers_delete_instances_request_resource
|
|
15720
15830
|
# @return [::Google::Cloud::Compute::V1::InstanceGroupManagersDeleteInstancesRequest]
|
|
15721
15831
|
# The body resource for this request
|
|
15832
|
+
# @!attribute [rw] no_graceful_shutdown
|
|
15833
|
+
# @return [::Boolean]
|
|
15834
|
+
# When set, graceful shutdown is skipped for instance deletion even if it's
|
|
15835
|
+
# configured for the instances.
|
|
15722
15836
|
# @!attribute [rw] project
|
|
15723
15837
|
# @return [::String]
|
|
15724
15838
|
# Project ID for this request.
|
|
@@ -15750,6 +15864,10 @@ module Google
|
|
|
15750
15864
|
# @!attribute [rw] instance_group_manager
|
|
15751
15865
|
# @return [::String]
|
|
15752
15866
|
# Name of the managed instance group.
|
|
15867
|
+
# @!attribute [rw] no_graceful_shutdown
|
|
15868
|
+
# @return [::Boolean]
|
|
15869
|
+
# When set, graceful shutdown is skipped for instance deletion even if it's
|
|
15870
|
+
# configured for the instances.
|
|
15753
15871
|
# @!attribute [rw] project
|
|
15754
15872
|
# @return [::String]
|
|
15755
15873
|
# Project ID for this request.
|
|
@@ -16006,6 +16124,39 @@ module Google
|
|
|
16006
16124
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
16007
16125
|
end
|
|
16008
16126
|
|
|
16127
|
+
# A request message for Routers.DeleteNamedSet. See the method description for details.
|
|
16128
|
+
# @!attribute [rw] named_set
|
|
16129
|
+
# @return [::String]
|
|
16130
|
+
# The Named Set name for this request. Name must conform to RFC1035
|
|
16131
|
+
# @!attribute [rw] project
|
|
16132
|
+
# @return [::String]
|
|
16133
|
+
# Project ID for this request.
|
|
16134
|
+
# @!attribute [rw] region
|
|
16135
|
+
# @return [::String]
|
|
16136
|
+
# Name of the region for this request.
|
|
16137
|
+
# @!attribute [rw] request_id
|
|
16138
|
+
# @return [::String]
|
|
16139
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
|
16140
|
+
# that if you must retry your request, the server will know to ignore the
|
|
16141
|
+
# request if it has already been completed.
|
|
16142
|
+
#
|
|
16143
|
+
# For example, consider a situation where you make an initial request and
|
|
16144
|
+
# the request times out. If you make the request again with the same
|
|
16145
|
+
# request ID, the server can check if original operation with the same
|
|
16146
|
+
# request ID was received, and if so, will ignore the second request. This
|
|
16147
|
+
# prevents clients from accidentally creating duplicate commitments.
|
|
16148
|
+
#
|
|
16149
|
+
# The request ID must be
|
|
16150
|
+
# a valid UUID with the exception that zero UUID is not supported
|
|
16151
|
+
# (00000000-0000-0000-0000-000000000000).
|
|
16152
|
+
# @!attribute [rw] router
|
|
16153
|
+
# @return [::String]
|
|
16154
|
+
# Name of the Router resource where Named Set is defined.
|
|
16155
|
+
class DeleteNamedSetRouterRequest
|
|
16156
|
+
include ::Google::Protobuf::MessageExts
|
|
16157
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
16158
|
+
end
|
|
16159
|
+
|
|
16009
16160
|
# A request message for NetworkAttachments.Delete. See the method description for details.
|
|
16010
16161
|
# @!attribute [rw] network_attachment
|
|
16011
16162
|
# @return [::String]
|
|
@@ -16707,6 +16858,10 @@ module Google
|
|
|
16707
16858
|
# @!attribute [rw] instance_group_manager
|
|
16708
16859
|
# @return [::String]
|
|
16709
16860
|
# Name of the managed instance group to delete.
|
|
16861
|
+
# @!attribute [rw] no_graceful_shutdown
|
|
16862
|
+
# @return [::Boolean]
|
|
16863
|
+
# When set, graceful shutdown is skipped for instance deletion even if it's
|
|
16864
|
+
# configured for the instances.
|
|
16710
16865
|
# @!attribute [rw] project
|
|
16711
16866
|
# @return [::String]
|
|
16712
16867
|
# Project ID for this request.
|
|
@@ -20434,7 +20589,9 @@ module Google
|
|
|
20434
20589
|
# @return [::String]
|
|
20435
20590
|
# The Action to perform when the client connection triggers the rule.
|
|
20436
20591
|
# Valid actions for firewall rules are: "allow", "deny",
|
|
20437
|
-
# "apply_security_profile_group" and "goto_next"
|
|
20592
|
+
# "apply_security_profile_group" and "goto_next" (
|
|
20593
|
+
# "apply_security_profile_group" can be specified only for global
|
|
20594
|
+
# network firewall policies or hierarchical firewall policies).
|
|
20438
20595
|
# Valid actions for packet mirroring rules are: "mirror", "do_not_mirror"
|
|
20439
20596
|
# and "goto_next".
|
|
20440
20597
|
# @!attribute [rw] description
|
|
@@ -20479,11 +20636,25 @@ module Google
|
|
|
20479
20636
|
# rule.
|
|
20480
20637
|
# @!attribute [rw] security_profile_group
|
|
20481
20638
|
# @return [::String]
|
|
20482
|
-
# A fully-qualified URL of a
|
|
20639
|
+
# A fully-qualified URL of a SecurityProfileGroup resource instance.
|
|
20483
20640
|
# Example:
|
|
20484
20641
|
# https://networksecurity.googleapis.com/v1/projects/\\{project}/locations/\\{location}/securityProfileGroups/my-security-profile-group
|
|
20485
20642
|
# Must be specified if action is one of 'apply_security_profile_group' or
|
|
20486
|
-
# 'mirror'. Cannot be specified for other actions.
|
|
20643
|
+
# 'mirror'. Cannot be specified for other actions. Can be specified only
|
|
20644
|
+
# for global network firewall policies or hierarchical firewall policies.
|
|
20645
|
+
# @!attribute [rw] target_forwarding_rules
|
|
20646
|
+
# @return [::Array<::String>]
|
|
20647
|
+
# A list of forwarding rules to which this rule applies.
|
|
20648
|
+
# This field allows you to control which load balancers get this rule.
|
|
20649
|
+
# For example, the following are valid values:
|
|
20650
|
+
#
|
|
20651
|
+
#
|
|
20652
|
+
# - https://www.googleapis.com/compute/v1/projects/project/global/forwardingRules/forwardingRule
|
|
20653
|
+
# - https://www.googleapis.com/compute/v1/projects/project/regions/region/forwardingRules/forwardingRule
|
|
20654
|
+
# - projects/project/global/
|
|
20655
|
+
# forwardingRules/forwardingRule
|
|
20656
|
+
# - projects/project/regions/region/forwardingRules/
|
|
20657
|
+
# forwardingRule
|
|
20487
20658
|
# @!attribute [rw] target_resources
|
|
20488
20659
|
# @return [::Array<::String>]
|
|
20489
20660
|
# A list of network resource URLs to which this rule applies. This field
|
|
@@ -20503,6 +20674,11 @@ module Google
|
|
|
20503
20674
|
# @return [::Array<::String>]
|
|
20504
20675
|
# A list of service accounts indicating the sets of instances that are
|
|
20505
20676
|
# applied with this rule.
|
|
20677
|
+
# @!attribute [rw] target_type
|
|
20678
|
+
# @return [::String]
|
|
20679
|
+
# Target types of the firewall policy rule.
|
|
20680
|
+
# Default value is INSTANCES.
|
|
20681
|
+
# Check the TargetType enum for the list of possible values.
|
|
20506
20682
|
# @!attribute [rw] tls_inspect
|
|
20507
20683
|
# @return [::Boolean]
|
|
20508
20684
|
# Boolean flag indicating if the traffic should be TLS decrypted.
|
|
@@ -20521,6 +20697,17 @@ module Google
|
|
|
20521
20697
|
|
|
20522
20698
|
INGRESS = 516_931_221
|
|
20523
20699
|
end
|
|
20700
|
+
|
|
20701
|
+
# Target types of the firewall policy rule.
|
|
20702
|
+
# Default value is INSTANCES.
|
|
20703
|
+
module TargetType
|
|
20704
|
+
# A value indicating that the enum field is not set.
|
|
20705
|
+
UNDEFINED_TARGET_TYPE = 0
|
|
20706
|
+
|
|
20707
|
+
INSTANCES = 131_337_822
|
|
20708
|
+
|
|
20709
|
+
INTERNAL_MANAGED_LB = 309_241_080
|
|
20710
|
+
end
|
|
20524
20711
|
end
|
|
20525
20712
|
|
|
20526
20713
|
# Represents a match condition that incoming traffic is evaluated against.
|
|
@@ -20888,6 +21075,9 @@ module Google
|
|
|
20888
21075
|
# @return [::Boolean]
|
|
20889
21076
|
# This is used in PSC consumer ForwardingRule to control whether the PSC
|
|
20890
21077
|
# endpoint can be accessed from another region.
|
|
21078
|
+
# @!attribute [rw] attached_extensions
|
|
21079
|
+
# @return [::Array<::Google::Cloud::Compute::V1::ForwardingRuleAttachedExtension>]
|
|
21080
|
+
# Output only. [Output Only]. The extensions that are attached to this ForwardingRule.
|
|
20891
21081
|
# @!attribute [rw] backend_service
|
|
20892
21082
|
# @return [::String]
|
|
20893
21083
|
# Identifies the backend service to which the forwarding rule sends traffic.
|
|
@@ -21391,6 +21581,15 @@ module Google
|
|
|
21391
21581
|
end
|
|
21392
21582
|
end
|
|
21393
21583
|
|
|
21584
|
+
# Reference to an extension resource that is attached to this ForwardingRule.
|
|
21585
|
+
# @!attribute [rw] reference
|
|
21586
|
+
# @return [::String]
|
|
21587
|
+
# Output only. The resource name.
|
|
21588
|
+
class ForwardingRuleAttachedExtension
|
|
21589
|
+
include ::Google::Protobuf::MessageExts
|
|
21590
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
21591
|
+
end
|
|
21592
|
+
|
|
21394
21593
|
# Contains a list of ForwardingRule resources.
|
|
21395
21594
|
# @!attribute [rw] id
|
|
21396
21595
|
# @return [::String]
|
|
@@ -22828,9 +23027,24 @@ module Google
|
|
|
22828
23027
|
# @!attribute [rw] region
|
|
22829
23028
|
# @return [::String]
|
|
22830
23029
|
# Name of the region scoping this request.
|
|
23030
|
+
# @!attribute [rw] view
|
|
23031
|
+
# @return [::String]
|
|
23032
|
+
# Check the View enum for the list of possible values.
|
|
22831
23033
|
class GetForwardingRuleRequest
|
|
22832
23034
|
include ::Google::Protobuf::MessageExts
|
|
22833
23035
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
23036
|
+
|
|
23037
|
+
|
|
23038
|
+
module View
|
|
23039
|
+
# A value indicating that the enum field is not set.
|
|
23040
|
+
UNDEFINED_VIEW = 0
|
|
23041
|
+
|
|
23042
|
+
# The default view of a ForwardingRule, which includes the basic fields.
|
|
23043
|
+
BASIC = 62_970_894
|
|
23044
|
+
|
|
23045
|
+
# The full view, including the ForwardingRule.`attached_extensions` field.
|
|
23046
|
+
FULL = 2_169_487
|
|
23047
|
+
end
|
|
22834
23048
|
end
|
|
22835
23049
|
|
|
22836
23050
|
# A request message for Images.GetFromFamily. See the method description for details.
|
|
@@ -22880,9 +23094,24 @@ module Google
|
|
|
22880
23094
|
# @!attribute [rw] project
|
|
22881
23095
|
# @return [::String]
|
|
22882
23096
|
# Project ID for this request.
|
|
23097
|
+
# @!attribute [rw] view
|
|
23098
|
+
# @return [::String]
|
|
23099
|
+
# Check the View enum for the list of possible values.
|
|
22883
23100
|
class GetGlobalForwardingRuleRequest
|
|
22884
23101
|
include ::Google::Protobuf::MessageExts
|
|
22885
23102
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
23103
|
+
|
|
23104
|
+
|
|
23105
|
+
module View
|
|
23106
|
+
# A value indicating that the enum field is not set.
|
|
23107
|
+
UNDEFINED_VIEW = 0
|
|
23108
|
+
|
|
23109
|
+
# The default view of a ForwardingRule, which includes the basic fields.
|
|
23110
|
+
BASIC = 62_970_894
|
|
23111
|
+
|
|
23112
|
+
# The full view, including the ForwardingRule.`attached_extensions` field.
|
|
23113
|
+
FULL = 2_169_487
|
|
23114
|
+
end
|
|
22886
23115
|
end
|
|
22887
23116
|
|
|
22888
23117
|
# A request message for GlobalNetworkEndpointGroups.Get. See the method description for details.
|
|
@@ -23907,6 +24136,25 @@ module Google
|
|
|
23907
24136
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
23908
24137
|
end
|
|
23909
24138
|
|
|
24139
|
+
# A request message for Routers.GetNamedSet. See the method description for details.
|
|
24140
|
+
# @!attribute [rw] named_set
|
|
24141
|
+
# @return [::String]
|
|
24142
|
+
# The Named Set name for this request. Name must conform to RFC1035
|
|
24143
|
+
# @!attribute [rw] project
|
|
24144
|
+
# @return [::String]
|
|
24145
|
+
# Project ID for this request.
|
|
24146
|
+
# @!attribute [rw] region
|
|
24147
|
+
# @return [::String]
|
|
24148
|
+
# Name of the region for this request.
|
|
24149
|
+
# @!attribute [rw] router
|
|
24150
|
+
# @return [::String]
|
|
24151
|
+
# Name of the Router resource to query for the named set. The name should
|
|
24152
|
+
# conform to RFC1035.
|
|
24153
|
+
class GetNamedSetRouterRequest
|
|
24154
|
+
include ::Google::Protobuf::MessageExts
|
|
24155
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
24156
|
+
end
|
|
24157
|
+
|
|
23910
24158
|
# A request message for Routers.GetNatIpInfo. See the method description for details.
|
|
23911
24159
|
# @!attribute [rw] nat_name
|
|
23912
24160
|
# @return [::String]
|
|
@@ -26304,6 +26552,8 @@ module Google
|
|
|
26304
26552
|
|
|
26305
26553
|
BARE_METAL_LINUX_COMPATIBLE = 354_232_740
|
|
26306
26554
|
|
|
26555
|
+
CCA_CAPABLE = 79_012_270
|
|
26556
|
+
|
|
26307
26557
|
FEATURE_TYPE_UNSPECIFIED = 531_767_259
|
|
26308
26558
|
|
|
26309
26559
|
GVNIC = 68_209_305
|
|
@@ -31651,6 +31901,11 @@ module Google
|
|
|
31651
31901
|
# @!attribute [rw] last_suspended_timestamp
|
|
31652
31902
|
# @return [::String]
|
|
31653
31903
|
# Output only. [Output Only] Last suspended timestamp inRFC3339 text format.
|
|
31904
|
+
# @!attribute [rw] local_ssd_encryption_mode
|
|
31905
|
+
# @return [::String]
|
|
31906
|
+
# Specifies which method should be used for encrypting the
|
|
31907
|
+
# Local SSDs attached to the VM.
|
|
31908
|
+
# Check the LocalSsdEncryptionMode enum for the list of possible values.
|
|
31654
31909
|
# @!attribute [rw] machine_type
|
|
31655
31910
|
# @return [::String]
|
|
31656
31911
|
# Full or partial URL of the machine type resource to use for this instance,
|
|
@@ -31814,6 +32069,29 @@ module Google
|
|
|
31814
32069
|
STOP = 2_555_906
|
|
31815
32070
|
end
|
|
31816
32071
|
|
|
32072
|
+
# Specifies which method should be used for encrypting the
|
|
32073
|
+
# Local SSDs attached to the VM.
|
|
32074
|
+
module LocalSsdEncryptionMode
|
|
32075
|
+
# A value indicating that the enum field is not set.
|
|
32076
|
+
UNDEFINED_LOCAL_SSD_ENCRYPTION_MODE = 0
|
|
32077
|
+
|
|
32078
|
+
# The given VM will opt-in for using ephemeral key for
|
|
32079
|
+
# encryption of Local SSDs.
|
|
32080
|
+
# The Local SSDs will not be able to recover data in case of VM
|
|
32081
|
+
# crash.
|
|
32082
|
+
EPHEMERAL_KEY_ENCRYPTION = 413_047_941
|
|
32083
|
+
|
|
32084
|
+
# The given VM will be encrypted using keys managed by the cloud
|
|
32085
|
+
# infrastructure and the keys will be deleted when the VM is
|
|
32086
|
+
# deleted.
|
|
32087
|
+
LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED = 454_655_720
|
|
32088
|
+
|
|
32089
|
+
# The given VM will be encrypted using keys managed by the cloud
|
|
32090
|
+
# infrastructure and the keys will be deleted when the VM is
|
|
32091
|
+
# deleted.
|
|
32092
|
+
STANDARD_ENCRYPTION = 269_392_453
|
|
32093
|
+
end
|
|
32094
|
+
|
|
31817
32095
|
# The private IPv6 google access type for the VM.
|
|
31818
32096
|
# If not specified, use INHERIT_FROM_SUBNETWORK as default.
|
|
31819
32097
|
module PrivateIpv6GoogleAccess
|
|
@@ -32529,16 +32807,15 @@ module Google
|
|
|
32529
32807
|
|
|
32530
32808
|
# @!attribute [rw] default_action_on_failure
|
|
32531
32809
|
# @return [::String]
|
|
32532
|
-
# The action that a MIG performs on a failed
|
|
32533
|
-
#
|
|
32534
|
-
#
|
|
32810
|
+
# The action that a MIG performs on a failed VM. If the value of the
|
|
32811
|
+
# onFailedHealthCheck field is `DEFAULT_ACTION`, then the same action also
|
|
32812
|
+
# applies to the VMs on which your application fails a health check.
|
|
32535
32813
|
# Valid values are
|
|
32536
32814
|
#
|
|
32537
|
-
# - REPAIR (default): MIG automatically repairs a failed
|
|
32538
|
-
#
|
|
32815
|
+
# - REPAIR (default): MIG automatically repairs a failed VM
|
|
32816
|
+
# by recreating it. For more information, see About
|
|
32539
32817
|
# repairing VMs in a MIG.
|
|
32540
|
-
# - DO_NOTHING: MIG does not repair a failed
|
|
32541
|
-
# VM.
|
|
32818
|
+
# - DO_NOTHING: MIG does not repair a failed VM.
|
|
32542
32819
|
# Check the DefaultActionOnFailure enum for the list of possible values.
|
|
32543
32820
|
# @!attribute [rw] force_update_on_repair
|
|
32544
32821
|
# @return [::String]
|
|
@@ -32568,20 +32845,22 @@ module Google
|
|
|
32568
32845
|
# For more information, see
|
|
32569
32846
|
# About repairing VMs in a MIG.
|
|
32570
32847
|
# Check the OnFailedHealthCheck enum for the list of possible values.
|
|
32848
|
+
# @!attribute [rw] on_repair
|
|
32849
|
+
# @return [::Google::Cloud::Compute::V1::InstanceGroupManagerInstanceLifecyclePolicyOnRepair]
|
|
32850
|
+
# Configuration for VM repairs in the MIG.
|
|
32571
32851
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
|
32572
32852
|
include ::Google::Protobuf::MessageExts
|
|
32573
32853
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
32574
32854
|
|
|
32575
|
-
# The action that a MIG performs on a failed
|
|
32576
|
-
#
|
|
32577
|
-
#
|
|
32855
|
+
# The action that a MIG performs on a failed VM. If the value of the
|
|
32856
|
+
# onFailedHealthCheck field is `DEFAULT_ACTION`, then the same action also
|
|
32857
|
+
# applies to the VMs on which your application fails a health check.
|
|
32578
32858
|
# Valid values are
|
|
32579
32859
|
#
|
|
32580
|
-
# - REPAIR (default): MIG automatically repairs a failed
|
|
32581
|
-
#
|
|
32860
|
+
# - REPAIR (default): MIG automatically repairs a failed VM
|
|
32861
|
+
# by recreating it. For more information, see About
|
|
32582
32862
|
# repairing VMs in a MIG.
|
|
32583
|
-
# - DO_NOTHING: MIG does not repair a failed
|
|
32584
|
-
# VM.
|
|
32863
|
+
# - DO_NOTHING: MIG does not repair a failed VM.
|
|
32585
32864
|
# Additional supported values which may be not listed in the enum directly due to technical reasons:
|
|
32586
32865
|
# DO_NOTHING
|
|
32587
32866
|
# REPAIR
|
|
@@ -32638,6 +32917,40 @@ module Google
|
|
|
32638
32917
|
end
|
|
32639
32918
|
end
|
|
32640
32919
|
|
|
32920
|
+
# Configuration for VM repairs in the MIG.
|
|
32921
|
+
# @!attribute [rw] allow_changing_zone
|
|
32922
|
+
# @return [::String]
|
|
32923
|
+
# Specifies whether the MIG can change a VM's zone during a repair.
|
|
32924
|
+
# Valid values are:
|
|
32925
|
+
#
|
|
32926
|
+
# - NO (default): MIG cannot change a VM's zone during a
|
|
32927
|
+
# repair.
|
|
32928
|
+
# - YES: MIG can select a different zone for the VM during
|
|
32929
|
+
# a repair.
|
|
32930
|
+
# Check the AllowChangingZone enum for the list of possible values.
|
|
32931
|
+
class InstanceGroupManagerInstanceLifecyclePolicyOnRepair
|
|
32932
|
+
include ::Google::Protobuf::MessageExts
|
|
32933
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
32934
|
+
|
|
32935
|
+
# Specifies whether the MIG can change a VM's zone during a repair.
|
|
32936
|
+
# Valid values are:
|
|
32937
|
+
#
|
|
32938
|
+
# - NO (default): MIG cannot change a VM's zone during a
|
|
32939
|
+
# repair.
|
|
32940
|
+
# - YES: MIG can select a different zone for the VM during
|
|
32941
|
+
# a repair.
|
|
32942
|
+
module AllowChangingZone
|
|
32943
|
+
# A value indicating that the enum field is not set.
|
|
32944
|
+
UNDEFINED_ALLOW_CHANGING_ZONE = 0
|
|
32945
|
+
|
|
32946
|
+
# [Default] MIG cannot change a VM's zone during a repair.
|
|
32947
|
+
NO = 2497
|
|
32948
|
+
|
|
32949
|
+
# MIG can select a different zone for the VM during a repair.
|
|
32950
|
+
YES = 87_751
|
|
32951
|
+
end
|
|
32952
|
+
end
|
|
32953
|
+
|
|
32641
32954
|
# [Output Only] A list of managed instance groups.
|
|
32642
32955
|
# @!attribute [rw] id
|
|
32643
32956
|
# @return [::String]
|
|
@@ -32683,6 +32996,12 @@ module Google
|
|
|
32683
32996
|
# @return [::Integer]
|
|
32684
32997
|
# Output only. A unique identifier for this resource type. The server generates this
|
|
32685
32998
|
# identifier.
|
|
32999
|
+
# @!attribute [rw] instances
|
|
33000
|
+
# @return [::Array<::Google::Cloud::Compute::V1::PerInstanceConfig>]
|
|
33001
|
+
# The names of instances to be created by this resize request. The number of
|
|
33002
|
+
# names specified determines the number of instances to create. The group's
|
|
33003
|
+
# target size will be increased by this number. This field cannot be used
|
|
33004
|
+
# together with 'resize_by'.
|
|
32686
33005
|
# @!attribute [rw] kind
|
|
32687
33006
|
# @return [::String]
|
|
32688
33007
|
# Output only. The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for resize requests.
|
|
@@ -33807,16 +34126,15 @@ module Google
|
|
|
33807
34126
|
|
|
33808
34127
|
# @!attribute [rw] error
|
|
33809
34128
|
# @return [::Google::Cloud::Compute::V1::InstanceManagedByIgmErrorManagedInstanceError]
|
|
33810
|
-
# Output only.
|
|
34129
|
+
# Output only. Contents of the error.
|
|
33811
34130
|
# @!attribute [rw] instance_action_details
|
|
33812
34131
|
# @return [::Google::Cloud::Compute::V1::InstanceManagedByIgmErrorInstanceActionDetails]
|
|
33813
|
-
# Output only.
|
|
34132
|
+
# Output only. Details of the instance action that triggered this error.
|
|
33814
34133
|
# May be null, if the error was not caused by an action on an instance.
|
|
33815
34134
|
# This field is optional.
|
|
33816
34135
|
# @!attribute [rw] timestamp
|
|
33817
34136
|
# @return [::String]
|
|
33818
|
-
# Output only.
|
|
33819
|
-
# This value is in RFC3339 text format.
|
|
34137
|
+
# Output only. The time that this error occurred. This value is in RFC3339 text format.
|
|
33820
34138
|
class InstanceManagedByIgmError
|
|
33821
34139
|
include ::Google::Protobuf::MessageExts
|
|
33822
34140
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -33824,16 +34142,16 @@ module Google
|
|
|
33824
34142
|
|
|
33825
34143
|
# @!attribute [rw] action
|
|
33826
34144
|
# @return [::String]
|
|
33827
|
-
# Output only.
|
|
33828
|
-
#
|
|
34145
|
+
# Output only. Action that managed instance group was executing on the instance when the
|
|
34146
|
+
# error occurred. Possible values:
|
|
33829
34147
|
# Check the Action enum for the list of possible values.
|
|
33830
34148
|
# @!attribute [rw] instance
|
|
33831
34149
|
# @return [::String]
|
|
33832
|
-
# Output only.
|
|
33833
|
-
#
|
|
34150
|
+
# Output only. The URL of the instance. The URL can be set even if the instance has not
|
|
34151
|
+
# yet been created.
|
|
33834
34152
|
# @!attribute [rw] version
|
|
33835
34153
|
# @return [::Google::Cloud::Compute::V1::ManagedInstanceVersion]
|
|
33836
|
-
# Output only.
|
|
34154
|
+
# Output only. Version this instance was created from, or was being
|
|
33837
34155
|
# created from, but the creation failed. Corresponds to one of the versions
|
|
33838
34156
|
# that were set on the Instance Group Manager resource at the time this
|
|
33839
34157
|
# instance was being created.
|
|
@@ -33841,8 +34159,8 @@ module Google
|
|
|
33841
34159
|
include ::Google::Protobuf::MessageExts
|
|
33842
34160
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
33843
34161
|
|
|
33844
|
-
# Output only.
|
|
33845
|
-
#
|
|
34162
|
+
# Output only. Action that managed instance group was executing on the instance when the
|
|
34163
|
+
# error occurred. Possible values:
|
|
33846
34164
|
module Action
|
|
33847
34165
|
# A value indicating that the enum field is not set.
|
|
33848
34166
|
UNDEFINED_ACTION = 0
|
|
@@ -33907,10 +34225,10 @@ module Google
|
|
|
33907
34225
|
|
|
33908
34226
|
# @!attribute [rw] code
|
|
33909
34227
|
# @return [::String]
|
|
33910
|
-
# Output only.
|
|
34228
|
+
# Output only. Error code.
|
|
33911
34229
|
# @!attribute [rw] message
|
|
33912
34230
|
# @return [::String]
|
|
33913
|
-
# Output only.
|
|
34231
|
+
# Output only. Error message.
|
|
33914
34232
|
class InstanceManagedByIgmErrorManagedInstanceError
|
|
33915
34233
|
include ::Google::Protobuf::MessageExts
|
|
33916
34234
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -34001,6 +34319,11 @@ module Google
|
|
|
34001
34319
|
# @!attribute [rw] labels
|
|
34002
34320
|
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
34003
34321
|
# Labels to apply to instances that are created from these properties.
|
|
34322
|
+
# @!attribute [rw] local_ssd_encryption_mode
|
|
34323
|
+
# @return [::String]
|
|
34324
|
+
# Specifies which method should be used for encrypting the
|
|
34325
|
+
# Local SSDs attached to the VM.
|
|
34326
|
+
# Check the LocalSsdEncryptionMode enum for the list of possible values.
|
|
34004
34327
|
# @!attribute [rw] machine_type
|
|
34005
34328
|
# @return [::String]
|
|
34006
34329
|
# The machine type to use for instances that are created from these
|
|
@@ -34111,6 +34434,29 @@ module Google
|
|
|
34111
34434
|
STOP = 2_555_906
|
|
34112
34435
|
end
|
|
34113
34436
|
|
|
34437
|
+
# Specifies which method should be used for encrypting the
|
|
34438
|
+
# Local SSDs attached to the VM.
|
|
34439
|
+
module LocalSsdEncryptionMode
|
|
34440
|
+
# A value indicating that the enum field is not set.
|
|
34441
|
+
UNDEFINED_LOCAL_SSD_ENCRYPTION_MODE = 0
|
|
34442
|
+
|
|
34443
|
+
# The given VM will opt-in for using ephemeral key for
|
|
34444
|
+
# encryption of Local SSDs.
|
|
34445
|
+
# The Local SSDs will not be able to recover data in case of VM
|
|
34446
|
+
# crash.
|
|
34447
|
+
EPHEMERAL_KEY_ENCRYPTION = 413_047_941
|
|
34448
|
+
|
|
34449
|
+
# The given VM will be encrypted using keys managed by the cloud
|
|
34450
|
+
# infrastructure and the keys will be deleted when the VM is
|
|
34451
|
+
# deleted.
|
|
34452
|
+
LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED = 454_655_720
|
|
34453
|
+
|
|
34454
|
+
# The given VM will be encrypted using keys managed by the cloud
|
|
34455
|
+
# infrastructure and the keys will be deleted when the VM is
|
|
34456
|
+
# deleted.
|
|
34457
|
+
STANDARD_ENCRYPTION = 269_392_453
|
|
34458
|
+
end
|
|
34459
|
+
|
|
34114
34460
|
# The private IPv6 google access type for VMs.
|
|
34115
34461
|
# If not specified, use INHERIT_FROM_SUBNETWORK as default.
|
|
34116
34462
|
# Note that for MachineImage, this is not supported yet.
|
|
@@ -35161,6 +35507,11 @@ module Google
|
|
|
35161
35507
|
# @return [::String]
|
|
35162
35508
|
# An optional description of this resource. Provide this property when you
|
|
35163
35509
|
# create the resource.
|
|
35510
|
+
# @!attribute [rw] effective_location
|
|
35511
|
+
# @return [::String]
|
|
35512
|
+
# Output only. URL of the InterconnectLocation object that represents where
|
|
35513
|
+
# this connection is to be provisioned. By default it will be the same as the
|
|
35514
|
+
# location field.
|
|
35164
35515
|
# @!attribute [rw] expected_outages
|
|
35165
35516
|
# @return [::Array<::Google::Cloud::Compute::V1::InterconnectOutageNotification>]
|
|
35166
35517
|
# Output only. [Output Only] A list of outages expected for this Interconnect.
|
|
@@ -44010,6 +44361,115 @@ module Google
|
|
|
44010
44361
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
44011
44362
|
end
|
|
44012
44363
|
|
|
44364
|
+
# A request message for Routers.ListNamedSets. See the method description for details.
|
|
44365
|
+
# @!attribute [rw] filter
|
|
44366
|
+
# @return [::String]
|
|
44367
|
+
# A filter expression that filters resources listed in the response. Most
|
|
44368
|
+
# Compute resources support two types of filter expressions:
|
|
44369
|
+
# expressions that support regular expressions and expressions that follow
|
|
44370
|
+
# API improvement proposal AIP-160.
|
|
44371
|
+
# These two types of filter expressions cannot be mixed in one request.
|
|
44372
|
+
#
|
|
44373
|
+
# If you want to use AIP-160, your expression must specify the field name, an
|
|
44374
|
+
# operator, and the value that you want to use for filtering. The value
|
|
44375
|
+
# must be a string, a number, or a boolean. The operator
|
|
44376
|
+
# must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
44377
|
+
#
|
|
44378
|
+
# For example, if you are filtering Compute Engine instances, you can
|
|
44379
|
+
# exclude instances named `example-instance` by specifying
|
|
44380
|
+
# `name != example-instance`.
|
|
44381
|
+
#
|
|
44382
|
+
# The `:*` comparison can be used to test whether a key has been defined.
|
|
44383
|
+
# For example, to find all objects with `owner` label use:
|
|
44384
|
+
# ```
|
|
44385
|
+
# labels.owner:*
|
|
44386
|
+
# ```
|
|
44387
|
+
#
|
|
44388
|
+
# You can also filter nested fields. For example, you could specify
|
|
44389
|
+
# `scheduling.automaticRestart = false` to include instances only
|
|
44390
|
+
# if they are not scheduled for automatic restarts. You can use filtering
|
|
44391
|
+
# on nested fields to filter based onresource labels.
|
|
44392
|
+
#
|
|
44393
|
+
# To filter on multiple expressions, provide each separate expression within
|
|
44394
|
+
# parentheses. For example:
|
|
44395
|
+
# ```
|
|
44396
|
+
# (scheduling.automaticRestart = true)
|
|
44397
|
+
# (cpuPlatform = "Intel Skylake")
|
|
44398
|
+
# ```
|
|
44399
|
+
# By default, each expression is an `AND` expression. However, you
|
|
44400
|
+
# can include `AND` and `OR` expressions explicitly.
|
|
44401
|
+
# For example:
|
|
44402
|
+
# ```
|
|
44403
|
+
# (cpuPlatform = "Intel Skylake") OR
|
|
44404
|
+
# (cpuPlatform = "Intel Broadwell") AND
|
|
44405
|
+
# (scheduling.automaticRestart = true)
|
|
44406
|
+
# ```
|
|
44407
|
+
#
|
|
44408
|
+
# If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
44409
|
+
# (not equal) operator against a single un-parenthesized expression with or
|
|
44410
|
+
# without quotes or against multiple parenthesized expressions. Examples:
|
|
44411
|
+
#
|
|
44412
|
+
# `fieldname eq unquoted literal`
|
|
44413
|
+
# `fieldname eq 'single quoted literal'`
|
|
44414
|
+
# `fieldname eq "double quoted literal"`
|
|
44415
|
+
# `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
44416
|
+
#
|
|
44417
|
+
# The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
|
|
44418
|
+
# The literal value must match the entire field.
|
|
44419
|
+
#
|
|
44420
|
+
# For example, to filter for instances that do not end with name "instance",
|
|
44421
|
+
# you would use `name ne .*instance`.
|
|
44422
|
+
#
|
|
44423
|
+
# You cannot combine constraints on multiple fields using regular
|
|
44424
|
+
# expressions.
|
|
44425
|
+
# @!attribute [rw] max_results
|
|
44426
|
+
# @return [::Integer]
|
|
44427
|
+
# The maximum number of results per page that should be returned.
|
|
44428
|
+
# If the number of available results is larger than `maxResults`,
|
|
44429
|
+
# Compute Engine returns a `nextPageToken` that can be used to get
|
|
44430
|
+
# the next page of results in subsequent list requests. Acceptable values are
|
|
44431
|
+
# `0` to `500`, inclusive. (Default: `500`)
|
|
44432
|
+
# @!attribute [rw] order_by
|
|
44433
|
+
# @return [::String]
|
|
44434
|
+
# Sorts list results by a certain order. By default, results
|
|
44435
|
+
# are returned in alphanumerical order based on the resource name.
|
|
44436
|
+
#
|
|
44437
|
+
# You can also sort results in descending order based on the creation
|
|
44438
|
+
# timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
44439
|
+
# results based on the `creationTimestamp` field in
|
|
44440
|
+
# reverse chronological order (newest result first). Use this to sort
|
|
44441
|
+
# resources like operations so that the newest operation is returned first.
|
|
44442
|
+
#
|
|
44443
|
+
# Currently, only sorting by `name` or
|
|
44444
|
+
# `creationTimestamp desc` is supported.
|
|
44445
|
+
# @!attribute [rw] page_token
|
|
44446
|
+
# @return [::String]
|
|
44447
|
+
# Specifies a page token to use. Set `pageToken` to the
|
|
44448
|
+
# `nextPageToken` returned by a previous list request to get
|
|
44449
|
+
# the next page of results.
|
|
44450
|
+
# @!attribute [rw] project
|
|
44451
|
+
# @return [::String]
|
|
44452
|
+
# Project ID for this request.
|
|
44453
|
+
# @!attribute [rw] region
|
|
44454
|
+
# @return [::String]
|
|
44455
|
+
# Name of the region for this request.
|
|
44456
|
+
# @!attribute [rw] return_partial_success
|
|
44457
|
+
# @return [::Boolean]
|
|
44458
|
+
# Opt-in for partial success behavior which provides partial results in case
|
|
44459
|
+
# of failure. The default value is false.
|
|
44460
|
+
#
|
|
44461
|
+
# For example, when partial success behavior is enabled, aggregatedList for a
|
|
44462
|
+
# single zone scope either returns all resources in the zone or no resources,
|
|
44463
|
+
# with an error code.
|
|
44464
|
+
# @!attribute [rw] router
|
|
44465
|
+
# @return [::String]
|
|
44466
|
+
# Name or id of the resource for this request.
|
|
44467
|
+
# Name should conform to RFC1035.
|
|
44468
|
+
class ListNamedSetsRoutersRequest
|
|
44469
|
+
include ::Google::Protobuf::MessageExts
|
|
44470
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
44471
|
+
end
|
|
44472
|
+
|
|
44013
44473
|
# A request message for NetworkAttachments.List. See the method description for details.
|
|
44014
44474
|
# @!attribute [rw] filter
|
|
44015
44475
|
# @return [::String]
|
|
@@ -54369,6 +54829,13 @@ module Google
|
|
|
54369
54829
|
# @return [::Google::Cloud::Compute::V1::ManagedInstancePropertiesFromFlexibilityPolicy]
|
|
54370
54830
|
# Output only. [Output Only] Instance properties selected for this instance resulting from
|
|
54371
54831
|
# InstanceFlexibilityPolicy.
|
|
54832
|
+
# @!attribute [rw] scheduling
|
|
54833
|
+
# @return [::Google::Cloud::Compute::V1::ManagedInstanceScheduling]
|
|
54834
|
+
# Output only. Information about the termination timestamp of the instance, if applicable.
|
|
54835
|
+
# @!attribute [rw] shutdown_details
|
|
54836
|
+
# @return [::Google::Cloud::Compute::V1::ManagedInstanceShutdownDetails]
|
|
54837
|
+
# Output only. Specifies the graceful shutdown details if the instance is in
|
|
54838
|
+
# `PENDING_STOP` state or there is a programmed stop scheduled.
|
|
54372
54839
|
# @!attribute [rw] version
|
|
54373
54840
|
# @return [::Google::Cloud::Compute::V1::ManagedInstanceVersion]
|
|
54374
54841
|
# Output only. [Output Only] Intended version of this instance.
|
|
@@ -54575,6 +55042,34 @@ module Google
|
|
|
54575
55042
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
54576
55043
|
end
|
|
54577
55044
|
|
|
55045
|
+
# @!attribute [rw] graceful_shutdown_timestamp
|
|
55046
|
+
# @return [::String]
|
|
55047
|
+
# Output only. The timestamp at which the underlying instance will be
|
|
55048
|
+
# triggered for graceful shutdown if it is configured. This is in RFC3339 text format.
|
|
55049
|
+
# @!attribute [rw] termination_timestamp
|
|
55050
|
+
# @return [::String]
|
|
55051
|
+
# Output only. The timestamp at which the managed instance will be terminated. This is
|
|
55052
|
+
# in RFC3339 text
|
|
55053
|
+
# format.
|
|
55054
|
+
class ManagedInstanceScheduling
|
|
55055
|
+
include ::Google::Protobuf::MessageExts
|
|
55056
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
55057
|
+
end
|
|
55058
|
+
|
|
55059
|
+
# @!attribute [rw] max_duration
|
|
55060
|
+
# @return [::Google::Cloud::Compute::V1::Duration]
|
|
55061
|
+
# Output only. The duration for graceful shutdown. Only applicable when the instance is
|
|
55062
|
+
# in `PENDING_STOP` state.
|
|
55063
|
+
# @!attribute [rw] request_timestamp
|
|
55064
|
+
# @return [::String]
|
|
55065
|
+
# Output only. Past timestamp indicating the beginning of `PENDING_STOP` state of
|
|
55066
|
+
# instance in RFC3339
|
|
55067
|
+
# text format.
|
|
55068
|
+
class ManagedInstanceShutdownDetails
|
|
55069
|
+
include ::Google::Protobuf::MessageExts
|
|
55070
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
55071
|
+
end
|
|
55072
|
+
|
|
54578
55073
|
# @!attribute [rw] instance_template
|
|
54579
55074
|
# @return [::String]
|
|
54580
55075
|
# Output only. [Output Only] The intended template of the instance. This field is empty
|
|
@@ -54880,6 +55375,49 @@ module Google
|
|
|
54880
55375
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
54881
55376
|
end
|
|
54882
55377
|
|
|
55378
|
+
# @!attribute [rw] description
|
|
55379
|
+
# @return [::String]
|
|
55380
|
+
# An optional description of named set.
|
|
55381
|
+
# @!attribute [rw] elements
|
|
55382
|
+
# @return [::Array<::Google::Cloud::Compute::V1::Expr>]
|
|
55383
|
+
# CEL expressions that are comparable to constructs of this set's type
|
|
55384
|
+
# (see Policy Language).
|
|
55385
|
+
# @!attribute [rw] fingerprint
|
|
55386
|
+
# @return [::String]
|
|
55387
|
+
# A fingerprint for the Named Set being applied to this Router, which is
|
|
55388
|
+
# essentially a hash of the Named Set used for optimistic locking.
|
|
55389
|
+
# The fingerprint is initially generated by Compute Engine and changes
|
|
55390
|
+
# after every request to modify or update the Named Set. You must always
|
|
55391
|
+
# provide an up-to-date fingerprint hash in order to update or change
|
|
55392
|
+
# labels.
|
|
55393
|
+
#
|
|
55394
|
+
# To see the latest fingerprint, make a getNamedSet() request
|
|
55395
|
+
# to retrieve a Named Set.
|
|
55396
|
+
# @!attribute [rw] name
|
|
55397
|
+
# @return [::String]
|
|
55398
|
+
# This set's name, which must be a resource ID segment and unique within all
|
|
55399
|
+
# named sets owned by the Router. Name should conform to RFC1035.
|
|
55400
|
+
# @!attribute [rw] type
|
|
55401
|
+
# @return [::String]
|
|
55402
|
+
# This named set's type
|
|
55403
|
+
# Check the Type enum for the list of possible values.
|
|
55404
|
+
class NamedSet
|
|
55405
|
+
include ::Google::Protobuf::MessageExts
|
|
55406
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
55407
|
+
|
|
55408
|
+
# This named set's type
|
|
55409
|
+
module Type
|
|
55410
|
+
# A value indicating that the enum field is not set.
|
|
55411
|
+
UNDEFINED_TYPE = 0
|
|
55412
|
+
|
|
55413
|
+
# The Named Set is a Community Named Set.
|
|
55414
|
+
NAMED_SET_TYPE_COMMUNITY = 263_444_871
|
|
55415
|
+
|
|
55416
|
+
# The Named Set is a Prefix Named Set.
|
|
55417
|
+
NAMED_SET_TYPE_PREFIX = 228_038_036
|
|
55418
|
+
end
|
|
55419
|
+
end
|
|
55420
|
+
|
|
54883
55421
|
# Contains NAT IP information of a NAT config (i.e. usage status, mode).
|
|
54884
55422
|
# @!attribute [rw] nat_ip_info_mappings
|
|
54885
55423
|
# @return [::Array<::Google::Cloud::Compute::V1::NatIpInfoNatIpInfoMapping>]
|
|
@@ -55114,12 +55652,14 @@ module Google
|
|
|
55114
55652
|
# to the same network as all the subnetworks.
|
|
55115
55653
|
# @!attribute [rw] producer_accept_lists
|
|
55116
55654
|
# @return [::Array<::String>]
|
|
55117
|
-
# Projects that are allowed to connect to this network
|
|
55118
|
-
# The project can be specified using its id or number.
|
|
55655
|
+
# Projects or service class ids that are allowed to connect to this network
|
|
55656
|
+
# attachment. The project can be specified using its id or number. Service
|
|
55657
|
+
# class id can be specified as "serviceclasses/\\{service_class_id}".
|
|
55119
55658
|
# @!attribute [rw] producer_reject_lists
|
|
55120
55659
|
# @return [::Array<::String>]
|
|
55121
|
-
# Projects that are not allowed to connect to this
|
|
55122
|
-
# The project can be specified using its id or number.
|
|
55660
|
+
# Projects or service class ids that are not allowed to connect to this
|
|
55661
|
+
# network attachment. The project can be specified using its id or number.
|
|
55662
|
+
# Service class id can be specified as "serviceclasses/\\{service_class_id}".
|
|
55123
55663
|
# @!attribute [rw] region
|
|
55124
55664
|
# @return [::String]
|
|
55125
55665
|
# Output only. [Output Only] URL of the region where the network attachment resides.
|
|
@@ -55525,7 +56065,11 @@ module Google
|
|
|
55525
56065
|
# @!attribute [rw] network
|
|
55526
56066
|
# @return [::String]
|
|
55527
56067
|
# The URL of the network to which all network endpoints in the NEG belong.
|
|
55528
|
-
#
|
|
56068
|
+
# For networkEndpointType GCE_VM_IP_PORT,GCE_VM_IP_PORTMAP or NON_GCP_PRIVATE_IP_PORT,
|
|
56069
|
+
# if this field is not specified, a default network will be used.
|
|
56070
|
+
# This field cannot be set for NEGs with networkEndpointType set toSERVERLESS or PRIVATE_SERVICE_CONNECT and for
|
|
56071
|
+
# global NEGs.
|
|
56072
|
+
# For all other network endpoint types, this field is required.
|
|
55529
56073
|
# @!attribute [rw] network_endpoint_type
|
|
55530
56074
|
# @return [::String]
|
|
55531
56075
|
# Type of network endpoints in this network endpoint group. Can be one ofGCE_VM_IP, GCE_VM_IP_PORT,NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT,INTERNET_IP_PORT, SERVERLESS,PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP.
|
|
@@ -55985,6 +56529,10 @@ module Google
|
|
|
55985
56529
|
# @return [::Array<::Google::Cloud::Compute::V1::AliasIpRange>]
|
|
55986
56530
|
# An array of alias IP ranges for this network interface.
|
|
55987
56531
|
# You can only specify this field for network interfaces in VPC networks.
|
|
56532
|
+
# @!attribute [rw] alias_ipv6_ranges
|
|
56533
|
+
# @return [::Array<::Google::Cloud::Compute::V1::AliasIpRange>]
|
|
56534
|
+
# An array of alias IPv6 ranges for this network interface.
|
|
56535
|
+
# You can only specify this field for network interfaces in VPC networks.
|
|
55988
56536
|
# @!attribute [rw] enable_vpc_scoped_dns
|
|
55989
56537
|
# @return [::Boolean]
|
|
55990
56538
|
# Optional. If true, DNS resolution will be enabled over this interface. Only valid
|
|
@@ -59665,6 +60213,39 @@ module Google
|
|
|
59665
60213
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
59666
60214
|
end
|
|
59667
60215
|
|
|
60216
|
+
# A request message for Routers.PatchNamedSet. See the method description for details.
|
|
60217
|
+
# @!attribute [rw] named_set_resource
|
|
60218
|
+
# @return [::Google::Cloud::Compute::V1::NamedSet]
|
|
60219
|
+
# The body resource for this request
|
|
60220
|
+
# @!attribute [rw] project
|
|
60221
|
+
# @return [::String]
|
|
60222
|
+
# Project ID for this request.
|
|
60223
|
+
# @!attribute [rw] region
|
|
60224
|
+
# @return [::String]
|
|
60225
|
+
# Name of the region for this request.
|
|
60226
|
+
# @!attribute [rw] request_id
|
|
60227
|
+
# @return [::String]
|
|
60228
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
|
60229
|
+
# that if you must retry your request, the server will know to ignore the
|
|
60230
|
+
# request if it has already been completed.
|
|
60231
|
+
#
|
|
60232
|
+
# For example, consider a situation where you make an initial request and
|
|
60233
|
+
# the request times out. If you make the request again with the same
|
|
60234
|
+
# request ID, the server can check if original operation with the same
|
|
60235
|
+
# request ID was received, and if so, will ignore the second request. This
|
|
60236
|
+
# prevents clients from accidentally creating duplicate commitments.
|
|
60237
|
+
#
|
|
60238
|
+
# The request ID must be
|
|
60239
|
+
# a valid UUID with the exception that zero UUID is not supported
|
|
60240
|
+
# (00000000-0000-0000-0000-000000000000).
|
|
60241
|
+
# @!attribute [rw] router
|
|
60242
|
+
# @return [::String]
|
|
60243
|
+
# Name of the Router resource where Named Set is defined.
|
|
60244
|
+
class PatchNamedSetRouterRequest
|
|
60245
|
+
include ::Google::Protobuf::MessageExts
|
|
60246
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
60247
|
+
end
|
|
60248
|
+
|
|
59668
60249
|
# A request message for NetworkAttachments.Patch. See the method description for details.
|
|
59669
60250
|
# @!attribute [rw] network_attachment
|
|
59670
60251
|
# @return [::String]
|
|
@@ -61375,6 +61956,38 @@ module Google
|
|
|
61375
61956
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
61376
61957
|
end
|
|
61377
61958
|
|
|
61959
|
+
# A request message for Rollouts.Pause. See the method description for details.
|
|
61960
|
+
# @!attribute [rw] etag
|
|
61961
|
+
# @return [::String]
|
|
61962
|
+
# The etag of the Rollout.
|
|
61963
|
+
# If this is provided, the request will only succeed if the etag matches
|
|
61964
|
+
# the current etag of the Rollout.
|
|
61965
|
+
# @!attribute [rw] project
|
|
61966
|
+
# @return [::String]
|
|
61967
|
+
# Required. Project ID for this request.
|
|
61968
|
+
# @!attribute [rw] request_id
|
|
61969
|
+
# @return [::String]
|
|
61970
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
|
61971
|
+
# that if you must retry your request, the server will know to ignore the
|
|
61972
|
+
# request if it has already been completed.
|
|
61973
|
+
#
|
|
61974
|
+
# For example, consider a situation where you make an initial request and
|
|
61975
|
+
# the request times out. If you make the request again with the same
|
|
61976
|
+
# request ID, the server can check if original operation with the same
|
|
61977
|
+
# request ID was received, and if so, will ignore the second request. This
|
|
61978
|
+
# prevents clients from accidentally creating duplicate commitments.
|
|
61979
|
+
#
|
|
61980
|
+
# The request ID must be
|
|
61981
|
+
# a valid UUID with the exception that zero UUID is not supported
|
|
61982
|
+
# (00000000-0000-0000-0000-000000000000).
|
|
61983
|
+
# @!attribute [rw] rollout
|
|
61984
|
+
# @return [::String]
|
|
61985
|
+
# Required. Name of the Rollout resource to pause.
|
|
61986
|
+
class PauseRolloutRequest
|
|
61987
|
+
include ::Google::Protobuf::MessageExts
|
|
61988
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
61989
|
+
end
|
|
61990
|
+
|
|
61378
61991
|
# @!attribute [rw] fingerprint
|
|
61379
61992
|
# @return [::String]
|
|
61380
61993
|
# Fingerprint of this per-instance config. This field can be used in
|
|
@@ -61606,6 +62219,68 @@ module Google
|
|
|
61606
62219
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
61607
62220
|
end
|
|
61608
62221
|
|
|
62222
|
+
# The periodic partial maintenance schedule includes 52 weeks worth of
|
|
62223
|
+
# maintenance windows.
|
|
62224
|
+
# LINT.IfChange(PeriodicPartialMaintenanceSchedule)
|
|
62225
|
+
# @!attribute [rw] sub_type
|
|
62226
|
+
# @return [::String]
|
|
62227
|
+
# The maintenance type in which the zone is during the given window.
|
|
62228
|
+
# Check the SubType enum for the list of possible values.
|
|
62229
|
+
# @!attribute [rw] target_resource
|
|
62230
|
+
# @return [::String]
|
|
62231
|
+
# The target resource that the maintenance window is for.
|
|
62232
|
+
# For example, "projects/my-project/zones/us-central1-a".
|
|
62233
|
+
# @!attribute [rw] type
|
|
62234
|
+
# @return [::String]
|
|
62235
|
+
# Check the Type enum for the list of possible values.
|
|
62236
|
+
# @!attribute [rw] window_end_time
|
|
62237
|
+
# @return [::Google::Cloud::Compute::V1::DateTime]
|
|
62238
|
+
# The end civil timestamp of the window (not inclusive).
|
|
62239
|
+
# This contains a time zone.
|
|
62240
|
+
# @!attribute [rw] window_start_time
|
|
62241
|
+
# @return [::Google::Cloud::Compute::V1::DateTime]
|
|
62242
|
+
# The start civil timestamp of the window.
|
|
62243
|
+
# This contains a time zone.
|
|
62244
|
+
class PeriodicPartialMaintenanceSchedule
|
|
62245
|
+
include ::Google::Protobuf::MessageExts
|
|
62246
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
62247
|
+
|
|
62248
|
+
# The maintenance type in which the zone is during the given window.
|
|
62249
|
+
module SubType
|
|
62250
|
+
# A value indicating that the enum field is not set.
|
|
62251
|
+
UNDEFINED_SUB_TYPE = 0
|
|
62252
|
+
|
|
62253
|
+
# Default value.
|
|
62254
|
+
MAINTENANCE_SUBTYPE_UNSPECIFIED = 294_853_734
|
|
62255
|
+
|
|
62256
|
+
# A dedicated window for customers to perform their own maintenance. This
|
|
62257
|
+
# often runs concurrently with a DISRUPTIVE_UPGRADE.
|
|
62258
|
+
MAINTENANCE_TYPE_CUSTOMER_MAINTENANCE = 431_585_707
|
|
62259
|
+
|
|
62260
|
+
# For disruptive updates, including host machine kernel or firmware
|
|
62261
|
+
# upgrades.
|
|
62262
|
+
MAINTENANCE_TYPE_DISRUPTIVE_UPGRADE = 385_079_609
|
|
62263
|
+
|
|
62264
|
+
# A post-maintenance window for customers to conduct final testing and
|
|
62265
|
+
# performance validation before resuming full business operations.
|
|
62266
|
+
MAINTENANCE_TYPE_STABLE = 141_316_244
|
|
62267
|
+
|
|
62268
|
+
# For preliminary, non-disruptive tasks such as key rotations.
|
|
62269
|
+
MAINTENANCE_TYPE_TRANSITION = 348_575_278
|
|
62270
|
+
end
|
|
62271
|
+
|
|
62272
|
+
module Type
|
|
62273
|
+
# A value indicating that the enum field is not set.
|
|
62274
|
+
UNDEFINED_TYPE = 0
|
|
62275
|
+
|
|
62276
|
+
# Default value.
|
|
62277
|
+
MAINTENANCE_TYPE_UNSPECIFIED = 351_550_814
|
|
62278
|
+
|
|
62279
|
+
# The zone is in a private maintenance window.
|
|
62280
|
+
PRIVATE_ZONE_MAINTENANCE = 55_583_292
|
|
62281
|
+
end
|
|
62282
|
+
end
|
|
62283
|
+
|
|
61609
62284
|
# An Identity and Access Management (IAM) policy, which specifies access
|
|
61610
62285
|
# controls for Google Cloud resources.
|
|
61611
62286
|
#
|
|
@@ -63549,6 +64224,10 @@ module Google
|
|
|
63549
64224
|
# @!attribute [rw] instance_group_managers_recreate_instances_request_resource
|
|
63550
64225
|
# @return [::Google::Cloud::Compute::V1::InstanceGroupManagersRecreateInstancesRequest]
|
|
63551
64226
|
# The body resource for this request
|
|
64227
|
+
# @!attribute [rw] no_graceful_shutdown
|
|
64228
|
+
# @return [::Boolean]
|
|
64229
|
+
# When set, graceful shutdown is skipped for instance recreation even if it's
|
|
64230
|
+
# configured for the instances.
|
|
63552
64231
|
# @!attribute [rw] project
|
|
63553
64232
|
# @return [::String]
|
|
63554
64233
|
# Project ID for this request.
|
|
@@ -63580,6 +64259,10 @@ module Google
|
|
|
63580
64259
|
# @!attribute [rw] instance_group_manager
|
|
63581
64260
|
# @return [::String]
|
|
63582
64261
|
# Name of the managed instance group.
|
|
64262
|
+
# @!attribute [rw] no_graceful_shutdown
|
|
64263
|
+
# @return [::Boolean]
|
|
64264
|
+
# When set, graceful shutdown is skipped for instance recreation even if it's
|
|
64265
|
+
# configured for the instances.
|
|
63583
64266
|
# @!attribute [rw] project
|
|
63584
64267
|
# @return [::String]
|
|
63585
64268
|
# Project ID for this request.
|
|
@@ -67087,6 +67770,9 @@ module Google
|
|
|
67087
67770
|
|
|
67088
67771
|
# Represents the physical host topology of the host on which the VM is
|
|
67089
67772
|
# running.
|
|
67773
|
+
# @!attribute [rw] additional_attributes
|
|
67774
|
+
# @return [::Google::Cloud::Compute::V1::ResourceStatusPhysicalHostTopologyAdditionalAttributes]
|
|
67775
|
+
# Output only. [Output Only] Additional location information of the running instance.
|
|
67090
67776
|
# @!attribute [rw] block
|
|
67091
67777
|
# @return [::String]
|
|
67092
67778
|
# [Output Only] The ID of the block in which the running instance is
|
|
@@ -67110,6 +67796,27 @@ module Google
|
|
|
67110
67796
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
67111
67797
|
end
|
|
67112
67798
|
|
|
67799
|
+
# Additional location information of the running instance.
|
|
67800
|
+
# @!attribute [rw] accelerator_topology_ids
|
|
67801
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
67802
|
+
# Output only. The IDs of the accelerator topologies the instance belongs to. For
|
|
67803
|
+
# example
|
|
67804
|
+
# The key will be topologies like "4x4", "2x2x2" and the value will be
|
|
67805
|
+
# the location ID of the topologies.
|
|
67806
|
+
class ResourceStatusPhysicalHostTopologyAdditionalAttributes
|
|
67807
|
+
include ::Google::Protobuf::MessageExts
|
|
67808
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
67809
|
+
|
|
67810
|
+
# @!attribute [rw] key
|
|
67811
|
+
# @return [::String]
|
|
67812
|
+
# @!attribute [rw] value
|
|
67813
|
+
# @return [::String]
|
|
67814
|
+
class AcceleratorTopologyIdsEntry
|
|
67815
|
+
include ::Google::Protobuf::MessageExts
|
|
67816
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
67817
|
+
end
|
|
67818
|
+
end
|
|
67819
|
+
|
|
67113
67820
|
# Reservation consumption information that the instance is consuming from.
|
|
67114
67821
|
# @!attribute [rw] consumed_reservation
|
|
67115
67822
|
# @return [::String]
|
|
@@ -67227,6 +67934,38 @@ module Google
|
|
|
67227
67934
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
67228
67935
|
end
|
|
67229
67936
|
|
|
67937
|
+
# A request message for Rollouts.Resume. See the method description for details.
|
|
67938
|
+
# @!attribute [rw] etag
|
|
67939
|
+
# @return [::String]
|
|
67940
|
+
# The etag of the Rollout.
|
|
67941
|
+
# If this is provided, the request will only succeed if the etag matches
|
|
67942
|
+
# the current etag of the Rollout.
|
|
67943
|
+
# @!attribute [rw] project
|
|
67944
|
+
# @return [::String]
|
|
67945
|
+
# Required. Project ID for this request.
|
|
67946
|
+
# @!attribute [rw] request_id
|
|
67947
|
+
# @return [::String]
|
|
67948
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
|
67949
|
+
# that if you must retry your request, the server will know to ignore the
|
|
67950
|
+
# request if it has already been completed.
|
|
67951
|
+
#
|
|
67952
|
+
# For example, consider a situation where you make an initial request and
|
|
67953
|
+
# the request times out. If you make the request again with the same
|
|
67954
|
+
# request ID, the server can check if original operation with the same
|
|
67955
|
+
# request ID was received, and if so, will ignore the second request. This
|
|
67956
|
+
# prevents clients from accidentally creating duplicate commitments.
|
|
67957
|
+
#
|
|
67958
|
+
# The request ID must be
|
|
67959
|
+
# a valid UUID with the exception that zero UUID is not supported
|
|
67960
|
+
# (00000000-0000-0000-0000-000000000000).
|
|
67961
|
+
# @!attribute [rw] rollout
|
|
67962
|
+
# @return [::String]
|
|
67963
|
+
# Required. Name of the Rollout resource to resume.
|
|
67964
|
+
class ResumeRolloutRequest
|
|
67965
|
+
include ::Google::Protobuf::MessageExts
|
|
67966
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
67967
|
+
end
|
|
67968
|
+
|
|
67230
67969
|
# Rollout resource.
|
|
67231
67970
|
#
|
|
67232
67971
|
# A Rollout is a specific instance of a RolloutPlan. It represents a single
|
|
@@ -67271,6 +68010,12 @@ module Google
|
|
|
67271
68010
|
# which means the first character must be a lowercase letter, and all
|
|
67272
68011
|
# following characters must be a dash, lowercase letter, or digit, except
|
|
67273
68012
|
# the last character, which cannot be a dash.
|
|
68013
|
+
# @!attribute [rw] pause_time
|
|
68014
|
+
# @return [::String]
|
|
68015
|
+
# Output only. The timestamp at which the Rollout was paused.
|
|
68016
|
+
# @!attribute [rw] resume_time
|
|
68017
|
+
# @return [::String]
|
|
68018
|
+
# Output only. The timestamp at which the Rollout was resumed.
|
|
67274
68019
|
# @!attribute [rw] rollout_entity
|
|
67275
68020
|
# @return [::Google::Cloud::Compute::V1::RolloutRolloutEntity]
|
|
67276
68021
|
# Required. The resource being rolled out.
|
|
@@ -68242,6 +68987,9 @@ module Google
|
|
|
68242
68987
|
# @!attribute [rw] nats
|
|
68243
68988
|
# @return [::Array<::Google::Cloud::Compute::V1::RouterNat>]
|
|
68244
68989
|
# A list of NAT services created in this router.
|
|
68990
|
+
# @!attribute [rw] ncc_gateway
|
|
68991
|
+
# @return [::String]
|
|
68992
|
+
# URI of the ncc_gateway to which this router associated.
|
|
68245
68993
|
# @!attribute [rw] network
|
|
68246
68994
|
# @return [::String]
|
|
68247
68995
|
# URI of the network to which this router belongs.
|
|
@@ -68840,6 +69588,12 @@ module Google
|
|
|
68840
69588
|
# A list of URLs of the IP resources to be drained. These IPs
|
|
68841
69589
|
# must be valid static external IPs that have been assigned to the NAT.
|
|
68842
69590
|
# These IPs should be used for updating/patching a NAT only.
|
|
69591
|
+
# @!attribute [rw] effective_tcp_time_wait_timeout_sec
|
|
69592
|
+
# @return [::Integer]
|
|
69593
|
+
# Output only. Effective timeout (in seconds) for TCP connections that are in TIME_WAIT
|
|
69594
|
+
# state. This value is equal to tcp_time_wait_timeout_sec.
|
|
69595
|
+
# If tcp_time_wait_timeout_sec isn't set, the effective timeout is 30s or
|
|
69596
|
+
# 120s. The field is output only.
|
|
68843
69597
|
# @!attribute [rw] enable_dynamic_port_allocation
|
|
68844
69598
|
# @return [::Boolean]
|
|
68845
69599
|
# Enable Dynamic Port Allocation.
|
|
@@ -69323,6 +70077,9 @@ module Google
|
|
|
69323
70077
|
# @return [::Array<::Google::Cloud::Compute::V1::RouterStatusBgpPeerStatus>]
|
|
69324
70078
|
# @!attribute [rw] nat_status
|
|
69325
70079
|
# @return [::Array<::Google::Cloud::Compute::V1::RouterStatusNatStatus>]
|
|
70080
|
+
# @!attribute [rw] ncc_gateway
|
|
70081
|
+
# @return [::String]
|
|
70082
|
+
# URI of the ncc_gateway to which this router associated.
|
|
69326
70083
|
# @!attribute [rw] network
|
|
69327
70084
|
# @return [::String]
|
|
69328
70085
|
# URI of the network to which this router belongs.
|
|
@@ -69515,6 +70272,16 @@ module Google
|
|
|
69515
70272
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
69516
70273
|
end
|
|
69517
70274
|
|
|
70275
|
+
# @!attribute [rw] etag
|
|
70276
|
+
# @return [::String]
|
|
70277
|
+
# end_interface: MixerGetResponseWithEtagBuilder
|
|
70278
|
+
# @!attribute [rw] resource
|
|
70279
|
+
# @return [::Google::Cloud::Compute::V1::NamedSet]
|
|
70280
|
+
class RoutersGetNamedSetResponse
|
|
70281
|
+
include ::Google::Protobuf::MessageExts
|
|
70282
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
70283
|
+
end
|
|
70284
|
+
|
|
69518
70285
|
# @!attribute [rw] resource
|
|
69519
70286
|
# @return [::Google::Cloud::Compute::V1::RoutePolicy]
|
|
69520
70287
|
class RoutersGetRoutePolicyResponse
|
|
@@ -69555,6 +70322,39 @@ module Google
|
|
|
69555
70322
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
69556
70323
|
end
|
|
69557
70324
|
|
|
70325
|
+
# @!attribute [rw] etag
|
|
70326
|
+
# @return [::String]
|
|
70327
|
+
# @!attribute [rw] id
|
|
70328
|
+
# @return [::String]
|
|
70329
|
+
# [Output Only] The unique identifier for the resource. This identifier is
|
|
70330
|
+
# defined by the server.
|
|
70331
|
+
# @!attribute [rw] kind
|
|
70332
|
+
# @return [::String]
|
|
70333
|
+
# Output only. [Output Only] Type of resource. Alwayscompute#routersListNamedSets for lists of named sets.
|
|
70334
|
+
# @!attribute [rw] next_page_token
|
|
70335
|
+
# @return [::String]
|
|
70336
|
+
# [Output Only] This token allows you to get the next page of results for
|
|
70337
|
+
# list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
|
|
70338
|
+
# the query parameter pageToken in the next list request.
|
|
70339
|
+
# Subsequent list requests will have their own nextPageToken to
|
|
70340
|
+
# continue paging through the results.
|
|
70341
|
+
# @!attribute [rw] result
|
|
70342
|
+
# @return [::Array<::Google::Cloud::Compute::V1::NamedSet>]
|
|
70343
|
+
# [Output Only] A list of named sets.
|
|
70344
|
+
# @!attribute [rw] self_link
|
|
70345
|
+
# @return [::String]
|
|
70346
|
+
# Output only. [Output Only] Server-defined URL for this resource.
|
|
70347
|
+
# @!attribute [rw] unreachables
|
|
70348
|
+
# @return [::Array<::String>]
|
|
70349
|
+
# Output only. [Output Only] Unreachable resources.
|
|
70350
|
+
# @!attribute [rw] warning
|
|
70351
|
+
# @return [::Google::Cloud::Compute::V1::Warning]
|
|
70352
|
+
# [Output Only] Informational warning message.
|
|
70353
|
+
class RoutersListNamedSets
|
|
70354
|
+
include ::Google::Protobuf::MessageExts
|
|
70355
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
70356
|
+
end
|
|
70357
|
+
|
|
69558
70358
|
# @!attribute [rw] etag
|
|
69559
70359
|
# @return [::String]
|
|
69560
70360
|
# @!attribute [rw] id
|
|
@@ -70576,6 +71376,26 @@ module Google
|
|
|
70576
71376
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
70577
71377
|
end
|
|
70578
71378
|
|
|
71379
|
+
# @!attribute [rw] ddos_adaptive_protection
|
|
71380
|
+
# @return [::String]
|
|
71381
|
+
# Check the DdosAdaptiveProtection enum for the list of possible values.
|
|
71382
|
+
# @!attribute [rw] ddos_impacted_baseline_threshold
|
|
71383
|
+
# @return [::Float]
|
|
71384
|
+
# DDoS Protection for Network Load Balancers (and VMs with public IPs)
|
|
71385
|
+
# builds DDoS mitigations that minimize collateral damage. It quantifies
|
|
71386
|
+
# this as the fraction of a non-abuse baseline that's inadvertently
|
|
71387
|
+
# blocked.
|
|
71388
|
+
#
|
|
71389
|
+
# Rules whose collateral damage exceeds ddosImpactedBaselineThreshold will
|
|
71390
|
+
# not be deployed. Using a lower value will prioritize keeping collateral
|
|
71391
|
+
# damage low, possibly at the cost of its effectiveness in rate limiting
|
|
71392
|
+
# some or all of the attack. It should typically be unset, so Advanced DDoS
|
|
71393
|
+
# (and Adaptive Protection) uses the best mitigation it can find. Setting
|
|
71394
|
+
# the threshold is advised if there are logs for false positive detections
|
|
71395
|
+
# with high collateral damage, and will cause Advanced DDoS to attempt to
|
|
71396
|
+
# find a less aggressive rule that satisfies the constraint. If a suitable
|
|
71397
|
+
# rule cannot be found, the system falls back to either no mitigation for
|
|
71398
|
+
# smaller attacks or broader network throttles for larger ones.
|
|
70579
71399
|
# @!attribute [rw] ddos_protection
|
|
70580
71400
|
# @return [::String]
|
|
70581
71401
|
# Check the DdosProtection enum for the list of possible values.
|
|
@@ -70584,6 +71404,21 @@ module Google
|
|
|
70584
71404
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
70585
71405
|
|
|
70586
71406
|
|
|
71407
|
+
module DdosAdaptiveProtection
|
|
71408
|
+
# A value indicating that the enum field is not set.
|
|
71409
|
+
UNDEFINED_DDOS_ADAPTIVE_PROTECTION = 0
|
|
71410
|
+
|
|
71411
|
+
DDOS_ADAPTIVE_PROTECTION_UNSPECIFIED = 314_527_935
|
|
71412
|
+
|
|
71413
|
+
DISABLED = 516_696_700
|
|
71414
|
+
|
|
71415
|
+
ENABLED = 182_130_465
|
|
71416
|
+
|
|
71417
|
+
PREVIEW = 399_798_184
|
|
71418
|
+
|
|
71419
|
+
UNSPECIFIED_ADAPTIVE_PROTECTION = 86_330_138
|
|
71420
|
+
end
|
|
71421
|
+
|
|
70587
71422
|
module DdosProtection
|
|
70588
71423
|
# A value indicating that the enum field is not set.
|
|
70589
71424
|
UNDEFINED_DDOS_PROTECTION = 0
|
|
@@ -71583,6 +72418,10 @@ module Google
|
|
|
71583
72418
|
# character must be a lowercase letter, and all following characters must
|
|
71584
72419
|
# be a dash, lowercase letter, or digit, except the last character, which
|
|
71585
72420
|
# cannot be a dash.
|
|
72421
|
+
# @!attribute [rw] nat_ips_per_endpoint
|
|
72422
|
+
# @return [::Integer]
|
|
72423
|
+
# The number of NAT IP addresses to be allocated per connected endpoint.
|
|
72424
|
+
# If not specified, the default value is 1.
|
|
71586
72425
|
# @!attribute [rw] nat_subnets
|
|
71587
72426
|
# @return [::Array<::String>]
|
|
71588
72427
|
# An array of URLs where each entry is the URL of a subnet provided
|
|
@@ -74965,11 +75804,13 @@ module Google
|
|
|
74965
75804
|
# creation/deletion.
|
|
74966
75805
|
# @!attribute [rw] storage_bytes_status
|
|
74967
75806
|
# @return [::String]
|
|
74968
|
-
# Output only. [
|
|
75807
|
+
# Output only. [Deprecated] Instead, check the storageBytes field. After
|
|
75808
|
+
# snapshot creation, the storageBytesStatus field is alwaysUP_TO_DATE.
|
|
75809
|
+
# [Output Only] An indicator whether storageBytes is in a
|
|
74969
75810
|
# stable state or it is being adjusted as a result of shared storage
|
|
74970
|
-
# reallocation. This status can either be
|
|
74971
|
-
# the size of the snapshot
|
|
74972
|
-
#
|
|
75811
|
+
# reallocation. This status can either be unset, meaning the snapshot is
|
|
75812
|
+
# being created, or UP_TO_DATE, meaning the size of the snapshot
|
|
75813
|
+
# is up-to-date.
|
|
74973
75814
|
# Check the StorageBytesStatus enum for the list of possible values.
|
|
74974
75815
|
# @!attribute [rw] storage_locations
|
|
74975
75816
|
# @return [::Array<::String>]
|
|
@@ -75035,11 +75876,13 @@ module Google
|
|
|
75035
75876
|
UPLOADING = 267_603_489
|
|
75036
75877
|
end
|
|
75037
75878
|
|
|
75038
|
-
# Output only. [
|
|
75879
|
+
# Output only. [Deprecated] Instead, check the storageBytes field. After
|
|
75880
|
+
# snapshot creation, the storageBytesStatus field is alwaysUP_TO_DATE.
|
|
75881
|
+
# [Output Only] An indicator whether storageBytes is in a
|
|
75039
75882
|
# stable state or it is being adjusted as a result of shared storage
|
|
75040
|
-
# reallocation. This status can either be
|
|
75041
|
-
# the size of the snapshot
|
|
75042
|
-
#
|
|
75883
|
+
# reallocation. This status can either be unset, meaning the snapshot is
|
|
75884
|
+
# being created, or UP_TO_DATE, meaning the size of the snapshot
|
|
75885
|
+
# is up-to-date.
|
|
75043
75886
|
module StorageBytesStatus
|
|
75044
75887
|
# A value indicating that the enum field is not set.
|
|
75045
75888
|
UNDEFINED_STORAGE_BYTES_STATUS = 0
|
|
@@ -75923,8 +76766,6 @@ module Google
|
|
|
75923
76766
|
|
|
75924
76767
|
# @!attribute [rw] ssl_policy
|
|
75925
76768
|
# @return [::String]
|
|
75926
|
-
# URL of the SSL policy resource. Set this to empty string to clear any
|
|
75927
|
-
# existing SSL policy associated with the target proxy resource.
|
|
75928
76769
|
class SslPolicyReference
|
|
75929
76770
|
include ::Google::Protobuf::MessageExts
|
|
75930
76771
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -76423,6 +77264,10 @@ module Google
|
|
|
76423
77264
|
# @!attribute [rw] instance_group_managers_stop_instances_request_resource
|
|
76424
77265
|
# @return [::Google::Cloud::Compute::V1::InstanceGroupManagersStopInstancesRequest]
|
|
76425
77266
|
# The body resource for this request
|
|
77267
|
+
# @!attribute [rw] no_graceful_shutdown
|
|
77268
|
+
# @return [::Boolean]
|
|
77269
|
+
# When set, graceful shutdown is skipped for instance stopping even if it's
|
|
77270
|
+
# configured for the instances.
|
|
76426
77271
|
# @!attribute [rw] project
|
|
76427
77272
|
# @return [::String]
|
|
76428
77273
|
# Project ID for this request.
|
|
@@ -76454,6 +77299,10 @@ module Google
|
|
|
76454
77299
|
# @!attribute [rw] instance_group_manager
|
|
76455
77300
|
# @return [::String]
|
|
76456
77301
|
# The name of the managed instance group.
|
|
77302
|
+
# @!attribute [rw] no_graceful_shutdown
|
|
77303
|
+
# @return [::Boolean]
|
|
77304
|
+
# When set, graceful shutdown is skipped for instance stopping even if it's
|
|
77305
|
+
# configured for the instances.
|
|
76457
77306
|
# @!attribute [rw] project
|
|
76458
77307
|
# @return [::String]
|
|
76459
77308
|
# Project ID for this request.
|
|
@@ -77637,6 +78486,18 @@ module Google
|
|
|
77637
78486
|
# If `ipCollection` field is specified, but ip_cidr_range is not,
|
|
77638
78487
|
# the range is auto-allocated from the PDP referenced by the `ipCollection`
|
|
77639
78488
|
# field.
|
|
78489
|
+
# @!attribute [rw] ip_collection
|
|
78490
|
+
# @return [::String]
|
|
78491
|
+
# Reference to a Public Delegated Prefix (PDP) for BYOIP.
|
|
78492
|
+
# This field should be specified for configuring BYOGUA internal IPv6
|
|
78493
|
+
# secondary range.
|
|
78494
|
+
# When specified along with the ip_cidr_range, the ip_cidr_range must lie
|
|
78495
|
+
# within the PDP referenced by the `ipCollection` field.
|
|
78496
|
+
# When specified without the ip_cidr_range, the range is auto-allocated
|
|
78497
|
+
# from the PDP referenced by the `ipCollection` field.
|
|
78498
|
+
# @!attribute [rw] ip_version
|
|
78499
|
+
# @return [::String]
|
|
78500
|
+
# Check the IpVersion enum for the list of possible values.
|
|
77640
78501
|
# @!attribute [rw] range_name
|
|
77641
78502
|
# @return [::String]
|
|
77642
78503
|
# The name associated with this subnetwork secondary range, used when adding
|
|
@@ -77649,6 +78510,19 @@ module Google
|
|
|
77649
78510
|
class SubnetworkSecondaryRange
|
|
77650
78511
|
include ::Google::Protobuf::MessageExts
|
|
77651
78512
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
78513
|
+
|
|
78514
|
+
|
|
78515
|
+
module IpVersion
|
|
78516
|
+
# A value indicating that the enum field is not set.
|
|
78517
|
+
UNDEFINED_IP_VERSION = 0
|
|
78518
|
+
|
|
78519
|
+
IPV4 = 2_254_341
|
|
78520
|
+
|
|
78521
|
+
IPV6 = 2_254_343
|
|
78522
|
+
|
|
78523
|
+
# Treated as IPV4 for backward-compatibility.
|
|
78524
|
+
IP_VERSION_UNSPECIFIED = 92_360_440
|
|
78525
|
+
end
|
|
77652
78526
|
end
|
|
77653
78527
|
|
|
77654
78528
|
# The current IP utilization of all subnetwork ranges. Contains the total
|
|
@@ -79380,6 +80254,10 @@ module Google
|
|
|
79380
80254
|
# @!attribute [rw] kind
|
|
79381
80255
|
# @return [::String]
|
|
79382
80256
|
# Output only. [Output Only] Type of the resource. Alwayscompute#targetTcpProxy for target TCP proxies.
|
|
80257
|
+
# @!attribute [rw] load_balancing_scheme
|
|
80258
|
+
# @return [::String]
|
|
80259
|
+
# Specifies the type of load balancing scheme used by this target proxy.
|
|
80260
|
+
# Check the LoadBalancingScheme enum for the list of possible values.
|
|
79383
80261
|
# @!attribute [rw] name
|
|
79384
80262
|
# @return [::String]
|
|
79385
80263
|
# Name of the resource. Provided by the client when the resource is created.
|
|
@@ -79422,6 +80300,20 @@ module Google
|
|
|
79422
80300
|
include ::Google::Protobuf::MessageExts
|
|
79423
80301
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
79424
80302
|
|
|
80303
|
+
# Specifies the type of load balancing scheme used by this target proxy.
|
|
80304
|
+
module LoadBalancingScheme
|
|
80305
|
+
# A value indicating that the enum field is not set.
|
|
80306
|
+
UNDEFINED_LOAD_BALANCING_SCHEME = 0
|
|
80307
|
+
|
|
80308
|
+
EXTERNAL = 35_607_499
|
|
80309
|
+
|
|
80310
|
+
EXTERNAL_MANAGED = 512_006_923
|
|
80311
|
+
|
|
80312
|
+
INTERNAL_MANAGED = 37_350_397
|
|
80313
|
+
|
|
80314
|
+
LOAD_BALANCING_SCHEME_UNSPECIFIED = 526_507_452
|
|
80315
|
+
end
|
|
80316
|
+
|
|
79425
80317
|
# Specifies the type of proxy header to append before sending data to the
|
|
79426
80318
|
# backend, either NONE or PROXY_V1. The default
|
|
79427
80319
|
# is NONE.
|
|
@@ -80741,6 +81633,19 @@ module Google
|
|
|
80741
81633
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
80742
81634
|
end
|
|
80743
81635
|
|
|
81636
|
+
# Represents a time zone from the
|
|
81637
|
+
# [IANA Time Zone Database](https://www.iana.org/time-zones).
|
|
81638
|
+
# @!attribute [rw] id
|
|
81639
|
+
# @return [::String]
|
|
81640
|
+
# IANA Time Zone Database time zone. For example "America/New_York".
|
|
81641
|
+
# @!attribute [rw] version
|
|
81642
|
+
# @return [::String]
|
|
81643
|
+
# Optional. IANA Time Zone Database version number. For example "2019a".
|
|
81644
|
+
class TimeZone
|
|
81645
|
+
include ::Google::Protobuf::MessageExts
|
|
81646
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
81647
|
+
end
|
|
81648
|
+
|
|
80744
81649
|
# @!attribute [rw] high
|
|
80745
81650
|
# @return [::Integer]
|
|
80746
81651
|
# @!attribute [rw] low
|
|
@@ -81448,6 +82353,39 @@ module Google
|
|
|
81448
82353
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
81449
82354
|
end
|
|
81450
82355
|
|
|
82356
|
+
# A request message for Routers.UpdateNamedSet. See the method description for details.
|
|
82357
|
+
# @!attribute [rw] named_set_resource
|
|
82358
|
+
# @return [::Google::Cloud::Compute::V1::NamedSet]
|
|
82359
|
+
# The body resource for this request
|
|
82360
|
+
# @!attribute [rw] project
|
|
82361
|
+
# @return [::String]
|
|
82362
|
+
# Project ID for this request.
|
|
82363
|
+
# @!attribute [rw] region
|
|
82364
|
+
# @return [::String]
|
|
82365
|
+
# Name of the region for this request.
|
|
82366
|
+
# @!attribute [rw] request_id
|
|
82367
|
+
# @return [::String]
|
|
82368
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
|
82369
|
+
# that if you must retry your request, the server will know to ignore the
|
|
82370
|
+
# request if it has already been completed.
|
|
82371
|
+
#
|
|
82372
|
+
# For example, consider a situation where you make an initial request and
|
|
82373
|
+
# the request times out. If you make the request again with the same
|
|
82374
|
+
# request ID, the server can check if original operation with the same
|
|
82375
|
+
# request ID was received, and if so, will ignore the second request. This
|
|
82376
|
+
# prevents clients from accidentally creating duplicate commitments.
|
|
82377
|
+
#
|
|
82378
|
+
# The request ID must be
|
|
82379
|
+
# a valid UUID with the exception that zero UUID is not supported
|
|
82380
|
+
# (00000000-0000-0000-0000-000000000000).
|
|
82381
|
+
# @!attribute [rw] router
|
|
82382
|
+
# @return [::String]
|
|
82383
|
+
# Name of the Router resource where Named Set is defined.
|
|
82384
|
+
class UpdateNamedSetRouterRequest
|
|
82385
|
+
include ::Google::Protobuf::MessageExts
|
|
82386
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
82387
|
+
end
|
|
82388
|
+
|
|
81451
82389
|
# A request message for Instances.UpdateNetworkInterface. See the method description for details.
|
|
81452
82390
|
# @!attribute [rw] instance
|
|
81453
82391
|
# @return [::String]
|
|
@@ -84731,6 +85669,8 @@ module Google
|
|
|
84731
85669
|
# @!attribute [rw] region
|
|
84732
85670
|
# @return [::String]
|
|
84733
85671
|
# [Output Only] Full URL reference to the region which hosts the zone.
|
|
85672
|
+
# @!attribute [rw] resource_status
|
|
85673
|
+
# @return [::Google::Cloud::Compute::V1::ZoneResourceStatus]
|
|
84734
85674
|
# @!attribute [rw] self_link
|
|
84735
85675
|
# @return [::String]
|
|
84736
85676
|
# [Output Only] Server-defined URL for the resource.
|
|
@@ -84784,6 +85724,14 @@ module Google
|
|
|
84784
85724
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
84785
85725
|
end
|
|
84786
85726
|
|
|
85727
|
+
# @!attribute [rw] upcoming_maintenances
|
|
85728
|
+
# @return [::Array<::Google::Cloud::Compute::V1::PeriodicPartialMaintenanceSchedule>]
|
|
85729
|
+
# Output only. [Output Only] The upcoming maintenance schedule.
|
|
85730
|
+
class ZoneResourceStatus
|
|
85731
|
+
include ::Google::Protobuf::MessageExts
|
|
85732
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
85733
|
+
end
|
|
85734
|
+
|
|
84787
85735
|
# @!attribute [rw] label_fingerprint
|
|
84788
85736
|
# @return [::String]
|
|
84789
85737
|
# The fingerprint of the previous set of labels for this resource,
|