google-apis-compute_beta 0.121.0 → 0.122.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f10e921239556aef463195b7c9b1353300fa97d27a0d30351317177bedf729a
|
4
|
+
data.tar.gz: abf6270549ebfe0afe6419112b86d430effa880a57a20c7978738e0b556de03a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1cc99e54a46eed925108a33f7fbdfecd3dfe2a29394bb118de243cf8eb9085b97576723d0773fb0eeb2ac05650637af58be93802c20e360df434e332a87eb3a
|
7
|
+
data.tar.gz: c58c18eb145afe8fc0bf1a40ac69e03159382353eef4ee94864483440234e21144531a781260c312493d1132812326dd7977b5351188d28878011cf248369081
|
data/CHANGELOG.md
CHANGED
@@ -1222,6 +1222,23 @@ module Google
|
|
1222
1222
|
class AllocationAggregateReservation
|
1223
1223
|
include Google::Apis::Core::Hashable
|
1224
1224
|
|
1225
|
+
# Count of reserved hosts of specified VM family. The host has fixed number of
|
1226
|
+
# accelerators based on the accelerator/vm-family selected.
|
1227
|
+
# Corresponds to the JSON property `hostCount`
|
1228
|
+
# @return [Fixnum]
|
1229
|
+
attr_accessor :host_count
|
1230
|
+
|
1231
|
+
# Number of hosts currently in use. If there is one or more Instances running on
|
1232
|
+
# the host, it is considered in use.
|
1233
|
+
# Corresponds to the JSON property `inUseHostCount`
|
1234
|
+
# @return [Fixnum]
|
1235
|
+
attr_accessor :in_use_host_count
|
1236
|
+
|
1237
|
+
# Number of instances currently in use in this reservation.
|
1238
|
+
# Corresponds to the JSON property `inUseInstanceCount`
|
1239
|
+
# @return [Fixnum]
|
1240
|
+
attr_accessor :in_use_instance_count
|
1241
|
+
|
1225
1242
|
# [Output only] List of resources currently in use.
|
1226
1243
|
# Corresponds to the JSON property `inUseResources`
|
1227
1244
|
# @return [Array<Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo>]
|
@@ -1249,6 +1266,9 @@ module Google
|
|
1249
1266
|
|
1250
1267
|
# Update properties of this object
|
1251
1268
|
def update!(**args)
|
1269
|
+
@host_count = args[:host_count] if args.key?(:host_count)
|
1270
|
+
@in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
|
1271
|
+
@in_use_instance_count = args[:in_use_instance_count] if args.key?(:in_use_instance_count)
|
1252
1272
|
@in_use_resources = args[:in_use_resources] if args.key?(:in_use_resources)
|
1253
1273
|
@reserved_resources = args[:reserved_resources] if args.key?(:reserved_resources)
|
1254
1274
|
@vm_family = args[:vm_family] if args.key?(:vm_family)
|
@@ -3268,8 +3288,8 @@ module Google
|
|
3268
3288
|
# CDN will apply the following default TTLs to these status codes: HTTP 300 (
|
3269
3289
|
# Multiple Choice), 301, 308 (Permanent Redirects): 10m HTTP 404 (Not Found),
|
3270
3290
|
# 410 (Gone), 451 (Unavailable For Legal Reasons): 120s HTTP 405 (Method Not
|
3271
|
-
# Found),
|
3272
|
-
#
|
3291
|
+
# Found), 501 (Not Implemented): 60s. These defaults can be overridden in
|
3292
|
+
# negative_caching_policy.
|
3273
3293
|
# Corresponds to the JSON property `negativeCaching`
|
3274
3294
|
# @return [Boolean]
|
3275
3295
|
attr_accessor :negative_caching
|
@@ -4461,8 +4481,8 @@ module Google
|
|
4461
4481
|
# CDN will apply the following default TTLs to these status codes: HTTP 300 (
|
4462
4482
|
# Multiple Choice), 301, 308 (Permanent Redirects): 10m HTTP 404 (Not Found),
|
4463
4483
|
# 410 (Gone), 451 (Unavailable For Legal Reasons): 120s HTTP 405 (Method Not
|
4464
|
-
# Found),
|
4465
|
-
#
|
4484
|
+
# Found), 501 (Not Implemented): 60s. These defaults can be overridden in
|
4485
|
+
# negative_caching_policy.
|
4466
4486
|
# Corresponds to the JSON property `negativeCaching`
|
4467
4487
|
# @return [Boolean]
|
4468
4488
|
attr_accessor :negative_caching
|
@@ -6006,6 +6026,13 @@ module Google
|
|
6006
6026
|
# @return [Array<Fixnum>]
|
6007
6027
|
attr_accessor :asns
|
6008
6028
|
|
6029
|
+
# [Output only] ASNs in the path segment. This field is for better support of 32
|
6030
|
+
# bit ASNs as the other asns field suffers from overflow when the ASN is larger.
|
6031
|
+
# When type is SEQUENCE, these are ordered.
|
6032
|
+
# Corresponds to the JSON property `asns32`
|
6033
|
+
# @return [Array<Fixnum>]
|
6034
|
+
attr_accessor :asns32
|
6035
|
+
|
6009
6036
|
# [Output only] Type of AS-PATH segment (SEQUENCE or SET)
|
6010
6037
|
# Corresponds to the JSON property `type`
|
6011
6038
|
# @return [String]
|
@@ -6018,6 +6045,7 @@ module Google
|
|
6018
6045
|
# Update properties of this object
|
6019
6046
|
def update!(**args)
|
6020
6047
|
@asns = args[:asns] if args.key?(:asns)
|
6048
|
+
@asns32 = args[:asns32] if args.key?(:asns32)
|
6021
6049
|
@type = args[:type] if args.key?(:type)
|
6022
6050
|
end
|
6023
6051
|
end
|
@@ -10785,6 +10813,12 @@ module Google
|
|
10785
10813
|
# @return [String]
|
10786
10814
|
attr_accessor :parent
|
10787
10815
|
|
10816
|
+
# [Output Only] Source of this Firewall Policy. USER_DEFINED if created by a
|
10817
|
+
# Cloud user, or SYSTEM if created by managed services like GKE.
|
10818
|
+
# Corresponds to the JSON property `policySource`
|
10819
|
+
# @return [String]
|
10820
|
+
attr_accessor :policy_source
|
10821
|
+
|
10788
10822
|
# The type of the firewall policy. This field can be either VPC_POLICY or
|
10789
10823
|
# RDMA_ROCE_POLICY. Note: if not specified then VPC_POLICY will be used.
|
10790
10824
|
# Corresponds to the JSON property `policyType`
|
@@ -10852,6 +10886,7 @@ module Google
|
|
10852
10886
|
@name = args[:name] if args.key?(:name)
|
10853
10887
|
@packet_mirroring_rules = args[:packet_mirroring_rules] if args.key?(:packet_mirroring_rules)
|
10854
10888
|
@parent = args[:parent] if args.key?(:parent)
|
10889
|
+
@policy_source = args[:policy_source] if args.key?(:policy_source)
|
10855
10890
|
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
10856
10891
|
@region = args[:region] if args.key?(:region)
|
10857
10892
|
@rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
|
@@ -11108,6 +11143,17 @@ module Google
|
|
11108
11143
|
# @return [String]
|
11109
11144
|
attr_accessor :security_profile_group
|
11110
11145
|
|
11146
|
+
# A list of forwarding rules to which this rule applies. This field allows you
|
11147
|
+
# to control which load balancers get this rule. For example, the following are
|
11148
|
+
# valid values: - https://www.googleapis.com/compute/v1/projects/project /global/
|
11149
|
+
# forwardingRules/forwardingRule - https://www.googleapis.com/compute/v1/
|
11150
|
+
# projects/project/regions/region /forwardingRules/forwardingRule - projects/
|
11151
|
+
# project/global/ forwardingRules/forwardingRule - projects/project/regions/
|
11152
|
+
# region/forwardingRules/ forwardingRule
|
11153
|
+
# Corresponds to the JSON property `targetForwardingRules`
|
11154
|
+
# @return [Array<String>]
|
11155
|
+
attr_accessor :target_forwarding_rules
|
11156
|
+
|
11111
11157
|
# A list of network resource URLs to which this rule applies. This field allows
|
11112
11158
|
# you to control which network's VMs get this rule. If this field is left blank,
|
11113
11159
|
# all VMs within the organization will receive the rule.
|
@@ -11133,6 +11179,11 @@ module Google
|
|
11133
11179
|
# @return [Array<String>]
|
11134
11180
|
attr_accessor :target_service_accounts
|
11135
11181
|
|
11182
|
+
# Target types of the firewall policy rule. Default value is INSTANCES.
|
11183
|
+
# Corresponds to the JSON property `targetType`
|
11184
|
+
# @return [String]
|
11185
|
+
attr_accessor :target_type
|
11186
|
+
|
11136
11187
|
# Boolean flag indicating if the traffic should be TLS decrypted. Can be set
|
11137
11188
|
# only if action = 'apply_security_profile_group' and cannot be set for other
|
11138
11189
|
# actions.
|
@@ -11158,9 +11209,11 @@ module Google
|
|
11158
11209
|
@rule_name = args[:rule_name] if args.key?(:rule_name)
|
11159
11210
|
@rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
|
11160
11211
|
@security_profile_group = args[:security_profile_group] if args.key?(:security_profile_group)
|
11212
|
+
@target_forwarding_rules = args[:target_forwarding_rules] if args.key?(:target_forwarding_rules)
|
11161
11213
|
@target_resources = args[:target_resources] if args.key?(:target_resources)
|
11162
11214
|
@target_secure_tags = args[:target_secure_tags] if args.key?(:target_secure_tags)
|
11163
11215
|
@target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
|
11216
|
+
@target_type = args[:target_type] if args.key?(:target_type)
|
11164
11217
|
@tls_inspect = args[:tls_inspect] if args.key?(:tls_inspect)
|
11165
11218
|
end
|
11166
11219
|
end
|
@@ -12385,6 +12438,11 @@ module Google
|
|
12385
12438
|
# @return [String]
|
12386
12439
|
attr_accessor :planning_status
|
12387
12440
|
|
12441
|
+
# Protection tier for the workload.
|
12442
|
+
# Corresponds to the JSON property `protectionTier`
|
12443
|
+
# @return [String]
|
12444
|
+
attr_accessor :protection_tier
|
12445
|
+
|
12388
12446
|
# The reservation mode which determines reservation-termination behavior and
|
12389
12447
|
# expected pricing.
|
12390
12448
|
# Corresponds to the JSON property `reservationMode`
|
@@ -12469,6 +12527,7 @@ module Google
|
|
12469
12527
|
@name = args[:name] if args.key?(:name)
|
12470
12528
|
@name_prefix = args[:name_prefix] if args.key?(:name_prefix)
|
12471
12529
|
@planning_status = args[:planning_status] if args.key?(:planning_status)
|
12530
|
+
@protection_tier = args[:protection_tier] if args.key?(:protection_tier)
|
12472
12531
|
@reservation_mode = args[:reservation_mode] if args.key?(:reservation_mode)
|
12473
12532
|
@reservation_name = args[:reservation_name] if args.key?(:reservation_name)
|
12474
12533
|
@scheduling_type = args[:scheduling_type] if args.key?(:scheduling_type)
|
@@ -21194,6 +21253,14 @@ module Google
|
|
21194
21253
|
class InstanceParams
|
21195
21254
|
include Google::Apis::Core::Hashable
|
21196
21255
|
|
21256
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
21257
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
21258
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
21259
|
+
# 000 years.
|
21260
|
+
# Corresponds to the JSON property `requestValidForDuration`
|
21261
|
+
# @return [Google::Apis::ComputeBeta::Duration]
|
21262
|
+
attr_accessor :request_valid_for_duration
|
21263
|
+
|
21197
21264
|
# Resource manager tags to be bound to the instance. Tag keys and values have
|
21198
21265
|
# the same definition as resource manager tags. Keys must be in the format `
|
21199
21266
|
# tagKeys/`tag_key_id``, and values are in the format `tagValues/456`. The field
|
@@ -21208,6 +21275,7 @@ module Google
|
|
21208
21275
|
|
21209
21276
|
# Update properties of this object
|
21210
21277
|
def update!(**args)
|
21278
|
+
@request_valid_for_duration = args[:request_valid_for_duration] if args.key?(:request_valid_for_duration)
|
21211
21279
|
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
21212
21280
|
end
|
21213
21281
|
end
|
@@ -24658,9 +24726,7 @@ module Google
|
|
24658
24726
|
# @return [String]
|
24659
24727
|
attr_accessor :is_active
|
24660
24728
|
|
24661
|
-
# Whether this Attachment is active, and if so, whether BGP is up.
|
24662
|
-
# on the statuses available in the Pantheon UI here: http://google3/java/com/
|
24663
|
-
# google/cloud/boq/clientapi/gce/hybrid/api/interconnect_models.proto
|
24729
|
+
# Whether this Attachment is active, and if so, whether BGP is up.
|
24664
24730
|
# Corresponds to the JSON property `status`
|
24665
24731
|
# @return [String]
|
24666
24732
|
attr_accessor :status
|
@@ -26705,6 +26771,13 @@ module Google
|
|
26705
26771
|
# @return [Fixnum]
|
26706
26772
|
attr_accessor :max_lag_size10_gbps
|
26707
26773
|
|
26774
|
+
# [Output Only] The maximum number of 400 Gbps ports supported in a link
|
26775
|
+
# aggregation group (LAG). When linkType is 400 Gbps, requestedLinkCount cannot
|
26776
|
+
# exceed max_lag_size_400_gbps.
|
26777
|
+
# Corresponds to the JSON property `maxLagSize400Gbps`
|
26778
|
+
# @return [Fixnum]
|
26779
|
+
attr_accessor :max_lag_size400_gbps
|
26780
|
+
|
26708
26781
|
# [Output Only] Name of the resource.
|
26709
26782
|
# Corresponds to the JSON property `name`
|
26710
26783
|
# @return [String]
|
@@ -26761,6 +26834,7 @@ module Google
|
|
26761
26834
|
@lacp = args[:lacp] if args.key?(:lacp)
|
26762
26835
|
@max_lag_size100_gbps = args[:max_lag_size100_gbps] if args.key?(:max_lag_size100_gbps)
|
26763
26836
|
@max_lag_size10_gbps = args[:max_lag_size10_gbps] if args.key?(:max_lag_size10_gbps)
|
26837
|
+
@max_lag_size400_gbps = args[:max_lag_size400_gbps] if args.key?(:max_lag_size400_gbps)
|
26764
26838
|
@name = args[:name] if args.key?(:name)
|
26765
26839
|
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
|
26766
26840
|
@permitted_connections = args[:permitted_connections] if args.key?(:permitted_connections)
|
@@ -32175,6 +32249,11 @@ module Google
|
|
32175
32249
|
# @return [String]
|
32176
32250
|
attr_accessor :name
|
32177
32251
|
|
32252
|
+
# [Output Only] Type of the network profile.
|
32253
|
+
# Corresponds to the JSON property `profileType`
|
32254
|
+
# @return [Google::Apis::ComputeBeta::NetworkProfileProfileType]
|
32255
|
+
attr_accessor :profile_type
|
32256
|
+
|
32178
32257
|
# [Output Only] Server-defined URL for the resource.
|
32179
32258
|
# Corresponds to the JSON property `selfLink`
|
32180
32259
|
# @return [String]
|
@@ -32198,6 +32277,7 @@ module Google
|
|
32198
32277
|
@kind = args[:kind] if args.key?(:kind)
|
32199
32278
|
@location = args[:location] if args.key?(:location)
|
32200
32279
|
@name = args[:name] if args.key?(:name)
|
32280
|
+
@profile_type = args[:profile_type] if args.key?(:profile_type)
|
32201
32281
|
@self_link = args[:self_link] if args.key?(:self_link)
|
32202
32282
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
32203
32283
|
end
|
@@ -32412,6 +32492,43 @@ module Google
|
|
32412
32492
|
end
|
32413
32493
|
end
|
32414
32494
|
|
32495
|
+
#
|
32496
|
+
class NetworkProfileProfileType
|
32497
|
+
include Google::Apis::Core::Hashable
|
32498
|
+
|
32499
|
+
#
|
32500
|
+
# Corresponds to the JSON property `networkType`
|
32501
|
+
# @return [String]
|
32502
|
+
attr_accessor :network_type
|
32503
|
+
|
32504
|
+
#
|
32505
|
+
# Corresponds to the JSON property `rdmaSubtype`
|
32506
|
+
# @return [String]
|
32507
|
+
attr_accessor :rdma_subtype
|
32508
|
+
|
32509
|
+
#
|
32510
|
+
# Corresponds to the JSON property `ullSubtype`
|
32511
|
+
# @return [String]
|
32512
|
+
attr_accessor :ull_subtype
|
32513
|
+
|
32514
|
+
#
|
32515
|
+
# Corresponds to the JSON property `vpcSubtype`
|
32516
|
+
# @return [String]
|
32517
|
+
attr_accessor :vpc_subtype
|
32518
|
+
|
32519
|
+
def initialize(**args)
|
32520
|
+
update!(**args)
|
32521
|
+
end
|
32522
|
+
|
32523
|
+
# Update properties of this object
|
32524
|
+
def update!(**args)
|
32525
|
+
@network_type = args[:network_type] if args.key?(:network_type)
|
32526
|
+
@rdma_subtype = args[:rdma_subtype] if args.key?(:rdma_subtype)
|
32527
|
+
@ull_subtype = args[:ull_subtype] if args.key?(:ull_subtype)
|
32528
|
+
@vpc_subtype = args[:vpc_subtype] if args.key?(:vpc_subtype)
|
32529
|
+
end
|
32530
|
+
end
|
32531
|
+
|
32415
32532
|
# Contains a list of network profiles.
|
32416
32533
|
class NetworkProfilesListResponse
|
32417
32534
|
include Google::Apis::Core::Hashable
|
@@ -40854,6 +40971,12 @@ module Google
|
|
40854
40971
|
# @return [Fixnum]
|
40855
40972
|
attr_accessor :in_use_count
|
40856
40973
|
|
40974
|
+
# Number of hosts currently in use. If there is one or more Instances running on
|
40975
|
+
# the host, it is considered in use.
|
40976
|
+
# Corresponds to the JSON property `inUseHostCount`
|
40977
|
+
# @return [Fixnum]
|
40978
|
+
attr_accessor :in_use_host_count
|
40979
|
+
|
40857
40980
|
# [Output Only] Type of the resource. Always compute#reservationBlock for
|
40858
40981
|
# reservation blocks.
|
40859
40982
|
# Corresponds to the JSON property `kind`
|
@@ -40921,6 +41044,7 @@ module Google
|
|
40921
41044
|
@health_info = args[:health_info] if args.key?(:health_info)
|
40922
41045
|
@id = args[:id] if args.key?(:id)
|
40923
41046
|
@in_use_count = args[:in_use_count] if args.key?(:in_use_count)
|
41047
|
+
@in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
|
40924
41048
|
@kind = args[:kind] if args.key?(:kind)
|
40925
41049
|
@name = args[:name] if args.key?(:name)
|
40926
41050
|
@physical_topology = args[:physical_topology] if args.key?(:physical_topology)
|
@@ -41340,6 +41464,12 @@ module Google
|
|
41340
41464
|
# @return [Fixnum]
|
41341
41465
|
attr_accessor :in_use_count
|
41342
41466
|
|
41467
|
+
# Number of hosts currently in use. If there is one or more Instances running on
|
41468
|
+
# the host, it is considered in use.
|
41469
|
+
# Corresponds to the JSON property `inUseHostCount`
|
41470
|
+
# @return [Fixnum]
|
41471
|
+
attr_accessor :in_use_host_count
|
41472
|
+
|
41343
41473
|
# [Output Only] Type of the resource. Always compute#reservationSubBlock for
|
41344
41474
|
# reservation subBlocks.
|
41345
41475
|
# Corresponds to the JSON property `kind`
|
@@ -41394,6 +41524,7 @@ module Google
|
|
41394
41524
|
@health_info = args[:health_info] if args.key?(:health_info)
|
41395
41525
|
@id = args[:id] if args.key?(:id)
|
41396
41526
|
@in_use_count = args[:in_use_count] if args.key?(:in_use_count)
|
41527
|
+
@in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
|
41397
41528
|
@kind = args[:kind] if args.key?(:kind)
|
41398
41529
|
@name = args[:name] if args.key?(:name)
|
41399
41530
|
@physical_topology = args[:physical_topology] if args.key?(:physical_topology)
|
@@ -44824,15 +44955,15 @@ module Google
|
|
44824
44955
|
class RouterParams
|
44825
44956
|
include Google::Apis::Core::Hashable
|
44826
44957
|
|
44827
|
-
# Tag keys/values directly bound to this resource.
|
44828
|
-
#
|
44829
|
-
#
|
44830
|
-
#
|
44831
|
-
#
|
44832
|
-
#
|
44833
|
-
#
|
44834
|
-
# "tagValues/444"
|
44835
|
-
#
|
44958
|
+
# Tag keys/values directly bound to this resource. The field is allowed for
|
44959
|
+
# INSERT only. The keys/values to set on the resource should be specified in
|
44960
|
+
# either ID ` : ` or Namespaced format ` : `. For example the following are
|
44961
|
+
# valid inputs: * `"tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/
|
44962
|
+
# 456"` * `"123/environment" : "production", "345/abc" : "xyz"` Note: * Invalid
|
44963
|
+
# combinations of ID & namespaced format is not supported. For instance: `"123/
|
44964
|
+
# environment" : "tagValues/444"` is invalid. * Inconsistent format is not
|
44965
|
+
# supported. For instance: `"tagKeys/333" : "tagValues/444", "123/env" : "prod"`
|
44966
|
+
# is invalid.
|
44836
44967
|
# Corresponds to the JSON property `resourceManagerTags`
|
44837
44968
|
# @return [Hash<String,String>]
|
44838
44969
|
attr_accessor :resource_manager_tags
|
@@ -48433,6 +48564,12 @@ module Google
|
|
48433
48564
|
# @return [String]
|
48434
48565
|
attr_accessor :endpoint
|
48435
48566
|
|
48567
|
+
# NAT IPs of the connected PSC endpoint and those of other endpoints propagated
|
48568
|
+
# from it.
|
48569
|
+
# Corresponds to the JSON property `natIps`
|
48570
|
+
# @return [Array<String>]
|
48571
|
+
attr_accessor :nat_ips
|
48572
|
+
|
48436
48573
|
# The number of consumer Network Connectivity Center spokes that the connected
|
48437
48574
|
# Private Service Connect endpoint has propagated to.
|
48438
48575
|
# Corresponds to the JSON property `propagatedConnectionCount`
|
@@ -48457,6 +48594,7 @@ module Google
|
|
48457
48594
|
def update!(**args)
|
48458
48595
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
48459
48596
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
48597
|
+
@nat_ips = args[:nat_ips] if args.key?(:nat_ips)
|
48460
48598
|
@propagated_connection_count = args[:propagated_connection_count] if args.key?(:propagated_connection_count)
|
48461
48599
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
48462
48600
|
@status = args[:status] if args.key?(:status)
|
@@ -60557,6 +60695,17 @@ module Google
|
|
60557
60695
|
class WireProperties
|
60558
60696
|
include Google::Apis::Core::Hashable
|
60559
60697
|
|
60698
|
+
# The configuration of the bandwidth allocation, one of the following: -
|
60699
|
+
# ALLOCATE_PER_WIRE: configures a separate unmetered bandwidth allocation (and
|
60700
|
+
# associated charges) for each wire in the group. - SHARED_WITH_WIRE_GROUP: this
|
60701
|
+
# is the default behavior, which configures one unmetered bandwidth allocation
|
60702
|
+
# for the wire group. The unmetered bandwidth is divided equally across each
|
60703
|
+
# wire in the group, but dynamic throttling reallocates unused unmetered
|
60704
|
+
# bandwidth from unused or underused wires to other wires in the group.
|
60705
|
+
# Corresponds to the JSON property `bandwidthAllocation`
|
60706
|
+
# @return [String]
|
60707
|
+
attr_accessor :bandwidth_allocation
|
60708
|
+
|
60560
60709
|
# The unmetered bandwidth in Gigabits per second, using decimal units. `10` is
|
60561
60710
|
# 10 Gbps, `100` is 100 Gbps.
|
60562
60711
|
# Corresponds to the JSON property `bandwidthUnmetered`
|
@@ -60576,6 +60725,7 @@ module Google
|
|
60576
60725
|
|
60577
60726
|
# Update properties of this object
|
60578
60727
|
def update!(**args)
|
60728
|
+
@bandwidth_allocation = args[:bandwidth_allocation] if args.key?(:bandwidth_allocation)
|
60579
60729
|
@bandwidth_unmetered = args[:bandwidth_unmetered] if args.key?(:bandwidth_unmetered)
|
60580
60730
|
@fault_response = args[:fault_response] if args.key?(:fault_response)
|
60581
60731
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeBeta
|
18
18
|
# Version of the google-apis-compute_beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.122.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250902"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4144,6 +4144,12 @@ module Google
|
|
4144
4144
|
include Google::Apis::Core::JsonObjectSupport
|
4145
4145
|
end
|
4146
4146
|
|
4147
|
+
class NetworkProfileProfileType
|
4148
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4149
|
+
|
4150
|
+
include Google::Apis::Core::JsonObjectSupport
|
4151
|
+
end
|
4152
|
+
|
4147
4153
|
class NetworkProfilesListResponse
|
4148
4154
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4149
4155
|
|
@@ -8389,6 +8395,9 @@ module Google
|
|
8389
8395
|
class AllocationAggregateReservation
|
8390
8396
|
# @private
|
8391
8397
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8398
|
+
property :host_count, as: 'hostCount'
|
8399
|
+
property :in_use_host_count, as: 'inUseHostCount'
|
8400
|
+
property :in_use_instance_count, as: 'inUseInstanceCount'
|
8392
8401
|
collection :in_use_resources, as: 'inUseResources', class: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo::Representation
|
8393
8402
|
|
8394
8403
|
collection :reserved_resources, as: 'reservedResources', class: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo::Representation
|
@@ -9451,6 +9460,7 @@ module Google
|
|
9451
9460
|
# @private
|
9452
9461
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9453
9462
|
collection :asns, as: 'asns'
|
9463
|
+
collection :asns32, as: 'asns32'
|
9454
9464
|
property :type, as: 'type'
|
9455
9465
|
end
|
9456
9466
|
end
|
@@ -10585,6 +10595,7 @@ module Google
|
|
10585
10595
|
collection :packet_mirroring_rules, as: 'packetMirroringRules', class: Google::Apis::ComputeBeta::FirewallPolicyRule, decorator: Google::Apis::ComputeBeta::FirewallPolicyRule::Representation
|
10586
10596
|
|
10587
10597
|
property :parent, as: 'parent'
|
10598
|
+
property :policy_source, as: 'policySource'
|
10588
10599
|
property :policy_type, as: 'policyType'
|
10589
10600
|
property :region, as: 'region'
|
10590
10601
|
property :rule_tuple_count, as: 'ruleTupleCount'
|
@@ -10654,10 +10665,12 @@ module Google
|
|
10654
10665
|
property :rule_name, as: 'ruleName'
|
10655
10666
|
property :rule_tuple_count, as: 'ruleTupleCount'
|
10656
10667
|
property :security_profile_group, as: 'securityProfileGroup'
|
10668
|
+
collection :target_forwarding_rules, as: 'targetForwardingRules'
|
10657
10669
|
collection :target_resources, as: 'targetResources'
|
10658
10670
|
collection :target_secure_tags, as: 'targetSecureTags', class: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag::Representation
|
10659
10671
|
|
10660
10672
|
collection :target_service_accounts, as: 'targetServiceAccounts'
|
10673
|
+
property :target_type, as: 'targetType'
|
10661
10674
|
property :tls_inspect, as: 'tlsInspect'
|
10662
10675
|
end
|
10663
10676
|
end
|
@@ -10900,6 +10913,7 @@ module Google
|
|
10900
10913
|
property :name, as: 'name'
|
10901
10914
|
property :name_prefix, as: 'namePrefix'
|
10902
10915
|
property :planning_status, as: 'planningStatus'
|
10916
|
+
property :protection_tier, as: 'protectionTier'
|
10903
10917
|
property :reservation_mode, as: 'reservationMode'
|
10904
10918
|
property :reservation_name, as: 'reservationName'
|
10905
10919
|
property :scheduling_type, as: 'schedulingType'
|
@@ -13098,6 +13112,8 @@ module Google
|
|
13098
13112
|
class InstanceParams
|
13099
13113
|
# @private
|
13100
13114
|
class Representation < Google::Apis::Core::JsonRepresentation
|
13115
|
+
property :request_valid_for_duration, as: 'requestValidForDuration', class: Google::Apis::ComputeBeta::Duration, decorator: Google::Apis::ComputeBeta::Duration::Representation
|
13116
|
+
|
13101
13117
|
hash :resource_manager_tags, as: 'resourceManagerTags'
|
13102
13118
|
end
|
13103
13119
|
end
|
@@ -14500,6 +14516,7 @@ module Google
|
|
14500
14516
|
property :lacp, as: 'lacp'
|
14501
14517
|
property :max_lag_size100_gbps, as: 'maxLagSize100Gbps'
|
14502
14518
|
property :max_lag_size10_gbps, as: 'maxLagSize10Gbps'
|
14519
|
+
property :max_lag_size400_gbps, as: 'maxLagSize400Gbps'
|
14503
14520
|
property :name, as: 'name'
|
14504
14521
|
property :peeringdb_facility_id, as: 'peeringdbFacilityId'
|
14505
14522
|
collection :permitted_connections, as: 'permittedConnections', class: Google::Apis::ComputeBeta::InterconnectRemoteLocationPermittedConnections, decorator: Google::Apis::ComputeBeta::InterconnectRemoteLocationPermittedConnections::Representation
|
@@ -15881,6 +15898,8 @@ module Google
|
|
15881
15898
|
property :location, as: 'location', class: Google::Apis::ComputeBeta::NetworkProfileLocation, decorator: Google::Apis::ComputeBeta::NetworkProfileLocation::Representation
|
15882
15899
|
|
15883
15900
|
property :name, as: 'name'
|
15901
|
+
property :profile_type, as: 'profileType', class: Google::Apis::ComputeBeta::NetworkProfileProfileType, decorator: Google::Apis::ComputeBeta::NetworkProfileProfileType::Representation
|
15902
|
+
|
15884
15903
|
property :self_link, as: 'selfLink'
|
15885
15904
|
property :self_link_with_id, as: 'selfLinkWithId'
|
15886
15905
|
end
|
@@ -15928,6 +15947,16 @@ module Google
|
|
15928
15947
|
end
|
15929
15948
|
end
|
15930
15949
|
|
15950
|
+
class NetworkProfileProfileType
|
15951
|
+
# @private
|
15952
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15953
|
+
property :network_type, as: 'networkType'
|
15954
|
+
property :rdma_subtype, as: 'rdmaSubtype'
|
15955
|
+
property :ull_subtype, as: 'ullSubtype'
|
15956
|
+
property :vpc_subtype, as: 'vpcSubtype'
|
15957
|
+
end
|
15958
|
+
end
|
15959
|
+
|
15931
15960
|
class NetworkProfilesListResponse
|
15932
15961
|
# @private
|
15933
15962
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -18144,6 +18173,7 @@ module Google
|
|
18144
18173
|
|
18145
18174
|
property :id, :numeric_string => true, as: 'id'
|
18146
18175
|
property :in_use_count, as: 'inUseCount'
|
18176
|
+
property :in_use_host_count, as: 'inUseHostCount'
|
18147
18177
|
property :kind, as: 'kind'
|
18148
18178
|
property :name, as: 'name'
|
18149
18179
|
property :physical_topology, as: 'physicalTopology', class: Google::Apis::ComputeBeta::ReservationBlockPhysicalTopology, decorator: Google::Apis::ComputeBeta::ReservationBlockPhysicalTopology::Representation
|
@@ -18277,6 +18307,7 @@ module Google
|
|
18277
18307
|
|
18278
18308
|
property :id, :numeric_string => true, as: 'id'
|
18279
18309
|
property :in_use_count, as: 'inUseCount'
|
18310
|
+
property :in_use_host_count, as: 'inUseHostCount'
|
18280
18311
|
property :kind, as: 'kind'
|
18281
18312
|
property :name, as: 'name'
|
18282
18313
|
property :physical_topology, as: 'physicalTopology', class: Google::Apis::ComputeBeta::ReservationSubBlockPhysicalTopology, decorator: Google::Apis::ComputeBeta::ReservationSubBlockPhysicalTopology::Representation
|
@@ -20012,6 +20043,7 @@ module Google
|
|
20012
20043
|
class Representation < Google::Apis::Core::JsonRepresentation
|
20013
20044
|
property :consumer_network, as: 'consumerNetwork'
|
20014
20045
|
property :endpoint, as: 'endpoint'
|
20046
|
+
collection :nat_ips, as: 'natIps'
|
20015
20047
|
property :propagated_connection_count, as: 'propagatedConnectionCount'
|
20016
20048
|
property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
|
20017
20049
|
property :status, as: 'status'
|
@@ -23064,6 +23096,7 @@ module Google
|
|
23064
23096
|
class WireProperties
|
23065
23097
|
# @private
|
23066
23098
|
class Representation < Google::Apis::Core::JsonRepresentation
|
23099
|
+
property :bandwidth_allocation, as: 'bandwidthAllocation'
|
23067
23100
|
property :bandwidth_unmetered, :numeric_string => true, as: 'bandwidthUnmetered'
|
23068
23101
|
property :fault_response, as: 'faultResponse'
|
23069
23102
|
end
|
@@ -44985,6 +44985,8 @@ module Google
|
|
44985
44985
|
# Name of the region of this request.
|
44986
44986
|
# @param [String] service_attachment
|
44987
44987
|
# Name of the ServiceAttachment resource to return.
|
44988
|
+
# @param [Boolean] show_nat_ips
|
44989
|
+
# Indicates whether NAT IPs should be included in the response.
|
44988
44990
|
# @param [String] fields
|
44989
44991
|
# Selector specifying which fields to include in a partial response.
|
44990
44992
|
# @param [String] quota_user
|
@@ -45004,13 +45006,14 @@ module Google
|
|
45004
45006
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
45005
45007
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
45006
45008
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
45007
|
-
def get_service_attachment(project, region, service_attachment, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
45009
|
+
def get_service_attachment(project, region, service_attachment, show_nat_ips: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
45008
45010
|
command = make_simple_command(:get, 'projects/{project}/regions/{region}/serviceAttachments/{serviceAttachment}', options)
|
45009
45011
|
command.response_representation = Google::Apis::ComputeBeta::ServiceAttachment::Representation
|
45010
45012
|
command.response_class = Google::Apis::ComputeBeta::ServiceAttachment
|
45011
45013
|
command.params['project'] = project unless project.nil?
|
45012
45014
|
command.params['region'] = region unless region.nil?
|
45013
45015
|
command.params['serviceAttachment'] = service_attachment unless service_attachment.nil?
|
45016
|
+
command.query['showNatIps'] = show_nat_ips unless show_nat_ips.nil?
|
45014
45017
|
command.query['fields'] = fields unless fields.nil?
|
45015
45018
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
45016
45019
|
command.query['userIp'] = user_ip unless user_ip.nil?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.122.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.122.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|