google-apis-run_v2 0.73.0 → 0.75.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: 777a85ed2cb6637f0e6dbc4d039f129cb99f515bd64042996b0f7751a4f0a607
4
- data.tar.gz: 3ecb552201b361770b5221bf3bc7b4ca6adcad3d2fcfaaba7193ab119db7350a
3
+ metadata.gz: c9750870e043a6ca6e0cf3d25f26ddaff76927e22d3a25844904a6d9c5755e5e
4
+ data.tar.gz: e8ae29b5e5968f23887a585e521b9fe1712d27b6204390c139552250a8fb0173
5
5
  SHA512:
6
- metadata.gz: 568eb0e88ea08521f00fbd3203202e3afbde6e66576bbc58cb1086883eab6295d605bbffdc1405c3975f89a31051902a9b4fd6004ea6d11d875f3661afd4c73c
7
- data.tar.gz: d216d211a3b851a9e78a28da047253e61b271ec50c2141ff8387553cbb2d97516c1130f6e570ae902d66ca471bf4fce94b16d5b6d90314f614f887c6be9658f1
6
+ metadata.gz: 97612878d410a47b093df365fe5258c7e8efced14d453cd519eb7ea16db924fc8ccfacd8ade237c394dfcd2778ceacf362e5dce966d090e29d924de1280d597d
7
+ data.tar.gz: 7067a738127de7f436fbafdc6d58d163f3c5832125c9b562f52ddee8a69dcf895667ac34d9b5cc1195819749834505c9e29eb801cfaf8ad100a878bfafa7d5f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.75.0 (2024-10-06)
4
+
5
+ * Regenerated from discovery document revision 20240927
6
+
7
+ ### v0.74.0 (2024-09-22)
8
+
9
+ * Regenerated from discovery document revision 20240916
10
+
3
11
  ### v0.73.0 (2024-09-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20240831
@@ -2286,6 +2286,13 @@ module Google
2286
2286
  # @return [String]
2287
2287
  attr_accessor :ingress
2288
2288
 
2289
+ # Optional. Disables IAM permission check for run.routes.invoke for callers of
2290
+ # this service. This setting should not be used with external ingress.
2291
+ # Corresponds to the JSON property `invokerIamDisabled`
2292
+ # @return [Boolean]
2293
+ attr_accessor :invoker_iam_disabled
2294
+ alias_method :invoker_iam_disabled?, :invoker_iam_disabled
2295
+
2289
2296
  # Optional. Unstructured key value map that can be used to organize and
2290
2297
  # categorize objects. User-provided labels are shared with Google's billing
2291
2298
  # system, so they can be used to filter, or break down billing charges by team,
@@ -2446,6 +2453,7 @@ module Google
2446
2453
  @expire_time = args[:expire_time] if args.key?(:expire_time)
2447
2454
  @generation = args[:generation] if args.key?(:generation)
2448
2455
  @ingress = args[:ingress] if args.key?(:ingress)
2456
+ @invoker_iam_disabled = args[:invoker_iam_disabled] if args.key?(:invoker_iam_disabled)
2449
2457
  @labels = args[:labels] if args.key?(:labels)
2450
2458
  @last_modifier = args[:last_modifier] if args.key?(:last_modifier)
2451
2459
  @latest_created_revision = args[:latest_created_revision] if args.key?(:latest_created_revision)
@@ -2495,11 +2503,16 @@ module Google
2495
2503
 
2496
2504
  # Optional. total min instances for the service. This number of instances is
2497
2505
  # divided among all revisions with specified traffic based on the percent of
2498
- # traffic they are receiving. (BETA)
2506
+ # traffic they are receiving.
2499
2507
  # Corresponds to the JSON property `minInstanceCount`
2500
2508
  # @return [Fixnum]
2501
2509
  attr_accessor :min_instance_count
2502
2510
 
2511
+ # Optional. The scaling mode for the service.
2512
+ # Corresponds to the JSON property `scalingMode`
2513
+ # @return [String]
2514
+ attr_accessor :scaling_mode
2515
+
2503
2516
  def initialize(**args)
2504
2517
  update!(**args)
2505
2518
  end
@@ -2507,6 +2520,7 @@ module Google
2507
2520
  # Update properties of this object
2508
2521
  def update!(**args)
2509
2522
  @min_instance_count = args[:min_instance_count] if args.key?(:min_instance_count)
2523
+ @scaling_mode = args[:scaling_mode] if args.key?(:scaling_mode)
2510
2524
  end
2511
2525
  end
2512
2526
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RunV2
18
18
  # Version of the google-apis-run_v2 gem
19
- GEM_VERSION = "0.73.0"
19
+ GEM_VERSION = "0.75.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240831"
25
+ REVISION = "20240927"
26
26
  end
27
27
  end
28
28
  end
@@ -1232,6 +1232,7 @@ module Google
1232
1232
  property :expire_time, as: 'expireTime'
1233
1233
  property :generation, :numeric_string => true, as: 'generation'
1234
1234
  property :ingress, as: 'ingress'
1235
+ property :invoker_iam_disabled, as: 'invokerIamDisabled'
1235
1236
  hash :labels, as: 'labels'
1236
1237
  property :last_modifier, as: 'lastModifier'
1237
1238
  property :latest_created_revision, as: 'latestCreatedRevision'
@@ -1269,6 +1270,7 @@ module Google
1269
1270
  # @private
1270
1271
  class Representation < Google::Apis::Core::JsonRepresentation
1271
1272
  property :min_instance_count, as: 'minInstanceCount'
1273
+ property :scaling_mode, as: 'scalingMode'
1272
1274
  end
1273
1275
  end
1274
1276
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.73.0
4
+ version: 0.75.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-09-15 00:00:00.000000000 Z
11
+ date: 2024-10-06 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-run_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.73.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.75.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
63
63
  post_install_message:
64
64
  rdoc_options: []