google-apis-compute_beta 0.103.0 → 0.104.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: cb20b2a9a08904f6ad39ec406cf7d55226c17b5d8951be1567e535a0d4b178d7
4
- data.tar.gz: 1e1980850eaac250a057daeb6cc8e22c64530d6552a7a7eeab22e8be824d75b3
3
+ metadata.gz: 8f1986be6c2ead7fcf26dac26d40a50922acad74fff17f9f6495614e16b04598
4
+ data.tar.gz: 790deaab49d28cb051e4f7a32411803f5f9bc7a1b9353a128bfe1fcab2b30abc
5
5
  SHA512:
6
- metadata.gz: 9f63ea7c0a2da27b2fbfd207c0d802cfdfc27ebbee1a0c1ddee0832e1ecef25031e912699fe5deebbe41139392656db74cd1f9348a595a82ba1920867ac1e69f
7
- data.tar.gz: 4ce842aabec2c2865c2d72e52e3fa49299326e03c1dd88bf244903b59823438462b426ebe9ea323e395cd85df4c77855d27c8c761a2dbb296f2111244e7f7ea3
6
+ metadata.gz: 73d1b028b730c411b7449c5985d568f806bae5ab3149ce689ddf0bc45e059ee4fe4ae7023a7b2b6647347870795874865a55565b6c2cf00520bf314bb3d016d7
7
+ data.tar.gz: 5438ba216f11a17f7c3702acca6e1dfca49c5e217f43f2f77d58796920a6ddf971e52df6234eaa8add4eb21949e5b8d5a646d5e6d77ad11cd10cd628286825ee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.104.0 (2024-06-16)
4
+
5
+ * Regenerated from discovery document revision 20240604
6
+
3
7
  ### v0.103.0 (2024-06-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20240526
@@ -1145,6 +1145,11 @@ module Google
1145
1145
  attr_accessor :enable_uefi_networking
1146
1146
  alias_method :enable_uefi_networking?, :enable_uefi_networking
1147
1147
 
1148
+ # Type of Performance Monitoring Unit requested on instance.
1149
+ # Corresponds to the JSON property `performanceMonitoringUnit`
1150
+ # @return [String]
1151
+ attr_accessor :performance_monitoring_unit
1152
+
1148
1153
  # The number of threads per physical core. To disable simultaneous
1149
1154
  # multithreading (SMT) set this to 1. If unset, the maximum number of threads
1150
1155
  # supported per core by the underlying processor is assumed.
@@ -1168,6 +1173,7 @@ module Google
1168
1173
  def update!(**args)
1169
1174
  @enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
1170
1175
  @enable_uefi_networking = args[:enable_uefi_networking] if args.key?(:enable_uefi_networking)
1176
+ @performance_monitoring_unit = args[:performance_monitoring_unit] if args.key?(:performance_monitoring_unit)
1171
1177
  @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
1172
1178
  @visible_core_count = args[:visible_core_count] if args.key?(:visible_core_count)
1173
1179
  end
@@ -52553,7 +52559,9 @@ module Google
52553
52559
  # selection of a backend service is determined only for new traffic. Once a user'
52554
52560
  # s request has been directed to a backend service, subsequent requests are sent
52555
52561
  # to the same backend service as determined by the backend service's session
52556
- # affinity policy. The value must be from 0 to 1000.
52562
+ # affinity policy. Don't configure session affinity if you're using weighted
52563
+ # traffic splitting. If you do, the weighted traffic splitting configuration
52564
+ # takes precedence. The value must be from 0 to 1000.
52557
52565
  # Corresponds to the JSON property `weight`
52558
52566
  # @return [Fixnum]
52559
52567
  attr_accessor :weight
@@ -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.103.0"
19
+ GEM_VERSION = "0.104.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240526"
25
+ REVISION = "20240604"
26
26
  end
27
27
  end
28
28
  end
@@ -7231,6 +7231,7 @@ module Google
7231
7231
  class Representation < Google::Apis::Core::JsonRepresentation
7232
7232
  property :enable_nested_virtualization, as: 'enableNestedVirtualization'
7233
7233
  property :enable_uefi_networking, as: 'enableUefiNetworking'
7234
+ property :performance_monitoring_unit, as: 'performanceMonitoringUnit'
7234
7235
  property :threads_per_core, as: 'threadsPerCore'
7235
7236
  property :visible_core_count, as: 'visibleCoreCount'
7236
7237
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.103.0
4
+ version: 0.104.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: 2024-06-02 00:00:00.000000000 Z
11
+ date: 2024-06-16 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_beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.103.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.104.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
63
63
  post_install_message:
64
64
  rdoc_options: []