google-apis-compute_beta 0.41.0 → 0.42.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: 1d4f81c2fc86da5f9bef7f0b1b6bd329f317d1a034eba12dfa04d8b416eaedd5
4
- data.tar.gz: 99b11bfdc24ad818dd4b63261cee03d2c965a94475f9ec03387635eb7cd43789
3
+ metadata.gz: 2c31188ae154de781bad8b57b9b068b2dcbbe112d20fab89f9a4a7a2d70913cf
4
+ data.tar.gz: 67b69a0d185412d4b0e3a35ff6739f945fbfda4f9a40e0e2bc17b94d0dcb40ac
5
5
  SHA512:
6
- metadata.gz: a00e876aa7eb2ff4f9c11c330c45d50cc00dd69827e3c0433c2da62e8633a40c29c77bbdaf6734364254f97c5c83f836f880bec6b40ae0790ecd221ef6d68ea4
7
- data.tar.gz: 38933caad9ac29637bc14ab44f639827f130ba1c1961e73709eadfd2a6d29a27e0e1f684b01dbd128e5207339b0ba58c3c11c0f85acfe096c7d8fc555950728a
6
+ metadata.gz: 7e733bc5ed81c89eb5fb3d86d35a65056071adf7f40f40584460b958bba58d7fbe7d73698c10c7dcafbe87980c796342998b6c0f1db5fefc497fa2d77025c67a
7
+ data.tar.gz: db21d19a9510fc3f6bb5e9599c99aae48950be45d821c77644a5cc9f47ecdabdfd9d2dddf93f3373067382cd0e6ee45fd2f471931b24e413a3fe0d26128df473
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.42.0 (2022-07-14)
4
+
5
+ * Regenerated from discovery document revision 20220705
6
+
3
7
  ### v0.41.0 (2022-07-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20220621
@@ -2657,7 +2657,7 @@ module Google
2657
2657
  # @return [Float]
2658
2658
  attr_accessor :max_rate_per_instance
2659
2659
 
2660
- # Optional parameter to define a target capacity for the UTILIZATIONbalancing
2660
+ # Optional parameter to define a target capacity for the UTILIZATION balancing
2661
2661
  # mode. The valid range is [0.0, 1.0]. For usage guidelines, see Utilization
2662
2662
  # balancing mode.
2663
2663
  # Corresponds to the JSON property `maxUtilization`
@@ -18889,7 +18889,7 @@ module Google
18889
18889
  # @return [Google::Apis::ComputeBeta::LocationPolicyLocationConstraints]
18890
18890
  attr_accessor :constraints
18891
18891
 
18892
- # Preference for a given location.
18892
+ # Preference for a given location. Set to either ALLOW or DENY.
18893
18893
  # Corresponds to the JSON property `preference`
18894
18894
  # @return [String]
18895
18895
  attr_accessor :preference
@@ -20283,6 +20283,11 @@ module Google
20283
20283
  attr_accessor :enable_ula_internal_ipv6
20284
20284
  alias_method :enable_ula_internal_ipv6?, :enable_ula_internal_ipv6
20285
20285
 
20286
+ # [Output Only] URL of the firewall policy the network is associated with.
20287
+ # Corresponds to the JSON property `firewallPolicy`
20288
+ # @return [String]
20289
+ attr_accessor :firewall_policy
20290
+
20286
20291
  # [Output Only] The gateway address for default routing out of the network,
20287
20292
  # selected by GCP.
20288
20293
  # Corresponds to the JSON property `gatewayIPv4`
@@ -20372,6 +20377,7 @@ module Google
20372
20377
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
20373
20378
  @description = args[:description] if args.key?(:description)
20374
20379
  @enable_ula_internal_ipv6 = args[:enable_ula_internal_ipv6] if args.key?(:enable_ula_internal_ipv6)
20380
+ @firewall_policy = args[:firewall_policy] if args.key?(:firewall_policy)
20375
20381
  @gateway_i_pv4 = args[:gateway_i_pv4] if args.key?(:gateway_i_pv4)
20376
20382
  @id = args[:id] if args.key?(:id)
20377
20383
  @internal_ipv6_range = args[:internal_ipv6_range] if args.key?(:internal_ipv6_range)
@@ -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.41.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220621"
25
+ REVISION = "20220705"
26
26
  end
27
27
  end
28
28
  end
@@ -10576,6 +10576,7 @@ module Google
10576
10576
  property :creation_timestamp, as: 'creationTimestamp'
10577
10577
  property :description, as: 'description'
10578
10578
  property :enable_ula_internal_ipv6, as: 'enableUlaInternalIpv6'
10579
+ property :firewall_policy, as: 'firewallPolicy'
10579
10580
  property :gateway_i_pv4, as: 'gatewayIPv4'
10580
10581
  property :id, :numeric_string => true, as: 'id'
10581
10582
  property :internal_ipv6_range, as: 'internalIpv6Range'
@@ -11997,6 +11997,7 @@ module Google
11997
11997
  end
11998
11998
 
11999
11999
  # Creates multiple instances. Count specifies the number of instances to create.
12000
+ # For more information, see About bulk creation of VMs.
12000
12001
  # @param [String] project
12001
12002
  # Project ID for this request.
12002
12003
  # @param [String] zone
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.41.0
4
+ version: 0.42.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-07-11 00:00:00.000000000 Z
11
+ date: 2022-07-18 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.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.42.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: []