google-apis-run_v2 0.77.0 → 0.79.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: 6fde8f8e92de0f418c9abaee99dc48f9548089749781c13d902c7bbad4d8d6c8
4
- data.tar.gz: 274bba51521b624677643346bc12f3005744d94199617481053a7560b66a8bb5
3
+ metadata.gz: 2df3438df0348aa2b43d6f7d47e28e1f39527e9188af4d80391832c9ee84cd9d
4
+ data.tar.gz: 53e85fd4feaeb5fd4bbd0a370dd8c0d620821df3dffbcaebc06f1166d9460478
5
5
  SHA512:
6
- metadata.gz: 1f2392ee7329699a999072814616cea0dc6f0c43aae88025d16c2655b3e8fd4305814c231639573ba33751417959c5b02d1b93a1e51c2f0f86efdcbc9e206e17
7
- data.tar.gz: 63924b47bb950a723be42f95f9edda0d7760f898ba50895ef5c1a8441d7bfb8d3caa0cb0136eadbd5dacd25281ee7721fbe4e874af7cc8976cedd4b083f8403f
6
+ metadata.gz: '09d5b7bea5c87cc263607282847eda5713aa82252b02c5d024ca6adde1e25cf060c0fc22fd7e50cdff8c2e69104e36ff4dc70d2adff9f3ba650ec7d4ed48e50e'
7
+ data.tar.gz: 8b05c467df367ca3bd1686848abcc8a3b3133c83c99670bdc821e34a29e6cb1d997335781a94af3fa2a186a7388bead6d2145cdb5c436899d2edea61b222ac7a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.79.0 (2024-11-24)
4
+
5
+ * Regenerated from discovery document revision 20241115
6
+
7
+ ### v0.78.0 (2024-11-03)
8
+
9
+ * Regenerated from discovery document revision 20241025
10
+
3
11
  ### v0.77.0 (2024-10-20)
4
12
 
5
13
  * Regenerated from discovery document revision 20241011
@@ -96,6 +96,12 @@ module Google
96
96
  # @return [String]
97
97
  attr_accessor :function_target
98
98
 
99
+ # Optional. project_descriptor stores the path to the project descriptor file.
100
+ # When empty, it means that there is no project descriptor file in the source.
101
+ # Corresponds to the JSON property `projectDescriptor`
102
+ # @return [String]
103
+ attr_accessor :project_descriptor
104
+
99
105
  # The runtime name, e.g. 'go113'. Leave blank for generic builds.
100
106
  # Corresponds to the JSON property `runtime`
101
107
  # @return [String]
@@ -112,6 +118,7 @@ module Google
112
118
  @enable_automatic_updates = args[:enable_automatic_updates] if args.key?(:enable_automatic_updates)
113
119
  @environment_variables = args[:environment_variables] if args.key?(:environment_variables)
114
120
  @function_target = args[:function_target] if args.key?(:function_target)
121
+ @project_descriptor = args[:project_descriptor] if args.key?(:project_descriptor)
115
122
  @runtime = args[:runtime] if args.key?(:runtime)
116
123
  end
117
124
  end
@@ -899,6 +906,12 @@ module Google
899
906
  # @return [String]
900
907
  attr_accessor :bucket
901
908
 
909
+ # A list of additional flags to pass to the gcsfuse CLI. Options should be
910
+ # specified without the leading "--".
911
+ # Corresponds to the JSON property `mountOptions`
912
+ # @return [Array<String>]
913
+ attr_accessor :mount_options
914
+
902
915
  # If true, the volume will be mounted as read only for all mounts.
903
916
  # Corresponds to the JSON property `readOnly`
904
917
  # @return [Boolean]
@@ -912,6 +925,7 @@ module Google
912
925
  # Update properties of this object
913
926
  def update!(**args)
914
927
  @bucket = args[:bucket] if args.key?(:bucket)
928
+ @mount_options = args[:mount_options] if args.key?(:mount_options)
915
929
  @read_only = args[:read_only] if args.key?(:read_only)
916
930
  end
917
931
  end
@@ -1960,6 +1974,17 @@ module Google
1960
1974
  # @return [String]
1961
1975
  attr_accessor :encryption_key
1962
1976
 
1977
+ # Optional. The action to take if the encryption key is revoked.
1978
+ # Corresponds to the JSON property `encryptionKeyRevocationAction`
1979
+ # @return [String]
1980
+ attr_accessor :encryption_key_revocation_action
1981
+
1982
+ # Optional. If encryption_key_revocation_action is SHUTDOWN, the duration before
1983
+ # shutting down all instances. The minimum increment is 1 hour.
1984
+ # Corresponds to the JSON property `encryptionKeyShutdownDuration`
1985
+ # @return [String]
1986
+ attr_accessor :encryption_key_shutdown_duration
1987
+
1963
1988
  # Optional. The sandbox environment to host this Revision.
1964
1989
  # Corresponds to the JSON property `executionEnvironment`
1965
1990
  # @return [String]
@@ -1985,8 +2010,8 @@ module Google
1985
2010
  attr_accessor :labels
1986
2011
 
1987
2012
  # Optional. Sets the maximum number of requests that each serving instance can
1988
- # receive. If not specified or 0, defaults to 80 when requested `CPU >= 1` and
1989
- # defaults to 1 when requested `CPU < 1`.
2013
+ # receive. If not specified or 0, concurrency defaults to 80 when requested `CPU
2014
+ # >= 1` and defaults to 1 when requested `CPU < 1`.
1990
2015
  # Corresponds to the JSON property `maxInstanceRequestConcurrency`
1991
2016
  # @return [Fixnum]
1992
2017
  attr_accessor :max_instance_request_concurrency
@@ -2052,6 +2077,8 @@ module Google
2052
2077
  @annotations = args[:annotations] if args.key?(:annotations)
2053
2078
  @containers = args[:containers] if args.key?(:containers)
2054
2079
  @encryption_key = args[:encryption_key] if args.key?(:encryption_key)
2080
+ @encryption_key_revocation_action = args[:encryption_key_revocation_action] if args.key?(:encryption_key_revocation_action)
2081
+ @encryption_key_shutdown_duration = args[:encryption_key_shutdown_duration] if args.key?(:encryption_key_shutdown_duration)
2055
2082
  @execution_environment = args[:execution_environment] if args.key?(:execution_environment)
2056
2083
  @health_check_disabled = args[:health_check_disabled] if args.key?(:health_check_disabled)
2057
2084
  @labels = args[:labels] if args.key?(:labels)
@@ -2142,12 +2169,12 @@ module Google
2142
2169
  # of 0222 will be applied to any non-zero value. * This is an integer
2143
2170
  # representation of the mode bits. So, the octal integer value should look
2144
2171
  # exactly as the chmod numeric notation with a leading zero. Some examples: for
2145
- # chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 (u=rw,g=
2146
- # r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set
2147
- # to 0755 (octal) or 493 (base-10). * This might be in conflict with other
2148
- # options that affect the file mode, like fsGroup, and the result can be other
2149
- # mode bits set. This might be in conflict with other options that affect the
2150
- # file mode, like fsGroup, and as a result, other mode bits could be set.
2172
+ # chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=
2173
+ # rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in
2174
+ # conflict with other options that affect the file mode, like fsGroup, and the
2175
+ # result can be other mode bits set. This might be in conflict with other
2176
+ # options that affect the file mode, like fsGroup, and as a result, other mode
2177
+ # bits could be set.
2151
2178
  # Corresponds to the JSON property `defaultMode`
2152
2179
  # @return [Fixnum]
2153
2180
  attr_accessor :default_mode
@@ -3103,11 +3130,10 @@ module Google
3103
3130
  # Internally, a umask of 0222 will be applied to any non-zero value. * This is
3104
3131
  # an integer representation of the mode bits. So, the octal integer value should
3105
3132
  # look exactly as the chmod numeric notation with a leading zero. Some examples:
3106
- # for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 (u=
3107
- # rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx),
3108
- # set to 0755 (octal) or 493 (base-10). * This might be in conflict with other
3109
- # options that affect the file mode, like fsGroup, and the result can be other
3110
- # mode bits set.
3133
+ # for chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (
3134
+ # u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in
3135
+ # conflict with other options that affect the file mode, like fsGroup, and the
3136
+ # result can be other mode bits set.
3111
3137
  # Corresponds to the JSON property `mode`
3112
3138
  # @return [Fixnum]
3113
3139
  attr_accessor :mode
@@ -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.77.0"
19
+ GEM_VERSION = "0.79.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 = "20241011"
25
+ REVISION = "20241115"
26
26
  end
27
27
  end
28
28
  end
@@ -711,6 +711,7 @@ module Google
711
711
  property :enable_automatic_updates, as: 'enableAutomaticUpdates'
712
712
  hash :environment_variables, as: 'environmentVariables'
713
713
  property :function_target, as: 'functionTarget'
714
+ property :project_descriptor, as: 'projectDescriptor'
714
715
  property :runtime, as: 'runtime'
715
716
  end
716
717
  end
@@ -905,6 +906,7 @@ module Google
905
906
  # @private
906
907
  class Representation < Google::Apis::Core::JsonRepresentation
907
908
  property :bucket, as: 'bucket'
909
+ collection :mount_options, as: 'mountOptions'
908
910
  property :read_only, as: 'readOnly'
909
911
  end
910
912
  end
@@ -1163,6 +1165,8 @@ module Google
1163
1165
  collection :containers, as: 'containers', class: Google::Apis::RunV2::GoogleCloudRunV2Container, decorator: Google::Apis::RunV2::GoogleCloudRunV2Container::Representation
1164
1166
 
1165
1167
  property :encryption_key, as: 'encryptionKey'
1168
+ property :encryption_key_revocation_action, as: 'encryptionKeyRevocationAction'
1169
+ property :encryption_key_shutdown_duration, as: 'encryptionKeyShutdownDuration'
1166
1170
  property :execution_environment, as: 'executionEnvironment'
1167
1171
  property :health_check_disabled, as: 'healthCheckDisabled'
1168
1172
  hash :labels, as: 'labels'
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.77.0
4
+ version: 0.79.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-10-27 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.77.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.79.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.21
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Run Admin API V2