google-apis-compute_beta 0.110.0 → 0.111.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: 79d190afe668fd7086fb193fd1c658e4bfa7aeb8da9e10c37834e1d468746416
4
- data.tar.gz: 46c2c2374a93432f338b8388bb05d97fe668ed8063b85e901ba2e036db089057
3
+ metadata.gz: b6aa6d3ffc4ebe0526ca79d827ba18a2e82546da9b5f4292d273acfaaf61da70
4
+ data.tar.gz: c7a33b7b48ec1cc16fba0d9fecd0c3d14105e376f2301a9e6a8a926bf22097d8
5
5
  SHA512:
6
- metadata.gz: 8a0b0af65cf800e2e559afdc96d1f5174592b83164ee098262e31a5424adfd3e89a5abd525375edf4c2b2eeb769d3d03bdb20c94addf4e258c41640bab8fc4e5
7
- data.tar.gz: 19e1fadc29b09413ed3de4ba11f0b13311700fcdee5c7750379c6a7f774e505295b38376c02962696ecaeb4ead1e402d714d141fca430160efa9ad2f63cd3529
6
+ metadata.gz: 97bf7f81b86de1d3aeeca0ffa035514e55c4d1a256ed06c71cdaefdf2ff0c042c02c7e760bb5b5251ad61efe5ef07318b80cf3a12301ab0e9754d8f10cdd5bb3
7
+ data.tar.gz: 224ebc2309defecd708efe161fdd6490b4907751f058d0c94d61799568bd14c706f0beb470a061ab7a7ab8c997cd6809c08be4c7e522d754c7dc31667487c0eb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.111.0 (2025-03-16)
4
+
5
+ * Regenerated from discovery document revision 20250302
6
+
3
7
  ### v0.110.0 (2025-03-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20250224
@@ -3467,6 +3467,124 @@ module Google
3467
3467
  end
3468
3468
  end
3469
3469
 
3470
+ #
3471
+ class BackendBucketListUsable
3472
+ include Google::Apis::Core::Hashable
3473
+
3474
+ # [Output Only] Unique identifier for the resource; defined by the server.
3475
+ # Corresponds to the JSON property `id`
3476
+ # @return [String]
3477
+ attr_accessor :id
3478
+
3479
+ # A list of BackendBucket resources.
3480
+ # Corresponds to the JSON property `items`
3481
+ # @return [Array<Google::Apis::ComputeBeta::BackendBucket>]
3482
+ attr_accessor :items
3483
+
3484
+ # [Output Only] Type of resource. Always compute#usableBackendBucketList for
3485
+ # lists of usable backend buckets.
3486
+ # Corresponds to the JSON property `kind`
3487
+ # @return [String]
3488
+ attr_accessor :kind
3489
+
3490
+ # [Output Only] This token allows you to get the next page of results for list
3491
+ # requests. If the number of results is larger than maxResults, use the
3492
+ # nextPageToken as a value for the query parameter pageToken in the next list
3493
+ # request. Subsequent list requests will have their own nextPageToken to
3494
+ # continue paging through the results.
3495
+ # Corresponds to the JSON property `nextPageToken`
3496
+ # @return [String]
3497
+ attr_accessor :next_page_token
3498
+
3499
+ # [Output Only] Server-defined URL for this resource.
3500
+ # Corresponds to the JSON property `selfLink`
3501
+ # @return [String]
3502
+ attr_accessor :self_link
3503
+
3504
+ # [Output Only] Informational warning message.
3505
+ # Corresponds to the JSON property `warning`
3506
+ # @return [Google::Apis::ComputeBeta::BackendBucketListUsable::Warning]
3507
+ attr_accessor :warning
3508
+
3509
+ def initialize(**args)
3510
+ update!(**args)
3511
+ end
3512
+
3513
+ # Update properties of this object
3514
+ def update!(**args)
3515
+ @id = args[:id] if args.key?(:id)
3516
+ @items = args[:items] if args.key?(:items)
3517
+ @kind = args[:kind] if args.key?(:kind)
3518
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3519
+ @self_link = args[:self_link] if args.key?(:self_link)
3520
+ @warning = args[:warning] if args.key?(:warning)
3521
+ end
3522
+
3523
+ # [Output Only] Informational warning message.
3524
+ class Warning
3525
+ include Google::Apis::Core::Hashable
3526
+
3527
+ # [Output Only] A warning code, if applicable. For example, Compute Engine
3528
+ # returns NO_RESULTS_ON_PAGE if there are no results in the response.
3529
+ # Corresponds to the JSON property `code`
3530
+ # @return [String]
3531
+ attr_accessor :code
3532
+
3533
+ # [Output Only] Metadata about this warning in key: value format. For example: "
3534
+ # data": [ ` "key": "scope", "value": "zones/us-east1-d" `
3535
+ # Corresponds to the JSON property `data`
3536
+ # @return [Array<Google::Apis::ComputeBeta::BackendBucketListUsable::Warning::Datum>]
3537
+ attr_accessor :data
3538
+
3539
+ # [Output Only] A human-readable description of the warning code.
3540
+ # Corresponds to the JSON property `message`
3541
+ # @return [String]
3542
+ attr_accessor :message
3543
+
3544
+ def initialize(**args)
3545
+ update!(**args)
3546
+ end
3547
+
3548
+ # Update properties of this object
3549
+ def update!(**args)
3550
+ @code = args[:code] if args.key?(:code)
3551
+ @data = args[:data] if args.key?(:data)
3552
+ @message = args[:message] if args.key?(:message)
3553
+ end
3554
+
3555
+ #
3556
+ class Datum
3557
+ include Google::Apis::Core::Hashable
3558
+
3559
+ # [Output Only] A key that provides more detail on the warning being returned.
3560
+ # For example, for warnings where there are no results in a list request for a
3561
+ # particular zone, this key might be scope and the key value might be the zone
3562
+ # name. Other examples might be a key indicating a deprecated resource and a
3563
+ # suggested replacement, or a warning about invalid network settings (for
3564
+ # example, if an instance attempts to perform IP forwarding but is not enabled
3565
+ # for IP forwarding).
3566
+ # Corresponds to the JSON property `key`
3567
+ # @return [String]
3568
+ attr_accessor :key
3569
+
3570
+ # [Output Only] A warning data value corresponding to the key.
3571
+ # Corresponds to the JSON property `value`
3572
+ # @return [String]
3573
+ attr_accessor :value
3574
+
3575
+ def initialize(**args)
3576
+ update!(**args)
3577
+ end
3578
+
3579
+ # Update properties of this object
3580
+ def update!(**args)
3581
+ @key = args[:key] if args.key?(:key)
3582
+ @value = args[:value] if args.key?(:value)
3583
+ end
3584
+ end
3585
+ end
3586
+ end
3587
+
3470
3588
  #
3471
3589
  class BackendBucketUsedBy
3472
3590
  include Google::Apis::Core::Hashable
@@ -8311,6 +8429,69 @@ module Google
8311
8429
  end
8312
8430
  end
8313
8431
 
8432
+ #
8433
+ class DiskSettings
8434
+ include Google::Apis::Core::Hashable
8435
+
8436
+ # Policy of which locations are allowed to create regional snapshots.
8437
+ # Corresponds to the JSON property `accessLocation`
8438
+ # @return [Google::Apis::ComputeBeta::DiskSettingsAccessLocation]
8439
+ attr_accessor :access_location
8440
+
8441
+ def initialize(**args)
8442
+ update!(**args)
8443
+ end
8444
+
8445
+ # Update properties of this object
8446
+ def update!(**args)
8447
+ @access_location = args[:access_location] if args.key?(:access_location)
8448
+ end
8449
+ end
8450
+
8451
+ #
8452
+ class DiskSettingsAccessLocation
8453
+ include Google::Apis::Core::Hashable
8454
+
8455
+ #
8456
+ # Corresponds to the JSON property `locations`
8457
+ # @return [Hash<String,Google::Apis::ComputeBeta::DiskSettingsAccessLocationAccessLocationPreference>]
8458
+ attr_accessor :locations
8459
+
8460
+ #
8461
+ # Corresponds to the JSON property `policy`
8462
+ # @return [String]
8463
+ attr_accessor :policy
8464
+
8465
+ def initialize(**args)
8466
+ update!(**args)
8467
+ end
8468
+
8469
+ # Update properties of this object
8470
+ def update!(**args)
8471
+ @locations = args[:locations] if args.key?(:locations)
8472
+ @policy = args[:policy] if args.key?(:policy)
8473
+ end
8474
+ end
8475
+
8476
+ #
8477
+ class DiskSettingsAccessLocationAccessLocationPreference
8478
+ include Google::Apis::Core::Hashable
8479
+
8480
+ #
8481
+ # Corresponds to the JSON property `region`
8482
+ # @return [String]
8483
+ attr_accessor :region
8484
+
8485
+ def initialize(**args)
8486
+ update!(**args)
8487
+ end
8488
+
8489
+ # Update properties of this object
8490
+ def update!(**args)
8491
+ @region = args[:region] if args.key?(:region)
8492
+ end
8493
+ end
8494
+
8314
8495
  # Represents a Disk Type resource. Google Compute Engine has two Disk Type
8315
8496
  # resources: * [Regional](/compute/docs/reference/rest/beta/regionDiskTypes) * [
8316
8497
  # Zonal](/compute/docs/reference/rest/beta/diskTypes) You can choose from a
@@ -38520,6 +38701,11 @@ module Google
38520
38701
  # @return [String]
38521
38702
  attr_accessor :collocation
38522
38703
 
38704
+ # Specifies the shape of the GPU slice, in slice based GPU families eg. A4X.
38705
+ # Corresponds to the JSON property `gpuTopology`
38706
+ # @return [String]
38707
+ attr_accessor :gpu_topology
38708
+
38523
38709
  # Specifies the number of max logical switches.
38524
38710
  # Corresponds to the JSON property `maxDistance`
38525
38711
  # @return [Fixnum]
@@ -38550,6 +38736,7 @@ module Google
38550
38736
  def update!(**args)
38551
38737
  @availability_domain_count = args[:availability_domain_count] if args.key?(:availability_domain_count)
38552
38738
  @collocation = args[:collocation] if args.key?(:collocation)
38739
+ @gpu_topology = args[:gpu_topology] if args.key?(:gpu_topology)
38553
38740
  @max_distance = args[:max_distance] if args.key?(:max_distance)
38554
38741
  @slice_count = args[:slice_count] if args.key?(:slice_count)
38555
38742
  @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
@@ -39019,6 +39206,16 @@ module Google
39019
39206
  class ResourcePolicyWorkloadPolicy
39020
39207
  include Google::Apis::Core::Hashable
39021
39208
 
39209
+ #
39210
+ # Corresponds to the JSON property `acceleratorTopology`
39211
+ # @return [String]
39212
+ attr_accessor :accelerator_topology
39213
+
39214
+ #
39215
+ # Corresponds to the JSON property `maxTopologyDistance`
39216
+ # @return [String]
39217
+ attr_accessor :max_topology_distance
39218
+
39022
39219
  #
39023
39220
  # Corresponds to the JSON property `type`
39024
39221
  # @return [String]
@@ -39030,6 +39227,8 @@ module Google
39030
39227
 
39031
39228
  # Update properties of this object
39032
39229
  def update!(**args)
39230
+ @accelerator_topology = args[:accelerator_topology] if args.key?(:accelerator_topology)
39231
+ @max_topology_distance = args[:max_topology_distance] if args.key?(:max_topology_distance)
39033
39232
  @type = args[:type] if args.key?(:type)
39034
39233
  end
39035
39234
  end
@@ -45332,6 +45531,12 @@ module Google
45332
45531
  # @return [String]
45333
45532
  attr_accessor :name
45334
45533
 
45534
+ # [Output Only] URL of the region where the snapshot resides. Only applicable
45535
+ # for regional snapshots.
45536
+ # Corresponds to the JSON property `region`
45537
+ # @return [String]
45538
+ attr_accessor :region
45539
+
45335
45540
  # Output only. Reserved for future use.
45336
45541
  # Corresponds to the JSON property `satisfiesPzi`
45337
45542
  # @return [Boolean]
@@ -45479,6 +45684,7 @@ module Google
45479
45684
  @licenses = args[:licenses] if args.key?(:licenses)
45480
45685
  @location_hint = args[:location_hint] if args.key?(:location_hint)
45481
45686
  @name = args[:name] if args.key?(:name)
45687
+ @region = args[:region] if args.key?(:region)
45482
45688
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
45483
45689
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
45484
45690
  @self_link = args[:self_link] if args.key?(:self_link)
@@ -45501,6 +45707,136 @@ module Google
45501
45707
  end
45502
45708
  end
45503
45709
 
45710
+ #
45711
+ class SnapshotAggregatedList
45712
+ include Google::Apis::Core::Hashable
45713
+
45714
+ #
45715
+ # Corresponds to the JSON property `etag`
45716
+ # @return [String]
45717
+ attr_accessor :etag
45718
+
45719
+ # [Output Only] Unique identifier for the resource; defined by the server.
45720
+ # Corresponds to the JSON property `id`
45721
+ # @return [String]
45722
+ attr_accessor :id
45723
+
45724
+ # A list of SnapshotsScopedList resources.
45725
+ # Corresponds to the JSON property `items`
45726
+ # @return [Hash<String,Google::Apis::ComputeBeta::SnapshotsScopedList>]
45727
+ attr_accessor :items
45728
+
45729
+ # [Output Only] Type of resource. Always compute#snapshotAggregatedList for
45730
+ # aggregated lists of snapshots.
45731
+ # Corresponds to the JSON property `kind`
45732
+ # @return [String]
45733
+ attr_accessor :kind
45734
+
45735
+ # [Output Only] This token allows you to get the next page of results for list
45736
+ # requests. If the number of results is larger than maxResults, use the
45737
+ # nextPageToken as a value for the query parameter pageToken in the next list
45738
+ # request. Subsequent list requests will have their own nextPageToken to
45739
+ # continue paging through the results.
45740
+ # Corresponds to the JSON property `nextPageToken`
45741
+ # @return [String]
45742
+ attr_accessor :next_page_token
45743
+
45744
+ # [Output Only] Server-defined URL for this resource.
45745
+ # Corresponds to the JSON property `selfLink`
45746
+ # @return [String]
45747
+ attr_accessor :self_link
45748
+
45749
+ # [Output Only] Unreachable resources.
45750
+ # Corresponds to the JSON property `unreachables`
45751
+ # @return [Array<String>]
45752
+ attr_accessor :unreachables
45753
+
45754
+ # [Output Only] Informational warning message.
45755
+ # Corresponds to the JSON property `warning`
45756
+ # @return [Google::Apis::ComputeBeta::SnapshotAggregatedList::Warning]
45757
+ attr_accessor :warning
45758
+
45759
+ def initialize(**args)
45760
+ update!(**args)
45761
+ end
45762
+
45763
+ # Update properties of this object
45764
+ def update!(**args)
45765
+ @etag = args[:etag] if args.key?(:etag)
45766
+ @id = args[:id] if args.key?(:id)
45767
+ @items = args[:items] if args.key?(:items)
45768
+ @kind = args[:kind] if args.key?(:kind)
45769
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
45770
+ @self_link = args[:self_link] if args.key?(:self_link)
45771
+ @unreachables = args[:unreachables] if args.key?(:unreachables)
45772
+ @warning = args[:warning] if args.key?(:warning)
45773
+ end
45774
+
45775
+ # [Output Only] Informational warning message.
45776
+ class Warning
45777
+ include Google::Apis::Core::Hashable
45778
+
45779
+ # [Output Only] A warning code, if applicable. For example, Compute Engine
45780
+ # returns NO_RESULTS_ON_PAGE if there are no results in the response.
45781
+ # Corresponds to the JSON property `code`
45782
+ # @return [String]
45783
+ attr_accessor :code
45784
+
45785
+ # [Output Only] Metadata about this warning in key: value format. For example: "
45786
+ # data": [ ` "key": "scope", "value": "zones/us-east1-d" `
45787
+ # Corresponds to the JSON property `data`
45788
+ # @return [Array<Google::Apis::ComputeBeta::SnapshotAggregatedList::Warning::Datum>]
45789
+ attr_accessor :data
45790
+
45791
+ # [Output Only] A human-readable description of the warning code.
45792
+ # Corresponds to the JSON property `message`
45793
+ # @return [String]
45794
+ attr_accessor :message
45795
+
45796
+ def initialize(**args)
45797
+ update!(**args)
45798
+ end
45799
+
45800
+ # Update properties of this object
45801
+ def update!(**args)
45802
+ @code = args[:code] if args.key?(:code)
45803
+ @data = args[:data] if args.key?(:data)
45804
+ @message = args[:message] if args.key?(:message)
45805
+ end
45806
+
45807
+ #
45808
+ class Datum
45809
+ include Google::Apis::Core::Hashable
45810
+
45811
+ # [Output Only] A key that provides more detail on the warning being returned.
45812
+ # For example, for warnings where there are no results in a list request for a
45813
+ # particular zone, this key might be scope and the key value might be the zone
45814
+ # name. Other examples might be a key indicating a deprecated resource and a
45815
+ # suggested replacement, or a warning about invalid network settings (for
45816
+ # example, if an instance attempts to perform IP forwarding but is not enabled
45817
+ # for IP forwarding).
45818
+ # Corresponds to the JSON property `key`
45819
+ # @return [String]
45820
+ attr_accessor :key
45821
+
45822
+ # [Output Only] A warning data value corresponding to the key.
45823
+ # Corresponds to the JSON property `value`
45824
+ # @return [String]
45825
+ attr_accessor :value
45826
+
45827
+ def initialize(**args)
45828
+ update!(**args)
45829
+ end
45830
+
45831
+ # Update properties of this object
45832
+ def update!(**args)
45833
+ @key = args[:key] if args.key?(:key)
45834
+ @value = args[:value] if args.key?(:value)
45835
+ end
45836
+ end
45837
+ end
45838
+ end
45839
+
45504
45840
  # Contains a list of Snapshot resources.
45505
45841
  class SnapshotList
45506
45842
  include Google::Apis::Core::Hashable
@@ -45622,6 +45958,12 @@ module Google
45622
45958
  class SnapshotSettings
45623
45959
  include Google::Apis::Core::Hashable
45624
45960
 
45961
+ # (Regional snapshots use only)Policy of which location is allowed to access
45962
+ # snapshot.
45963
+ # Corresponds to the JSON property `accessLocation`
45964
+ # @return [Google::Apis::ComputeBeta::SnapshotSettingsAccessLocation]
45965
+ attr_accessor :access_location
45966
+
45625
45967
  # Policy of which storage location is going to be resolved, and additional data
45626
45968
  # that particularizes how the policy is going to be carried out.
45627
45969
  # Corresponds to the JSON property `storageLocation`
@@ -45634,10 +45976,55 @@ module Google
45634
45976
 
45635
45977
  # Update properties of this object
45636
45978
  def update!(**args)
45979
+ @access_location = args[:access_location] if args.key?(:access_location)
45637
45980
  @storage_location = args[:storage_location] if args.key?(:storage_location)
45638
45981
  end
45639
45982
  end
45640
45983
 
45984
+ #
45985
+ class SnapshotSettingsAccessLocation
45986
+ include Google::Apis::Core::Hashable
45987
+
45988
+ # List of regions that can restore a regional snapshot from the current region
45989
+ # Corresponds to the JSON property `locations`
45990
+ # @return [Hash<String,Google::Apis::ComputeBeta::SnapshotSettingsAccessLocationAccessLocationPreference>]
45991
+ attr_accessor :locations
45992
+
45993
+ # Policy of which location is allowed to access snapshot.
45994
+ # Corresponds to the JSON property `policy`
45995
+ # @return [String]
45996
+ attr_accessor :policy
45997
+
45998
+ def initialize(**args)
45999
+ update!(**args)
46000
+ end
46001
+
46002
+ # Update properties of this object
46003
+ def update!(**args)
46004
+ @locations = args[:locations] if args.key?(:locations)
46005
+ @policy = args[:policy] if args.key?(:policy)
46006
+ end
46007
+ end
46008
+
46009
+ # A structure for specifying an allowed target region.
46010
+ class SnapshotSettingsAccessLocationAccessLocationPreference
46011
+ include Google::Apis::Core::Hashable
46012
+
46013
+ # Accessible region name
46014
+ # Corresponds to the JSON property `region`
46015
+ # @return [String]
46016
+ attr_accessor :region
46017
+
46018
+ def initialize(**args)
46019
+ update!(**args)
46020
+ end
46021
+
46022
+ # Update properties of this object
46023
+ def update!(**args)
46024
+ @region = args[:region] if args.key?(:region)
46025
+ end
46026
+ end
46027
+
45641
46028
  #
45642
46029
  class SnapshotSettingsStorageLocationSettings
45643
46030
  include Google::Apis::Core::Hashable
@@ -45685,6 +46072,97 @@ module Google
45685
46072
  end
45686
46073
  end
45687
46074
 
46075
+ #
46076
+ class SnapshotsScopedList
46077
+ include Google::Apis::Core::Hashable
46078
+
46079
+ # [Output Only] A list of snapshots contained in this scope.
46080
+ # Corresponds to the JSON property `snapshots`
46081
+ # @return [Array<Google::Apis::ComputeBeta::Snapshot>]
46082
+ attr_accessor :snapshots
46083
+
46084
+ # [Output Only] Informational warning which replaces the list of snapshots when
46085
+ # the list is empty.
46086
+ # Corresponds to the JSON property `warning`
46087
+ # @return [Google::Apis::ComputeBeta::SnapshotsScopedList::Warning]
46088
+ attr_accessor :warning
46089
+
46090
+ def initialize(**args)
46091
+ update!(**args)
46092
+ end
46093
+
46094
+ # Update properties of this object
46095
+ def update!(**args)
46096
+ @snapshots = args[:snapshots] if args.key?(:snapshots)
46097
+ @warning = args[:warning] if args.key?(:warning)
46098
+ end
46099
+
46100
+ # [Output Only] Informational warning which replaces the list of snapshots when
46101
+ # the list is empty.
46102
+ class Warning
46103
+ include Google::Apis::Core::Hashable
46104
+
46105
+ # [Output Only] A warning code, if applicable. For example, Compute Engine
46106
+ # returns NO_RESULTS_ON_PAGE if there are no results in the response.
46107
+ # Corresponds to the JSON property `code`
46108
+ # @return [String]
46109
+ attr_accessor :code
46110
+
46111
+ # [Output Only] Metadata about this warning in key: value format. For example: "
46112
+ # data": [ ` "key": "scope", "value": "zones/us-east1-d" `
46113
+ # Corresponds to the JSON property `data`
46114
+ # @return [Array<Google::Apis::ComputeBeta::SnapshotsScopedList::Warning::Datum>]
46115
+ attr_accessor :data
46116
+
46117
+ # [Output Only] A human-readable description of the warning code.
46118
+ # Corresponds to the JSON property `message`
46119
+ # @return [String]
46120
+ attr_accessor :message
46121
+
46122
+ def initialize(**args)
46123
+ update!(**args)
46124
+ end
46125
+
46126
+ # Update properties of this object
46127
+ def update!(**args)
46128
+ @code = args[:code] if args.key?(:code)
46129
+ @data = args[:data] if args.key?(:data)
46130
+ @message = args[:message] if args.key?(:message)
46131
+ end
46132
+
46133
+ #
46134
+ class Datum
46135
+ include Google::Apis::Core::Hashable
46136
+
46137
+ # [Output Only] A key that provides more detail on the warning being returned.
46138
+ # For example, for warnings where there are no results in a list request for a
46139
+ # particular zone, this key might be scope and the key value might be the zone
46140
+ # name. Other examples might be a key indicating a deprecated resource and a
46141
+ # suggested replacement, or a warning about invalid network settings (for
46142
+ # example, if an instance attempts to perform IP forwarding but is not enabled
46143
+ # for IP forwarding).
46144
+ # Corresponds to the JSON property `key`
46145
+ # @return [String]
46146
+ attr_accessor :key
46147
+
46148
+ # [Output Only] A warning data value corresponding to the key.
46149
+ # Corresponds to the JSON property `value`
46150
+ # @return [String]
46151
+ attr_accessor :value
46152
+
46153
+ def initialize(**args)
46154
+ update!(**args)
46155
+ end
46156
+
46157
+ # Update properties of this object
46158
+ def update!(**args)
46159
+ @key = args[:key] if args.key?(:key)
46160
+ @value = args[:value] if args.key?(:value)
46161
+ end
46162
+ end
46163
+ end
46164
+ end
46165
+
45688
46166
  #
45689
46167
  class SourceDiskEncryptionKey
45690
46168
  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.110.0"
19
+ GEM_VERSION = "0.111.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250224"
25
+ REVISION = "20250302"
26
26
  end
27
27
  end
28
28
  end