google-apis-compute_alpha 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97128747997c9a29ab7aeabea08c565407a5cca6333a3b039067684230e32185
4
- data.tar.gz: b0c7f2a430bf0cf2527dd2403361b765d71b1800e55da5a7e4617b3f3e9e1d77
3
+ metadata.gz: 3324edf66d8d2452916ae34f3c091204e902e64ff91243e25530ef2953f03ba1
4
+ data.tar.gz: d79673999be98a3a287b6a6d32c173092b154e4f514e23da70b6f4f4604ac181
5
5
  SHA512:
6
- metadata.gz: 1ee0888344aa2949363a1f83e8311492e43221ffb9ec5d46a76f0149186c4842fd5d2438551f3225b0d9d888edad2957ecb7831d65b8bc3c1262fa9024dc9632
7
- data.tar.gz: 6ed2fa8dd4310f4244a10fecbc58f85cdff68e2f7a451fd020e6b884c1164e1f0558d20d9a209c671cbbbc24703108557be9180f0ed4e9cad47d8a8b5a63046c
6
+ metadata.gz: 7991e0a5da321f39bea567a578e044dbac526f6dbe6970336b838a26eb83c7cea7ed48b8ba7e76b279d8601190a944078ca4a7bb492ee7e9376ee23069fbbea8
7
+ data.tar.gz: '01699fd3705f16f3845657e6c2af924dc4bdf5a6370bbd0c98ff1b433c6eb7d06c3ed6b682f55c2891d8cf85d65eccb5701f7dda8911fcb71d6d7adbea56c0da'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.4.0 (2021-02-24)
4
+
5
+ * Regenerated from discovery document revision 20210209
6
+
3
7
  ### v0.3.0 (2021-02-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20210129
@@ -3025,10 +3025,15 @@ module Google
3025
3025
  # @return [String]
3026
3026
  attr_accessor :cache_mode
3027
3027
 
3028
- # Specifies a separate client (e.g. browser client) TTL, separate from the TTL
3029
- # for Cloud CDN's edge caches. Leaving this empty will use the same cache TTL
3030
- # for both Cloud CDN and the client-facing response. The maximum allowed value
3031
- # is 86400s (1 day).
3028
+ # Specifies a separate client (e.g. browser client) maximum TTL. This is used to
3029
+ # clamp the max-age (or Expires) value sent to the client. With FORCE_CACHE_ALL,
3030
+ # the lesser of client_ttl and default_ttl is used for the response max-age
3031
+ # directive, along with a "public" directive. For cacheable content in
3032
+ # CACHE_ALL_STATIC mode, client_ttl clamps the max-age from the origin (if
3033
+ # specified), or else sets the response max-age directive to the lesser of the
3034
+ # client_ttl and default_ttl, and also ensures a "public" cache-control
3035
+ # directive is present. If a client TTL is not specified, a default value (1
3036
+ # hour) will be used. The maximum allowed value is 86400s (1 day).
3032
3037
  # Corresponds to the JSON property `clientTtl`
3033
3038
  # @return [Fixnum]
3034
3039
  attr_accessor :client_ttl
@@ -3823,10 +3828,15 @@ module Google
3823
3828
  # @return [String]
3824
3829
  attr_accessor :cache_mode
3825
3830
 
3826
- # Specifies a separate client (e.g. browser client) TTL, separate from the TTL
3827
- # for Cloud CDN's edge caches. Leaving this empty will use the same cache TTL
3828
- # for both Cloud CDN and the client-facing response. The maximum allowed value
3829
- # is 86400s (1 day).
3831
+ # Specifies a separate client (e.g. browser client) maximum TTL. This is used to
3832
+ # clamp the max-age (or Expires) value sent to the client. With FORCE_CACHE_ALL,
3833
+ # the lesser of client_ttl and default_ttl is used for the response max-age
3834
+ # directive, along with a "public" directive. For cacheable content in
3835
+ # CACHE_ALL_STATIC mode, client_ttl clamps the max-age from the origin (if
3836
+ # specified), or else sets the response max-age directive to the lesser of the
3837
+ # client_ttl and default_ttl, and also ensures a "public" cache-control
3838
+ # directive is present. If a client TTL is not specified, a default value (1
3839
+ # hour) will be used. The maximum allowed value is 86400s (1 day).
3830
3840
  # Corresponds to the JSON property `clientTtl`
3831
3841
  # @return [Fixnum]
3832
3842
  attr_accessor :client_ttl
@@ -6235,8 +6245,13 @@ module Google
6235
6245
  # The source disk used to create this disk. You can provide this as a partial or
6236
6246
  # full URL to the resource. For example, the following are valid values:
6237
6247
  # - https://www.googleapis.com/compute/v1/projects/project/zones/zone/disks/disk
6248
+ #
6249
+ # - https://www.googleapis.com/compute/v1/projects/project/regions/region/disks/
6250
+ # disk
6238
6251
  # - projects/project/zones/zone/disks/disk
6252
+ # - projects/project/regions/region/disks/disk
6239
6253
  # - zones/zone/disks/disk
6254
+ # - regions/region/disks/disk
6240
6255
  # Corresponds to the JSON property `sourceDisk`
6241
6256
  # @return [String]
6242
6257
  attr_accessor :source_disk
@@ -10414,11 +10429,12 @@ module Google
10414
10429
  attr_accessor :log_config
10415
10430
 
10416
10431
  # Name of the resource. Provided by the client when the resource is created. The
10417
- # name must be 1-63 characters long, and comply with RFC1035. Specifically, the
10418
- # name must be 1-63 characters long and match the regular expression `[a-z]([-a-
10419
- # z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter,
10420
- # and all following characters must be a dash, lowercase letter, or digit,
10421
- # except the last character, which cannot be a dash.
10432
+ # name must be 1-63 characters long, and comply with RFC1035. For example, a
10433
+ # name that is 1-63 characters long, matches the regular expression `[a-z]([-a-
10434
+ # z0-9]*[a-z0-9])?`, and otherwise complies with RFC1035. This regular
10435
+ # expression describes a name where the first character is a lowercase letter,
10436
+ # and all following characters are a dash, lowercase letter, or digit, except
10437
+ # the last character, which isn't a dash.
10422
10438
  # Corresponds to the JSON property `name`
10423
10439
  # @return [String]
10424
10440
  attr_accessor :name
@@ -17435,8 +17451,13 @@ module Google
17435
17451
  # created. This can be a full or valid partial URL. For example, the following
17436
17452
  # are valid values:
17437
17453
  # - https://www.googleapis.com/compute/v1/projects/project/zones/zone/disks/disk
17454
+ #
17455
+ # - https://www.googleapis.com/compute/v1/projects/project/regions/region/disks/
17456
+ # disk
17438
17457
  # - projects/project/zones/zone/disks/disk
17458
+ # - projects/project/regions/region/disks/disk
17439
17459
  # - zones/zone/disks/disk
17460
+ # - regions/region/disks/disk
17440
17461
  # Corresponds to the JSON property `sourceDisk`
17441
17462
  # @return [String]
17442
17463
  attr_accessor :source_disk
@@ -25623,6 +25644,12 @@ module Google
25623
25644
  # @return [String]
25624
25645
  attr_accessor :name
25625
25646
 
25647
+ # [Output Only] An ID that represents a group of operations, such as when a
25648
+ # group of operations results from a `bulkInsert` API request.
25649
+ # Corresponds to the JSON property `operationGroupId`
25650
+ # @return [String]
25651
+ attr_accessor :operation_group_id
25652
+
25626
25653
  # [Output Only] The type of operation, such as `insert`, `update`, or `delete`,
25627
25654
  # and so on.
25628
25655
  # Corresponds to the JSON property `operationType`
@@ -25720,6 +25747,7 @@ module Google
25720
25747
  @kind = args[:kind] if args.key?(:kind)
25721
25748
  @metadata = args[:metadata] if args.key?(:metadata)
25722
25749
  @name = args[:name] if args.key?(:name)
25750
+ @operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
25723
25751
  @operation_type = args[:operation_type] if args.key?(:operation_type)
25724
25752
  @progress = args[:progress] if args.key?(:progress)
25725
25753
  @region = args[:region] if args.key?(:region)
@@ -27485,6 +27513,18 @@ module Google
27485
27513
  # @return [Hash<String,Google::Apis::ComputeAlpha::PreservedStatePreservedDisk>]
27486
27514
  attr_accessor :disks
27487
27515
 
27516
+ # Preserved external IPs defined for this instance. This map is keyed with the
27517
+ # name of the network interface.
27518
+ # Corresponds to the JSON property `externalIPs`
27519
+ # @return [Hash<String,Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp>]
27520
+ attr_accessor :external_i_ps
27521
+
27522
+ # Preserved internal IPs defined for this instance. This map is keyed with the
27523
+ # name of the network interface.
27524
+ # Corresponds to the JSON property `internalIPs`
27525
+ # @return [Hash<String,Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp>]
27526
+ attr_accessor :internal_i_ps
27527
+
27488
27528
  # Preserved metadata defined for this instance.
27489
27529
  # Corresponds to the JSON property `metadata`
27490
27530
  # @return [Hash<String,String>]
@@ -27497,6 +27537,8 @@ module Google
27497
27537
  # Update properties of this object
27498
27538
  def update!(**args)
27499
27539
  @disks = args[:disks] if args.key?(:disks)
27540
+ @external_i_ps = args[:external_i_ps] if args.key?(:external_i_ps)
27541
+ @internal_i_ps = args[:internal_i_ps] if args.key?(:internal_i_ps)
27500
27542
  @metadata = args[:metadata] if args.key?(:metadata)
27501
27543
  end
27502
27544
  end
@@ -27538,6 +27580,60 @@ module Google
27538
27580
  end
27539
27581
  end
27540
27582
 
27583
+ #
27584
+ class PreservedStatePreservedNetworkIp
27585
+ include Google::Apis::Core::Hashable
27586
+
27587
+ # These stateful IPs will never be released during autohealing, update or VM
27588
+ # instance recreate operations. This flag is used to configure if the IP
27589
+ # reservation should be deleted after it is no longer used by the group, e.g.
27590
+ # when the given instance or the whole group is deleted.
27591
+ # Corresponds to the JSON property `autoDelete`
27592
+ # @return [String]
27593
+ attr_accessor :auto_delete
27594
+
27595
+ # Ip address representation
27596
+ # Corresponds to the JSON property `ipAddress`
27597
+ # @return [Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIpIpAddress]
27598
+ attr_accessor :ip_address
27599
+
27600
+ def initialize(**args)
27601
+ update!(**args)
27602
+ end
27603
+
27604
+ # Update properties of this object
27605
+ def update!(**args)
27606
+ @auto_delete = args[:auto_delete] if args.key?(:auto_delete)
27607
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
27608
+ end
27609
+ end
27610
+
27611
+ #
27612
+ class PreservedStatePreservedNetworkIpIpAddress
27613
+ include Google::Apis::Core::Hashable
27614
+
27615
+ # The URL of the reservation for this IP address.
27616
+ # Corresponds to the JSON property `address`
27617
+ # @return [String]
27618
+ attr_accessor :address
27619
+
27620
+ # An IPv4 internal network address to assign to the instance for this network
27621
+ # interface.
27622
+ # Corresponds to the JSON property `literal`
27623
+ # @return [String]
27624
+ attr_accessor :literal
27625
+
27626
+ def initialize(**args)
27627
+ update!(**args)
27628
+ end
27629
+
27630
+ # Update properties of this object
27631
+ def update!(**args)
27632
+ @address = args[:address] if args.key?(:address)
27633
+ @literal = args[:literal] if args.key?(:literal)
27634
+ end
27635
+ end
27636
+
27541
27637
  # [Deprecated] All fields defined in a principal are ANDed.
27542
27638
  class Principal
27543
27639
  include Google::Apis::Core::Hashable
@@ -29559,9 +29655,9 @@ module Google
29559
29655
  # @return [Array<String>]
29560
29656
  attr_accessor :instances
29561
29657
 
29562
- # If false and the request contains references to instances that cannot be
29563
- # deleted (that is, instances that are not in the group or are already deleted),
29564
- # the request fails. Otherwise, such instances are ignored.
29658
+ # Skip instances which cannot be deleted (instances not belonging to this
29659
+ # managed group, already being deleted or being abandoned). If `false`, fail
29660
+ # whole flow, if such instance is passed.
29565
29661
  # Corresponds to the JSON property `skipInapplicableInstances`
29566
29662
  # @return [Boolean]
29567
29663
  attr_accessor :skip_inapplicable_instances
@@ -37301,6 +37397,20 @@ module Google
37301
37397
  # @return [Hash<String,Google::Apis::ComputeAlpha::StatefulPolicyPreservedStateDiskDevice>]
37302
37398
  attr_accessor :disks
37303
37399
 
37400
+ # External network IPs assigned to the instances that will be preserved on
37401
+ # instance delete, update, etc. This map is keyed with the network interface
37402
+ # name.
37403
+ # Corresponds to the JSON property `externalIPs`
37404
+ # @return [Hash<String,Google::Apis::ComputeAlpha::StatefulPolicyPreservedStateNetworkIp>]
37405
+ attr_accessor :external_i_ps
37406
+
37407
+ # Internal network IPs assigned to the instances that will be preserved on
37408
+ # instance delete, update, etc. This map is keyed with the network interface
37409
+ # name.
37410
+ # Corresponds to the JSON property `internalIPs`
37411
+ # @return [Hash<String,Google::Apis::ComputeAlpha::StatefulPolicyPreservedStateNetworkIp>]
37412
+ attr_accessor :internal_i_ps
37413
+
37304
37414
  def initialize(**args)
37305
37415
  update!(**args)
37306
37416
  end
@@ -37308,6 +37418,8 @@ module Google
37308
37418
  # Update properties of this object
37309
37419
  def update!(**args)
37310
37420
  @disks = args[:disks] if args.key?(:disks)
37421
+ @external_i_ps = args[:external_i_ps] if args.key?(:external_i_ps)
37422
+ @internal_i_ps = args[:internal_i_ps] if args.key?(:internal_i_ps)
37311
37423
  end
37312
37424
  end
37313
37425
 
@@ -37334,6 +37446,28 @@ module Google
37334
37446
  end
37335
37447
  end
37336
37448
 
37449
+ #
37450
+ class StatefulPolicyPreservedStateNetworkIp
37451
+ include Google::Apis::Core::Hashable
37452
+
37453
+ # These stateful IPs will never be released during autohealing, update or VM
37454
+ # instance recreate operations. This flag is used to configure if the IP
37455
+ # reservation should be deleted after it is no longer used by the group, e.g.
37456
+ # when the given instance or the whole group is deleted.
37457
+ # Corresponds to the JSON property `autoDelete`
37458
+ # @return [String]
37459
+ attr_accessor :auto_delete
37460
+
37461
+ def initialize(**args)
37462
+ update!(**args)
37463
+ end
37464
+
37465
+ # Update properties of this object
37466
+ def update!(**args)
37467
+ @auto_delete = args[:auto_delete] if args.key?(:auto_delete)
37468
+ end
37469
+ end
37470
+
37337
37471
  # Represents a Subnetwork resource.
37338
37472
  # A subnetwork (also known as a subnet) is a logical partition of a Virtual
37339
37473
  # Private Cloud network with one primary IP range and zero or more secondary IP
@@ -37443,9 +37577,9 @@ module Google
37443
37577
  # The range of internal addresses that are owned by this subnetwork. Provide
37444
37578
  # this property when you create the subnetwork. For example, 10.0.0.0/8 or 100.
37445
37579
  # 64.0.0/10. Ranges must be unique and non-overlapping within a network. Only
37446
- # IPv4 is supported. This field is set at resource creation time. This may be a
37447
- # RFC 1918 IP range, or a privately routed, non-RFC 1918 IP range, not belonging
37448
- # to Google. The range can be expanded after creation using expandIpCidrRange.
37580
+ # IPv4 is supported. This field is set at resource creation time. The range can
37581
+ # be any range listed in the Valid ranges list. The range can be expanded after
37582
+ # creation using expandIpCidrRange.
37449
37583
  # Corresponds to the JSON property `ipCidrRange`
37450
37584
  # @return [String]
37451
37585
  attr_accessor :ip_cidr_range
@@ -37951,8 +38085,8 @@ module Google
37951
38085
  # The range of IP addresses belonging to this subnetwork secondary range.
37952
38086
  # Provide this property when you create the subnetwork. Ranges must be unique
37953
38087
  # and non-overlapping with all primary and secondary IP ranges within a network.
37954
- # Only IPv4 is supported. This may be a RFC 1918 IP range, or a privately, non-
37955
- # RFC 1918 IP range, not belonging to Google.
38088
+ # Only IPv4 is supported. The range can be any range listed in the Valid ranges
38089
+ # list.
37956
38090
  # Corresponds to the JSON property `ipCidrRange`
37957
38091
  # @return [String]
37958
38092
  attr_accessor :ip_cidr_range
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeAlpha
18
18
  # Version of the google-apis-compute_alpha gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210129"
25
+ REVISION = "20210209"
26
26
  end
27
27
  end
28
28
  end
@@ -3430,6 +3430,18 @@ module Google
3430
3430
  include Google::Apis::Core::JsonObjectSupport
3431
3431
  end
3432
3432
 
3433
+ class PreservedStatePreservedNetworkIp
3434
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3435
+
3436
+ include Google::Apis::Core::JsonObjectSupport
3437
+ end
3438
+
3439
+ class PreservedStatePreservedNetworkIpIpAddress
3440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3441
+
3442
+ include Google::Apis::Core::JsonObjectSupport
3443
+ end
3444
+
3433
3445
  class Principal
3434
3446
  class Representation < Google::Apis::Core::JsonRepresentation; end
3435
3447
 
@@ -4816,6 +4828,12 @@ module Google
4816
4828
  include Google::Apis::Core::JsonObjectSupport
4817
4829
  end
4818
4830
 
4831
+ class StatefulPolicyPreservedStateNetworkIp
4832
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4833
+
4834
+ include Google::Apis::Core::JsonObjectSupport
4835
+ end
4836
+
4819
4837
  class Subnetwork
4820
4838
  class Representation < Google::Apis::Core::JsonRepresentation; end
4821
4839
 
@@ -11917,6 +11935,7 @@ module Google
11917
11935
  property :metadata, as: 'metadata', class: Google::Apis::ComputeAlpha::Any, decorator: Google::Apis::ComputeAlpha::Any::Representation
11918
11936
 
11919
11937
  property :name, as: 'name'
11938
+ property :operation_group_id, as: 'operationGroupId'
11920
11939
  property :operation_type, as: 'operationType'
11921
11940
  property :progress, as: 'progress'
11922
11941
  property :region, as: 'region'
@@ -12381,6 +12400,10 @@ module Google
12381
12400
  class Representation < Google::Apis::Core::JsonRepresentation
12382
12401
  hash :disks, as: 'disks', class: Google::Apis::ComputeAlpha::PreservedStatePreservedDisk, decorator: Google::Apis::ComputeAlpha::PreservedStatePreservedDisk::Representation
12383
12402
 
12403
+ hash :external_i_ps, as: 'externalIPs', class: Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp, decorator: Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp::Representation
12404
+
12405
+ hash :internal_i_ps, as: 'internalIPs', class: Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp, decorator: Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIp::Representation
12406
+
12384
12407
  hash :metadata, as: 'metadata'
12385
12408
  end
12386
12409
  end
@@ -12394,6 +12417,23 @@ module Google
12394
12417
  end
12395
12418
  end
12396
12419
 
12420
+ class PreservedStatePreservedNetworkIp
12421
+ # @private
12422
+ class Representation < Google::Apis::Core::JsonRepresentation
12423
+ property :auto_delete, as: 'autoDelete'
12424
+ property :ip_address, as: 'ipAddress', class: Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIpIpAddress, decorator: Google::Apis::ComputeAlpha::PreservedStatePreservedNetworkIpIpAddress::Representation
12425
+
12426
+ end
12427
+ end
12428
+
12429
+ class PreservedStatePreservedNetworkIpIpAddress
12430
+ # @private
12431
+ class Representation < Google::Apis::Core::JsonRepresentation
12432
+ property :address, as: 'address'
12433
+ property :literal, as: 'literal'
12434
+ end
12435
+ end
12436
+
12397
12437
  class Principal
12398
12438
  # @private
12399
12439
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -14885,6 +14925,10 @@ module Google
14885
14925
  class Representation < Google::Apis::Core::JsonRepresentation
14886
14926
  hash :disks, as: 'disks', class: Google::Apis::ComputeAlpha::StatefulPolicyPreservedStateDiskDevice, decorator: Google::Apis::ComputeAlpha::StatefulPolicyPreservedStateDiskDevice::Representation
14887
14927
 
14928
+ hash :external_i_ps, as: 'externalIPs', class: Google::Apis::ComputeAlpha::StatefulPolicyPreservedStateNetworkIp, decorator: Google::Apis::ComputeAlpha::StatefulPolicyPreservedStateNetworkIp::Representation
14929
+
14930
+ hash :internal_i_ps, as: 'internalIPs', class: Google::Apis::ComputeAlpha::StatefulPolicyPreservedStateNetworkIp, decorator: Google::Apis::ComputeAlpha::StatefulPolicyPreservedStateNetworkIp::Representation
14931
+
14888
14932
  end
14889
14933
  end
14890
14934
 
@@ -14895,6 +14939,13 @@ module Google
14895
14939
  end
14896
14940
  end
14897
14941
 
14942
+ class StatefulPolicyPreservedStateNetworkIp
14943
+ # @private
14944
+ class Representation < Google::Apis::Core::JsonRepresentation
14945
+ property :auto_delete, as: 'autoDelete'
14946
+ end
14947
+ end
14948
+
14898
14949
  class Subnetwork
14899
14950
  # @private
14900
14951
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-22 00:00:00.000000000 Z
11
+ date: 2021-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-compute_alpha/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.4.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-compute_alpha
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.11
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Compute Engine API Alpha