google-apis-compute_beta 0.142.0 → 0.144.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: 04d2b352e5e245d381b63b9b2666082263202e2949a98ed01bacbb7bd4c33b22
4
- data.tar.gz: e388c7302e02694b6c09376bef08694fbf6eb59b1afed21a033f588ee2294424
3
+ metadata.gz: ed2cd963f3a146930b7669ff9ef39d13926fdfb91bec9f3116f2879e9182ce46
4
+ data.tar.gz: be6aba02594379279b61b73f90a10c63b48e62703404fbc99919d299b5f4de1c
5
5
  SHA512:
6
- metadata.gz: d6a2b04fedfaf3da3f31506c89eaee7244b770a37f2d34e12896da59831941ed5ee33448057304d19a2fc8087053496c5d504302a06ca6da97368f268993cb70
7
- data.tar.gz: cbc32aa02810f556534973e55d0c2a05f1b5ede9eaaa22ac49435ac46881517cf2b29e1dcb3d3c62bb4700338e9433db53698369fe3dc91d5903937488b9f1e3
6
+ metadata.gz: 210e2c6114386e2241156383acfc4ddcd73e9530d896bfce60c559cd23e18d64d1786978519f1c052bc5cec2808c0f27bd78cdda1ed58741dee604613836e17a
7
+ data.tar.gz: f6a019dcac360fdd284eb2d8edff5acaf92c01c193d848c689383e3564c764a480fc46f5eb11e5fe9b2adb7cf410361fe493bd8d3b8182e7fb6ac974dfeb0cd3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.144.0 (2026-08-02)
4
+
5
+ * Regenerated from discovery document revision 20260722
6
+
7
+ ### v0.143.0 (2026-07-19)
8
+
9
+ * Regenerated from discovery document revision 20260709
10
+
3
11
  ### v0.142.0 (2026-07-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20260629
@@ -754,8 +754,10 @@ module Google
754
754
  # It supports the following cases:
755
755
  #
756
756
  # -
757
- # Case 1: PublicDelegatedPrefix (PDP) for BYOIP external IPv4
758
- # addresses. The PDP must support enhanced IPv4 allocations.
757
+ # Case 1: PublicDelegatedPrefix (PDP) for BYOIP external
758
+ # addresses. If an IPv4 PDP is used, the PDP must support enhanced IPv4
759
+ # allocations. If an IPv6 PDP is used, the PDP must be in
760
+ # EXTERNAL_IPV6_FORWARDING_RULE_CREATION mode.
759
761
  # -
760
762
  # Case 2: Internal Range for global internal addresses.
761
763
  # Use one of the following formats to specify the resource:
@@ -874,6 +876,12 @@ module Google
874
876
  # - `PRIVATE_SERVICE_CONNECT` for a private network address that is
875
877
  # used to configure Private Service Connect. Only global internal addresses
876
878
  # can use this purpose.
879
+ # - `PASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP0` for addresses
880
+ # that can only be assigned to global external Passthrough Network Load
881
+ # Balancer forwarding rules, as an Availability Group 0 address.
882
+ # - `PASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP1` for addresses that
883
+ # can only be assigned to global external Passthrough Network Load Balancer
884
+ # forwarding rules, as an Availability Group 1 address.
877
885
  # Corresponds to the JSON property `purpose`
878
886
  # @return [String]
879
887
  attr_accessor :purpose
@@ -2000,7 +2008,42 @@ module Google
2000
2008
  # @return [Fixnum]
2001
2009
  attr_accessor :disk_size_gb
2002
2010
 
2011
+ # Specifies the disk type used for the boot disk or an additional data
2012
+ # disk. For valid disk type values, see
2013
+ # Supported types for Hyperdisk volumes and
2014
+ # Persistent Disk type variables.
2015
+ # When creating a single instance, you must provide either the full or
2016
+ # partial URL of the disk type. For example, the following values are
2017
+ # valid:
2003
2018
  #
2019
+ #
2020
+ # - https://www.googleapis.com/compute/v1/projects/project/zones/zone/
2021
+ # diskTypes/diskType
2022
+ # - projects/project/zones/zone/diskTypes/diskType
2023
+ # - zones/zone/diskTypes/diskType
2024
+ # When creating an instance template, instance flexibility policy, or when
2025
+ # creating or updating an all-instances configuration, you specify the
2026
+ # disk type without a URL, for example, hyperdisk-balanced.
2027
+ # If you omit this field for a disk, the default disk type depends on
2028
+ # the instance's machine series, as follows.
2029
+ #
2030
+ #
2031
+ # - For first- and second-generation machine series like N1, N2, T2, and
2032
+ # M1, the
2033
+ # default disk type is Standard Persistent Disk
2034
+ # (pd-standard).
2035
+ # - For C3, C3D, and M3 the default is Balanced Persistent Disk
2036
+ # (pd-balanced).
2037
+ # - For other third-generation machine
2038
+ # series like A3, H3, Z3, all
2039
+ # fourth-generation types like C4, N4, M4, and newer machine series,
2040
+ # the default is Hyperdisk Balanced
2041
+ # (hyperdisk-balanced).
2042
+ # The disk type you specify must be compatible with the instance's machine
2043
+ # series. For a list of machine series that support Persistent Disk, see Machine
2044
+ # series support for Persistent Disk.
2045
+ # For a list of machine series that support Hyperdisk, seeMachine
2046
+ # series support for Hyperdisk.
2004
2047
  # Corresponds to the JSON property `diskType`
2005
2048
  # @return [String]
2006
2049
  attr_accessor :disk_type
@@ -4955,7 +4998,11 @@ module Google
4955
4998
 
4956
4999
  # URL to networkservices.ServiceLbPolicy resource.
4957
5000
  # Can only be set if load balancing scheme is EXTERNAL_MANAGED,
4958
- # INTERNAL_MANAGED or INTERNAL_SELF_MANAGED and the scope is global.
5001
+ # INTERNAL_MANAGED or INTERNAL_SELF_MANAGED for a global backend service, and
5002
+ # EXTERNAL_MANAGED or INTERNAL_MANAGED for a regional backend service. For a
5003
+ # global backend service, the service lb policy must be global. For a
5004
+ # regional backend service, the service lb policy must be regional and in the
5005
+ # same region.
4959
5006
  # Corresponds to the JSON property `serviceLbPolicy`
4960
5007
  # @return [String]
4961
5008
  attr_accessor :service_lb_policy
@@ -10242,6 +10289,7 @@ module Google
10242
10289
  # @return [String]
10243
10290
  attr_accessor :kms_key_service_account
10244
10291
 
10292
+ # [DEPRECATED] CSEK is no longer supported. Use CMEK instead.
10245
10293
  # Specifies a 256-bit customer-supplied
10246
10294
  # encryption key, encoded in RFC
10247
10295
  # 4648 base64 to either encrypt or decrypt this resource. You can
@@ -10253,6 +10301,7 @@ module Google
10253
10301
  # @return [String]
10254
10302
  attr_accessor :raw_key
10255
10303
 
10304
+ # [DEPRECATED] CSEK is no longer supported. Use CMEK instead.
10256
10305
  # Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
10257
10306
  # customer-supplied encryption key to either encrypt or decrypt this
10258
10307
  # resource. You can provide either the rawKey or thersaEncryptedKey.
@@ -10274,6 +10323,7 @@ module Google
10274
10323
  # @return [String]
10275
10324
  attr_accessor :rsa_encrypted_key
10276
10325
 
10326
+ # [DEPRECATED] CSEK is no longer supported. Use CMEK instead.
10277
10327
  # [Output only] TheRFC
10278
10328
  # 4648 base64 encoded SHA-256 hash of the customer-supplied
10279
10329
  # encryption key that protects this resource.
@@ -18910,7 +18960,7 @@ module Google
18910
18960
  # on what other health check fields are supported and what other resources
18911
18961
  # can use this health check:
18912
18962
  #
18913
- # - SSL, HTTP2, and GRPC protocols are not supported.
18963
+ # - SSL, HTTP2, GRPC, and GRPC_WITH_TLS protocols are not supported.
18914
18964
  # - The TCP request field is not supported.
18915
18965
  # - The proxyHeader field for HTTP, HTTPS, and TCP is not
18916
18966
  # supported.
@@ -18938,10 +18988,10 @@ module Google
18938
18988
  # @return [Fixnum]
18939
18989
  attr_accessor :timeout_sec
18940
18990
 
18941
- # Specifies the type of the healthCheck, either TCP,SSL, HTTP, HTTPS,HTTP2 or
18942
- # GRPC. Exactly one of the
18943
- # protocol-specific health check fields must be specified, which must matchtype
18944
- # field.
18991
+ # Specifies the type of the healthCheck, either TCP,SSL, HTTP, HTTPS,HTTP2, GRPC
18992
+ # or GRPC_WITH_TLS.
18993
+ # Exactly one of the protocol-specific health check fields must be specified,
18994
+ # which must match type field.
18945
18995
  # Corresponds to the JSON property `type`
18946
18996
  # @return [String]
18947
18997
  attr_accessor :type
@@ -25296,7 +25346,8 @@ module Google
25296
25346
  @errors = args[:errors] if args.key?(:errors)
25297
25347
  end
25298
25348
 
25299
- #
25349
+ # Represents a single error encountered during the processing of an
25350
+ # operation.
25300
25351
  class Error
25301
25352
  include Google::Apis::Core::Hashable
25302
25353
 
@@ -25337,7 +25388,8 @@ module Google
25337
25388
  @message = args[:message] if args.key?(:message)
25338
25389
  end
25339
25390
 
25340
- #
25391
+ # Container for structured error details providing additional context
25392
+ # specific to the encountered error code.
25341
25393
  class ErrorDetail
25342
25394
  include Google::Apis::Core::Hashable
25343
25395
 
@@ -25436,7 +25488,8 @@ module Google
25436
25488
  @errors = args[:errors] if args.key?(:errors)
25437
25489
  end
25438
25490
 
25439
- #
25491
+ # Represents a single error encountered during the processing of an
25492
+ # operation.
25440
25493
  class Error
25441
25494
  include Google::Apis::Core::Hashable
25442
25495
 
@@ -25477,7 +25530,8 @@ module Google
25477
25530
  @message = args[:message] if args.key?(:message)
25478
25531
  end
25479
25532
 
25480
- #
25533
+ # Container for structured error details providing additional context
25534
+ # specific to the encountered error code.
25481
25535
  class ErrorDetail
25482
25536
  include Google::Apis::Core::Hashable
25483
25537
 
@@ -25876,7 +25930,8 @@ module Google
25876
25930
  @errors = args[:errors] if args.key?(:errors)
25877
25931
  end
25878
25932
 
25879
- #
25933
+ # Represents a single error encountered during the processing of an
25934
+ # operation.
25880
25935
  class Error
25881
25936
  include Google::Apis::Core::Hashable
25882
25937
 
@@ -25917,7 +25972,8 @@ module Google
25917
25972
  @message = args[:message] if args.key?(:message)
25918
25973
  end
25919
25974
 
25920
- #
25975
+ # Container for structured error details providing additional context
25976
+ # specific to the encountered error code.
25921
25977
  class ErrorDetail
25922
25978
  include Google::Apis::Core::Hashable
25923
25979
 
@@ -26079,7 +26135,8 @@ module Google
26079
26135
  @errors = args[:errors] if args.key?(:errors)
26080
26136
  end
26081
26137
 
26082
- #
26138
+ # Represents a single error encountered during the processing of an
26139
+ # operation.
26083
26140
  class Error
26084
26141
  include Google::Apis::Core::Hashable
26085
26142
 
@@ -26120,7 +26177,8 @@ module Google
26120
26177
  @message = args[:message] if args.key?(:message)
26121
26178
  end
26122
26179
 
26123
- #
26180
+ # Container for structured error details providing additional context
26181
+ # specific to the encountered error code.
26124
26182
  class ErrorDetail
26125
26183
  include Google::Apis::Core::Hashable
26126
26184
 
@@ -26567,7 +26625,7 @@ module Google
26567
26625
  class InstanceGroupManagersApplyUpdatesRequest
26568
26626
  include Google::Apis::Core::Hashable
26569
26627
 
26570
- # Flag to update all instances instead of specified list of instances”.
26628
+ # Flag to update all instances instead of specified list of "instances".
26571
26629
  # If the flag is set to true then the instances may not be specified
26572
26630
  # in the request.
26573
26631
  # Corresponds to the JSON property `allInstances`
@@ -26899,7 +26957,8 @@ module Google
26899
26957
  @errors = args[:errors] if args.key?(:errors)
26900
26958
  end
26901
26959
 
26902
- #
26960
+ # Represents a single error encountered during the processing of an
26961
+ # operation.
26903
26962
  class Error
26904
26963
  include Google::Apis::Core::Hashable
26905
26964
 
@@ -26940,7 +26999,8 @@ module Google
26940
26999
  @message = args[:message] if args.key?(:message)
26941
27000
  end
26942
27001
 
26943
- #
27002
+ # Container for structured error details providing additional context
27003
+ # specific to the encountered error code.
26944
27004
  class ErrorDetail
26945
27005
  include Google::Apis::Core::Hashable
26946
27006
 
@@ -27006,15 +27066,15 @@ module Google
27006
27066
  class InstanceGroupManagersListErrorsResponse
27007
27067
  include Google::Apis::Core::Hashable
27008
27068
 
27009
- # Output only. [Output Only] The list of errors of the managed instance group.
27069
+ # Output only. The list of errors of the managed instance group.
27010
27070
  # Corresponds to the JSON property `items`
27011
27071
  # @return [Array<Google::Apis::ComputeBeta::InstanceManagedByIgmError>]
27012
27072
  attr_accessor :items
27013
27073
 
27014
- # Output only. [Output Only] This token allows you to get the next page of
27015
- # results for
27016
- # list requests. If the number of results is larger thanmaxResults, use the
27017
- # nextPageToken as a value for
27074
+ # Output only. This token allows you to get the next page of results for list
27075
+ # requests.
27076
+ # If the number of results is larger than maxResults
27077
+ # , then use the nextPageToken as a value for
27018
27078
  # the query parameter pageToken in the next list request.
27019
27079
  # Subsequent list requests will have their own nextPageToken to
27020
27080
  # continue paging through the results.
@@ -37178,7 +37238,8 @@ module Google
37178
37238
  @errors = args[:errors] if args.key?(:errors)
37179
37239
  end
37180
37240
 
37181
- #
37241
+ # Represents a single error encountered during the processing of an
37242
+ # operation.
37182
37243
  class Error
37183
37244
  include Google::Apis::Core::Hashable
37184
37245
 
@@ -37219,7 +37280,8 @@ module Google
37219
37280
  @message = args[:message] if args.key?(:message)
37220
37281
  end
37221
37282
 
37222
- #
37283
+ # Container for structured error details providing additional context
37284
+ # specific to the encountered error code.
37223
37285
  class ErrorDetail
37224
37286
  include Google::Apis::Core::Hashable
37225
37287
 
@@ -38016,7 +38078,8 @@ module Google
38016
38078
  @errors = args[:errors] if args.key?(:errors)
38017
38079
  end
38018
38080
 
38019
- #
38081
+ # Represents a single error encountered during the processing of an
38082
+ # operation.
38020
38083
  class Error
38021
38084
  include Google::Apis::Core::Hashable
38022
38085
 
@@ -38057,7 +38120,8 @@ module Google
38057
38120
  @message = args[:message] if args.key?(:message)
38058
38121
  end
38059
38122
 
38060
- #
38123
+ # Container for structured error details providing additional context
38124
+ # specific to the encountered error code.
38061
38125
  class ErrorDetail
38062
38126
  include Google::Apis::Core::Hashable
38063
38127
 
@@ -45591,7 +45655,8 @@ module Google
45591
45655
  @errors = args[:errors] if args.key?(:errors)
45592
45656
  end
45593
45657
 
45594
- #
45658
+ # Represents a single error encountered during the processing of an
45659
+ # operation.
45595
45660
  class Error
45596
45661
  include Google::Apis::Core::Hashable
45597
45662
 
@@ -45632,7 +45697,8 @@ module Google
45632
45697
  @message = args[:message] if args.key?(:message)
45633
45698
  end
45634
45699
 
45635
- #
45700
+ # Container for structured error details providing additional context
45701
+ # specific to the encountered error code.
45636
45702
  class ErrorDetail
45637
45703
  include Google::Apis::Core::Hashable
45638
45704
 
@@ -48474,6 +48540,13 @@ module Google
48474
48540
  # @return [String]
48475
48541
  attr_accessor :name
48476
48542
 
48543
+ # Network tier to be used for this prefix. All child delegated prefixes will
48544
+ # inherit this field. If this field is not specified, it defaults to the
48545
+ # network tier of the project that the PublicAdvertisedPrefix belongs to.
48546
+ # Corresponds to the JSON property `networkTier`
48547
+ # @return [String]
48548
+ attr_accessor :network_tier
48549
+
48477
48550
  # Specifies how child public delegated prefix will be scoped. It could
48478
48551
  # be one of following values:
48479
48552
  #
@@ -48537,6 +48610,7 @@ module Google
48537
48610
  @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
48538
48611
  @kind = args[:kind] if args.key?(:kind)
48539
48612
  @name = args[:name] if args.key?(:name)
48613
+ @network_tier = args[:network_tier] if args.key?(:network_tier)
48540
48614
  @pdp_scope = args[:pdp_scope] if args.key?(:pdp_scope)
48541
48615
  @public_delegated_prefixs = args[:public_delegated_prefixs] if args.key?(:public_delegated_prefixs)
48542
48616
  @self_link = args[:self_link] if args.key?(:self_link)
@@ -48817,6 +48891,13 @@ module Google
48817
48891
  # @return [String]
48818
48892
  attr_accessor :name
48819
48893
 
48894
+ # Network tier of the public delegated prefix. If populated, it must match
48895
+ # the network tier of the parent public advertised prefix. If not populated,
48896
+ # it defaults to the network tier of the parent public advertised prefix.
48897
+ # Corresponds to the JSON property `networkTier`
48898
+ # @return [String]
48899
+ attr_accessor :network_tier
48900
+
48820
48901
  # The URL of parent prefix. Either PublicAdvertisedPrefix or
48821
48902
  # PublicDelegatedPrefix.
48822
48903
  # Corresponds to the JSON property `parentPrefix`
@@ -48903,6 +48984,7 @@ module Google
48903
48984
  @kind = args[:kind] if args.key?(:kind)
48904
48985
  @mode = args[:mode] if args.key?(:mode)
48905
48986
  @name = args[:name] if args.key?(:name)
48987
+ @network_tier = args[:network_tier] if args.key?(:network_tier)
48906
48988
  @parent_prefix = args[:parent_prefix] if args.key?(:parent_prefix)
48907
48989
  @public_delegated_sub_prefixs = args[:public_delegated_sub_prefixs] if args.key?(:public_delegated_sub_prefixs)
48908
48990
  @purpose = args[:purpose] if args.key?(:purpose)
@@ -50633,7 +50715,7 @@ module Google
50633
50715
  class RegionInstanceGroupManagersApplyUpdatesRequest
50634
50716
  include Google::Apis::Core::Hashable
50635
50717
 
50636
- # Flag to update all instances instead of specified list of instances”.
50718
+ # Flag to update all instances instead of specified list of "instances".
50637
50719
  # If the flag is set to true then the instances may not be specified
50638
50720
  # in the request.
50639
50721
  # Corresponds to the JSON property `allInstances`
@@ -51880,7 +51962,7 @@ module Google
51880
51962
  class ReliabilityRisksListResponse
51881
51963
  include Google::Apis::Core::Hashable
51882
51964
 
51883
- #
51965
+ # [Output Only] An ETag of the resource.
51884
51966
  # Corresponds to the JSON property `etag`
51885
51967
  # @return [String]
51886
51968
  attr_accessor :etag
@@ -55147,6 +55229,14 @@ module Google
55147
55229
  # @return [Hash<String,String>]
55148
55230
  attr_accessor :accelerator_topology_ids
55149
55231
 
55232
+ # Output only. Key-value store for arbitrary network topology identifiers
55233
+ # defined by the underlying infrastructure.
55234
+ # The key will be the topology label and the value will be the location
55235
+ # ID for the topology.
55236
+ # Corresponds to the JSON property `networkTopologyIds`
55237
+ # @return [Hash<String,String>]
55238
+ attr_accessor :network_topology_ids
55239
+
55150
55240
  def initialize(**args)
55151
55241
  update!(**args)
55152
55242
  end
@@ -55154,6 +55244,7 @@ module Google
55154
55244
  # Update properties of this object
55155
55245
  def update!(**args)
55156
55246
  @accelerator_topology_ids = args[:accelerator_topology_ids] if args.key?(:accelerator_topology_ids)
55247
+ @network_topology_ids = args[:network_topology_ids] if args.key?(:network_topology_ids)
55157
55248
  end
55158
55249
  end
55159
55250
 
@@ -55204,6 +55295,13 @@ module Google
55204
55295
  # @return [Fixnum]
55205
55296
  attr_accessor :availability_domain
55206
55297
 
55298
+ # Output only. Specifies the timestamp, when the instance will start graceful
55299
+ # shutdown
55300
+ # process, in RFC3339 text format.
55301
+ # Corresponds to the JSON property `gracefulShutdownTimestamp`
55302
+ # @return [String]
55303
+ attr_accessor :graceful_shutdown_timestamp
55304
+
55207
55305
  # Time in future when the instance will be terminated inRFC3339 text format.
55208
55306
  # Corresponds to the JSON property `terminationTimestamp`
55209
55307
  # @return [String]
@@ -55216,6 +55314,7 @@ module Google
55216
55314
  # Update properties of this object
55217
55315
  def update!(**args)
55218
55316
  @availability_domain = args[:availability_domain] if args.key?(:availability_domain)
55317
+ @graceful_shutdown_timestamp = args[:graceful_shutdown_timestamp] if args.key?(:graceful_shutdown_timestamp)
55219
55318
  @termination_timestamp = args[:termination_timestamp] if args.key?(:termination_timestamp)
55220
55319
  end
55221
55320
  end
@@ -58373,6 +58472,13 @@ module Google
58373
58472
  # @return [Google::Apis::ComputeBeta::BfdStatus]
58374
58473
  attr_accessor :bfd_status
58375
58474
 
58475
+ # Output only. [Output Only] Indicates whether the BGP peer is in a
58476
+ # depreferenced state.
58477
+ # Corresponds to the JSON property `depreferenced`
58478
+ # @return [Boolean]
58479
+ attr_accessor :depreferenced
58480
+ alias_method :depreferenced?, :depreferenced
58481
+
58376
58482
  # Output only. Enable IPv4 traffic over BGP Peer.
58377
58483
  # It is enabled by default if the peerIpAddress is version 4.
58378
58484
  # Corresponds to the JSON property `enableIpv4`
@@ -58486,6 +58592,7 @@ module Google
58486
58592
  def update!(**args)
58487
58593
  @advertised_routes = args[:advertised_routes] if args.key?(:advertised_routes)
58488
58594
  @bfd_status = args[:bfd_status] if args.key?(:bfd_status)
58595
+ @depreferenced = args[:depreferenced] if args.key?(:depreferenced)
58489
58596
  @enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
58490
58597
  @enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
58491
58598
  @ip_address = args[:ip_address] if args.key?(:ip_address)
@@ -65745,6 +65852,11 @@ module Google
65745
65852
  # @return [String]
65746
65853
  attr_accessor :self_link_with_id
65747
65854
 
65855
+ # Share settings for the storage pool.
65856
+ # Corresponds to the JSON property `shareSettings`
65857
+ # @return [Google::Apis::ComputeBeta::StoragePoolShareSettings]
65858
+ attr_accessor :share_settings
65859
+
65748
65860
  # Output only. [Output Only] The status of storage pool creation.
65749
65861
  #
65750
65862
  #
@@ -65797,6 +65909,7 @@ module Google
65797
65909
  @resource_status = args[:resource_status] if args.key?(:resource_status)
65798
65910
  @self_link = args[:self_link] if args.key?(:self_link)
65799
65911
  @self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
65912
+ @share_settings = args[:share_settings] if args.key?(:share_settings)
65800
65913
  @state = args[:state] if args.key?(:state)
65801
65914
  @status = args[:status] if args.key?(:status)
65802
65915
  @storage_pool_type = args[:storage_pool_type] if args.key?(:storage_pool_type)
@@ -66470,6 +66583,45 @@ module Google
66470
66583
  end
66471
66584
  end
66472
66585
 
66586
+ # Share settings for the storage pool.
66587
+ class StoragePoolShareSettings
66588
+ include Google::Apis::Core::Hashable
66589
+
66590
+ # A map of project id and project config.
66591
+ # Corresponds to the JSON property `projectMap`
66592
+ # @return [Hash<String,Google::Apis::ComputeBeta::StoragePoolShareSettingsProjectConfig>]
66593
+ attr_accessor :project_map
66594
+
66595
+ def initialize(**args)
66596
+ update!(**args)
66597
+ end
66598
+
66599
+ # Update properties of this object
66600
+ def update!(**args)
66601
+ @project_map = args[:project_map] if args.key?(:project_map)
66602
+ end
66603
+ end
66604
+
66605
+ # Config for each project in the share settings.
66606
+ class StoragePoolShareSettingsProjectConfig
66607
+ include Google::Apis::Core::Hashable
66608
+
66609
+ # The project ID, should be same as the key of this project config in the
66610
+ # parent map.
66611
+ # Corresponds to the JSON property `projectId`
66612
+ # @return [String]
66613
+ attr_accessor :project_id
66614
+
66615
+ def initialize(**args)
66616
+ update!(**args)
66617
+ end
66618
+
66619
+ # Update properties of this object
66620
+ def update!(**args)
66621
+ @project_id = args[:project_id] if args.key?(:project_id)
66622
+ end
66623
+ end
66624
+
66473
66625
  #
66474
66626
  class StoragePoolType
66475
66627
  include Google::Apis::Core::Hashable
@@ -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.142.0"
19
+ GEM_VERSION = "0.144.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260629"
25
+ REVISION = "20260722"
26
26
  end
27
27
  end
28
28
  end
@@ -8296,6 +8296,18 @@ module Google
8296
8296
  include Google::Apis::Core::JsonObjectSupport
8297
8297
  end
8298
8298
 
8299
+ class StoragePoolShareSettings
8300
+ class Representation < Google::Apis::Core::JsonRepresentation; end
8301
+
8302
+ include Google::Apis::Core::JsonObjectSupport
8303
+ end
8304
+
8305
+ class StoragePoolShareSettingsProjectConfig
8306
+ class Representation < Google::Apis::Core::JsonRepresentation; end
8307
+
8308
+ include Google::Apis::Core::JsonObjectSupport
8309
+ end
8310
+
8299
8311
  class StoragePoolType
8300
8312
  class Representation < Google::Apis::Core::JsonRepresentation; end
8301
8313
 
@@ -20807,6 +20819,7 @@ module Google
20807
20819
  property :ipv6_access_type, as: 'ipv6AccessType'
20808
20820
  property :kind, as: 'kind'
20809
20821
  property :name, as: 'name'
20822
+ property :network_tier, as: 'networkTier'
20810
20823
  property :pdp_scope, as: 'pdpScope'
20811
20824
  collection :public_delegated_prefixs, as: 'publicDelegatedPrefixs', class: Google::Apis::ComputeBeta::PublicAdvertisedPrefixPublicDelegatedPrefix, decorator: Google::Apis::ComputeBeta::PublicAdvertisedPrefixPublicDelegatedPrefix::Representation
20812
20825
 
@@ -20875,6 +20888,7 @@ module Google
20875
20888
  property :kind, as: 'kind'
20876
20889
  property :mode, as: 'mode'
20877
20890
  property :name, as: 'name'
20891
+ property :network_tier, as: 'networkTier'
20878
20892
  property :parent_prefix, as: 'parentPrefix'
20879
20893
  collection :public_delegated_sub_prefixs, as: 'publicDelegatedSubPrefixs', class: Google::Apis::ComputeBeta::PublicDelegatedPrefixPublicDelegatedSubPrefix, decorator: Google::Apis::ComputeBeta::PublicDelegatedPrefixPublicDelegatedSubPrefix::Representation
20880
20894
 
@@ -22498,6 +22512,7 @@ module Google
22498
22512
  # @private
22499
22513
  class Representation < Google::Apis::Core::JsonRepresentation
22500
22514
  hash :accelerator_topology_ids, as: 'acceleratorTopologyIds'
22515
+ hash :network_topology_ids, as: 'networkTopologyIds'
22501
22516
  end
22502
22517
  end
22503
22518
 
@@ -22514,6 +22529,7 @@ module Google
22514
22529
  # @private
22515
22530
  class Representation < Google::Apis::Core::JsonRepresentation
22516
22531
  property :availability_domain, as: 'availabilityDomain'
22532
+ property :graceful_shutdown_timestamp, as: 'gracefulShutdownTimestamp'
22517
22533
  property :termination_timestamp, as: 'terminationTimestamp'
22518
22534
  end
22519
22535
  end
@@ -23215,6 +23231,7 @@ module Google
23215
23231
 
23216
23232
  property :bfd_status, as: 'bfdStatus', class: Google::Apis::ComputeBeta::BfdStatus, decorator: Google::Apis::ComputeBeta::BfdStatus::Representation
23217
23233
 
23234
+ property :depreferenced, as: 'depreferenced'
23218
23235
  property :enable_ipv4, as: 'enableIpv4'
23219
23236
  property :enable_ipv6, as: 'enableIpv6'
23220
23237
  property :ip_address, as: 'ipAddress'
@@ -24961,6 +24978,8 @@ module Google
24961
24978
 
24962
24979
  property :self_link, as: 'selfLink'
24963
24980
  property :self_link_with_id, as: 'selfLinkWithId'
24981
+ property :share_settings, as: 'shareSettings', class: Google::Apis::ComputeBeta::StoragePoolShareSettings, decorator: Google::Apis::ComputeBeta::StoragePoolShareSettings::Representation
24982
+
24964
24983
  property :state, as: 'state'
24965
24984
  property :status, as: 'status', class: Google::Apis::ComputeBeta::StoragePoolResourceStatus, decorator: Google::Apis::ComputeBeta::StoragePoolResourceStatus::Representation
24966
24985
 
@@ -25124,6 +25143,21 @@ module Google
25124
25143
  end
25125
25144
  end
25126
25145
 
25146
+ class StoragePoolShareSettings
25147
+ # @private
25148
+ class Representation < Google::Apis::Core::JsonRepresentation
25149
+ hash :project_map, as: 'projectMap', class: Google::Apis::ComputeBeta::StoragePoolShareSettingsProjectConfig, decorator: Google::Apis::ComputeBeta::StoragePoolShareSettingsProjectConfig::Representation
25150
+
25151
+ end
25152
+ end
25153
+
25154
+ class StoragePoolShareSettingsProjectConfig
25155
+ # @private
25156
+ class Representation < Google::Apis::Core::JsonRepresentation
25157
+ property :project_id, as: 'projectId'
25158
+ end
25159
+ end
25160
+
25127
25161
  class StoragePoolType
25128
25162
  # @private
25129
25163
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -32625,6 +32625,13 @@ module Google
32625
32625
 
32626
32626
  # Returns the specified global ProjectViews resource, with a regional
32627
32627
  # context.
32628
+ # This regional API endpoint reads resource metadata from regional
32629
+ # read-only replicas. Because changes are copied to these regional replicas
32630
+ # asynchronously, for real-time resource reads or any write operations
32631
+ # (creating, updating, or deleting resources), use the global
32632
+ # [projects.get](https://cloud.google.com/compute/docs/reference/rest/v1/
32633
+ # projects/get)
32634
+ # endpoint.
32628
32635
  # @param [String] project
32629
32636
  # Required. Project ID for this request. This is part of the URL path.
32630
32637
  # @param [String] region
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.142.0
4
+ version: 0.144.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.142.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.144.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: