google-apis-compute_alpha 0.52.0 → 0.53.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: 0bd47da97f12a3cf06160dde98fe399cf82b4c04b0d4519873744d5478ebc37b
4
- data.tar.gz: f8e3103cc99d5f29b840b8aca208c385c9bd76ba9033bee69e75e79e28bd89fe
3
+ metadata.gz: 22472686a7a11f7632da139457d1029569f0bbe25730b2f02f923fa53b7ff359
4
+ data.tar.gz: fde67f7afb67c0f47a8e90da7f79e5aac605868025e6b9d399dbbd0c61a9ad67
5
5
  SHA512:
6
- metadata.gz: 6f80e44a1d69bc00c88710bc9f5a462930f20988a7ce31b700eb43b7e49dfdf1920203dd5c30d93b768f1f3ca6f9aa675cde0e95172f0ef859731337dbf5c9f5
7
- data.tar.gz: 73db0d8cd5fde56b808a88a781eea61316f5652354ebc22aedeb4e1acac0b049d7a3bbfb3351ea789216d81dcc8e4e8fa6c79dcc7dde6c9ba97f8bc1ece3c5d4
6
+ metadata.gz: 58f8f9a708000f2d1cc00918f09268399d29d0e8acaed2c16a6608c6b8a37f55951e7eb4e7e6230afbcff45e304f7a44e99591ebf1d2268a13cf2e14cd2688e1
7
+ data.tar.gz: 637f95fa8ce747e4316b5564896984e1965665f5ee31a6de61a7f0ece0ddc1b3c25e7e083915fa4f8df89ca997fa48957217a90f5130112af59abe53936e257f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.53.0 (2022-11-10)
4
+
5
+ * Regenerated from discovery document revision 20221101
6
+
3
7
  ### v0.52.0 (2022-11-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20221026
@@ -36376,6 +36376,11 @@ module Google
36376
36376
  # @return [String]
36377
36377
  attr_accessor :locality
36378
36378
 
36379
+ # Specifies the number of max logical switches.
36380
+ # Corresponds to the JSON property `maxDistance`
36381
+ # @return [Fixnum]
36382
+ attr_accessor :max_distance
36383
+
36379
36384
  # Scope specifies the availability domain to which the VMs should be spread.
36380
36385
  # Corresponds to the JSON property `scope`
36381
36386
  # @return [String]
@@ -36407,6 +36412,7 @@ module Google
36407
36412
  @availability_domain_count = args[:availability_domain_count] if args.key?(:availability_domain_count)
36408
36413
  @collocation = args[:collocation] if args.key?(:collocation)
36409
36414
  @locality = args[:locality] if args.key?(:locality)
36415
+ @max_distance = args[:max_distance] if args.key?(:max_distance)
36410
36416
  @scope = args[:scope] if args.key?(:scope)
36411
36417
  @style = args[:style] if args.key?(:style)
36412
36418
  @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
@@ -41745,6 +41751,11 @@ module Google
41745
41751
  # @return [Fixnum]
41746
41752
  attr_accessor :connection_limit
41747
41753
 
41754
+ # The network URL for the network to set the limit for.
41755
+ # Corresponds to the JSON property `networkUrl`
41756
+ # @return [String]
41757
+ attr_accessor :network_url
41758
+
41748
41759
  # The project id or number for the project to set the limit for.
41749
41760
  # Corresponds to the JSON property `projectIdOrNum`
41750
41761
  # @return [String]
@@ -41757,6 +41768,7 @@ module Google
41757
41768
  # Update properties of this object
41758
41769
  def update!(**args)
41759
41770
  @connection_limit = args[:connection_limit] if args.key?(:connection_limit)
41771
+ @network_url = args[:network_url] if args.key?(:network_url)
41760
41772
  @project_id_or_num = args[:project_id_or_num] if args.key?(:project_id_or_num)
41761
41773
  end
41762
41774
  end
@@ -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.52.0"
19
+ GEM_VERSION = "0.53.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221026"
25
+ REVISION = "20221101"
26
26
  end
27
27
  end
28
28
  end
@@ -15772,6 +15772,7 @@ module Google
15772
15772
  property :availability_domain_count, as: 'availabilityDomainCount'
15773
15773
  property :collocation, as: 'collocation'
15774
15774
  property :locality, as: 'locality'
15775
+ property :max_distance, as: 'maxDistance'
15775
15776
  property :scope, as: 'scope'
15776
15777
  property :style, as: 'style'
15777
15778
  property :tpu_topology, as: 'tpuTopology'
@@ -17090,6 +17091,7 @@ module Google
17090
17091
  # @private
17091
17092
  class Representation < Google::Apis::Core::JsonRepresentation
17092
17093
  property :connection_limit, as: 'connectionLimit'
17094
+ property :network_url, as: 'networkUrl'
17093
17095
  property :project_id_or_num, as: 'projectIdOrNum'
17094
17096
  end
17095
17097
  end
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.52.0
4
+ version: 0.53.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: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2022-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.52.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.53.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
63
63
  post_install_message:
64
64
  rdoc_options: []