google-apis-appengine_v1beta 0.28.0 → 0.30.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: 277805a731c2feb725b93538548a35d0b0bf53fd7f593e7641dcc3a944284a73
4
- data.tar.gz: 429c46b6aaffced9b72772bb5a09435699b4937ba5a05b2ef179dcfacebb749a
3
+ metadata.gz: f4d429ddcd507b8a699583bc9deea7b197886f705052ad3e91ad8c82a210886a
4
+ data.tar.gz: a9d4fa79d533dd4950940bbdcd66eed8bb6f3141ac0c8744906af7dad8ffe8be
5
5
  SHA512:
6
- metadata.gz: 7d9f566bce55ba49cd7731eb6cb73df1fcaa5b34899bd93db17e98bf670da4045a095b3eb726d744df96ada416f3454eb31997c75dd1645daa9eb4a25316530a
7
- data.tar.gz: d31df127f755539fe269fa4b69e18d882dd1c954e5d174edbc22a5d4b5434373a2a26156b3d36375693e2dba6d8b8cda29155dbcea4b537be83f045714b163ae
6
+ metadata.gz: 133cab49951e6098464a359a2df541c1b32c3e6be8792f198494b6910b79994bfcdbb2ac0c461d3e36a3046624818a2f6af806778b9b934cf6149f2db3bde671
7
+ data.tar.gz: 4e965b9cbcfabc77fff3ef800d621cb74eec25c786be9faef14137c4e70387c92762d847ac99094d29d76a930aa6e6f4f65ad414c13ed5ed83941874e4b39cf5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.30.0 (2023-01-22)
4
+
5
+ * Regenerated from discovery document revision 20230114
6
+ * Regenerated using generator version 0.11.1
7
+
8
+ ### v0.29.0 (2022-12-07)
9
+
10
+ * Regenerated from discovery document revision 20221205
11
+
3
12
  ### v0.28.0 (2022-11-04)
4
13
 
5
14
  * Regenerated from discovery document revision 20221017
@@ -1119,6 +1119,31 @@ module Google
1119
1119
  end
1120
1120
  end
1121
1121
 
1122
+ # Runtime settings for the App Engine flexible environment.
1123
+ class FlexibleRuntimeSettings
1124
+ include Google::Apis::Core::Hashable
1125
+
1126
+ # The operating system of the application runtime.
1127
+ # Corresponds to the JSON property `operatingSystem`
1128
+ # @return [String]
1129
+ attr_accessor :operating_system
1130
+
1131
+ # The runtime version of an App Engine flexible application.
1132
+ # Corresponds to the JSON property `runtimeVersion`
1133
+ # @return [String]
1134
+ attr_accessor :runtime_version
1135
+
1136
+ def initialize(**args)
1137
+ update!(**args)
1138
+ end
1139
+
1140
+ # Update properties of this object
1141
+ def update!(**args)
1142
+ @operating_system = args[:operating_system] if args.key?(:operating_system)
1143
+ @runtime_version = args[:runtime_version] if args.key?(:runtime_version)
1144
+ end
1145
+ end
1146
+
1122
1147
  # Metadata for the given google.cloud.location.Location.
1123
1148
  class GoogleAppengineV1betaLocationMetadata
1124
1149
  include Google::Apis::Core::Hashable
@@ -2206,6 +2231,157 @@ module Google
2206
2231
  end
2207
2232
  end
2208
2233
 
2234
+ # The request sent to CLHs during project events.
2235
+ class ProjectEvent
2236
+ include Google::Apis::Core::Hashable
2237
+
2238
+ # The unique ID for this project event. CLHs can use this value to dedup
2239
+ # repeated calls. required
2240
+ # Corresponds to the JSON property `eventId`
2241
+ # @return [String]
2242
+ attr_accessor :event_id
2243
+
2244
+ #
2245
+ # Corresponds to the JSON property `phase`
2246
+ # @return [String]
2247
+ attr_accessor :phase
2248
+
2249
+ # ProjectsMetadata is the metadata CCFE stores about the all the relevant
2250
+ # projects (tenant, consumer, producer).
2251
+ # Corresponds to the JSON property `projectMetadata`
2252
+ # @return [Google::Apis::AppengineV1beta::ProjectsMetadata]
2253
+ attr_accessor :project_metadata
2254
+
2255
+ # ProjectState contains the externally-visible project state that is used to
2256
+ # communicate the state and reasoning for that state to the CLH. This data is
2257
+ # not persisted by CCFE, but is instead derived from CCFE's internal
2258
+ # representation of the project state.
2259
+ # Corresponds to the JSON property `state`
2260
+ # @return [Google::Apis::AppengineV1beta::ProjectState]
2261
+ attr_accessor :state
2262
+
2263
+ def initialize(**args)
2264
+ update!(**args)
2265
+ end
2266
+
2267
+ # Update properties of this object
2268
+ def update!(**args)
2269
+ @event_id = args[:event_id] if args.key?(:event_id)
2270
+ @phase = args[:phase] if args.key?(:phase)
2271
+ @project_metadata = args[:project_metadata] if args.key?(:project_metadata)
2272
+ @state = args[:state] if args.key?(:state)
2273
+ end
2274
+ end
2275
+
2276
+ # ProjectState contains the externally-visible project state that is used to
2277
+ # communicate the state and reasoning for that state to the CLH. This data is
2278
+ # not persisted by CCFE, but is instead derived from CCFE's internal
2279
+ # representation of the project state.
2280
+ class ProjectState
2281
+ include Google::Apis::Core::Hashable
2282
+
2283
+ # Projects transition between and within states based on reasons sent from
2284
+ # various systems. CCFE will provide the CLH with reasons for the current state
2285
+ # per system.The current systems that CCFE supports are: Service Management (
2286
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2287
+ # Billing API)
2288
+ # Corresponds to the JSON property `currentReasons`
2289
+ # @return [Google::Apis::AppengineV1beta::Reasons]
2290
+ attr_accessor :current_reasons
2291
+
2292
+ # Projects transition between and within states based on reasons sent from
2293
+ # various systems. CCFE will provide the CLH with reasons for the current state
2294
+ # per system.The current systems that CCFE supports are: Service Management (
2295
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2296
+ # Billing API)
2297
+ # Corresponds to the JSON property `previousReasons`
2298
+ # @return [Google::Apis::AppengineV1beta::Reasons]
2299
+ attr_accessor :previous_reasons
2300
+
2301
+ # The current state of the project. This state is the culmination of all of the
2302
+ # opinions from external systems that CCFE knows about of the project.
2303
+ # Corresponds to the JSON property `state`
2304
+ # @return [String]
2305
+ attr_accessor :state
2306
+
2307
+ def initialize(**args)
2308
+ update!(**args)
2309
+ end
2310
+
2311
+ # Update properties of this object
2312
+ def update!(**args)
2313
+ @current_reasons = args[:current_reasons] if args.key?(:current_reasons)
2314
+ @previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
2315
+ @state = args[:state] if args.key?(:state)
2316
+ end
2317
+ end
2318
+
2319
+ # ProjectsMetadata is the metadata CCFE stores about the all the relevant
2320
+ # projects (tenant, consumer, producer).
2321
+ class ProjectsMetadata
2322
+ include Google::Apis::Core::Hashable
2323
+
2324
+ # The consumer project id.
2325
+ # Corresponds to the JSON property `consumerProjectId`
2326
+ # @return [String]
2327
+ attr_accessor :consumer_project_id
2328
+
2329
+ # The consumer project number.
2330
+ # Corresponds to the JSON property `consumerProjectNumber`
2331
+ # @return [Fixnum]
2332
+ attr_accessor :consumer_project_number
2333
+
2334
+ # The CCFE state of the consumer project. It is the same state that is
2335
+ # communicated to the CLH during project events. Notice that this field is not
2336
+ # set in the DB, it is only set in this proto when communicated to CLH in the
2337
+ # side channel.
2338
+ # Corresponds to the JSON property `consumerProjectState`
2339
+ # @return [String]
2340
+ attr_accessor :consumer_project_state
2341
+
2342
+ # The service account authorized to operate on the consumer project. Note: CCFE
2343
+ # only propagates P4SA with default tag to CLH.
2344
+ # Corresponds to the JSON property `p4ServiceAccount`
2345
+ # @return [String]
2346
+ attr_accessor :p4_service_account
2347
+
2348
+ # The producer project id.
2349
+ # Corresponds to the JSON property `producerProjectId`
2350
+ # @return [String]
2351
+ attr_accessor :producer_project_id
2352
+
2353
+ # The producer project number.
2354
+ # Corresponds to the JSON property `producerProjectNumber`
2355
+ # @return [Fixnum]
2356
+ attr_accessor :producer_project_number
2357
+
2358
+ # The tenant project id.
2359
+ # Corresponds to the JSON property `tenantProjectId`
2360
+ # @return [String]
2361
+ attr_accessor :tenant_project_id
2362
+
2363
+ # The tenant project number.
2364
+ # Corresponds to the JSON property `tenantProjectNumber`
2365
+ # @return [Fixnum]
2366
+ attr_accessor :tenant_project_number
2367
+
2368
+ def initialize(**args)
2369
+ update!(**args)
2370
+ end
2371
+
2372
+ # Update properties of this object
2373
+ def update!(**args)
2374
+ @consumer_project_id = args[:consumer_project_id] if args.key?(:consumer_project_id)
2375
+ @consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
2376
+ @consumer_project_state = args[:consumer_project_state] if args.key?(:consumer_project_state)
2377
+ @p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
2378
+ @producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
2379
+ @producer_project_number = args[:producer_project_number] if args.key?(:producer_project_number)
2380
+ @tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id)
2381
+ @tenant_project_number = args[:tenant_project_number] if args.key?(:tenant_project_number)
2382
+ end
2383
+ end
2384
+
2209
2385
  # Readiness checking configuration for VM instances. Unhealthy instances are
2210
2386
  # removed from traffic rotation.
2211
2387
  class ReadinessCheck
@@ -2265,6 +2441,47 @@ module Google
2265
2441
  end
2266
2442
  end
2267
2443
 
2444
+ # Projects transition between and within states based on reasons sent from
2445
+ # various systems. CCFE will provide the CLH with reasons for the current state
2446
+ # per system.The current systems that CCFE supports are: Service Management (
2447
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2448
+ # Billing API)
2449
+ class Reasons
2450
+ include Google::Apis::Core::Hashable
2451
+
2452
+ #
2453
+ # Corresponds to the JSON property `abuse`
2454
+ # @return [String]
2455
+ attr_accessor :abuse
2456
+
2457
+ #
2458
+ # Corresponds to the JSON property `billing`
2459
+ # @return [String]
2460
+ attr_accessor :billing
2461
+
2462
+ #
2463
+ # Corresponds to the JSON property `dataGovernance`
2464
+ # @return [String]
2465
+ attr_accessor :data_governance
2466
+
2467
+ #
2468
+ # Corresponds to the JSON property `serviceManagement`
2469
+ # @return [String]
2470
+ attr_accessor :service_management
2471
+
2472
+ def initialize(**args)
2473
+ update!(**args)
2474
+ end
2475
+
2476
+ # Update properties of this object
2477
+ def update!(**args)
2478
+ @abuse = args[:abuse] if args.key?(:abuse)
2479
+ @billing = args[:billing] if args.key?(:billing)
2480
+ @data_governance = args[:data_governance] if args.key?(:data_governance)
2481
+ @service_management = args[:service_management] if args.key?(:service_management)
2482
+ end
2483
+ end
2484
+
2268
2485
  # Request message for 'Applications.RepairApplication'.
2269
2486
  class RepairApplicationRequest
2270
2487
  include Google::Apis::Core::Hashable
@@ -2896,6 +3113,11 @@ module Google
2896
3113
  # @return [Array<Google::Apis::AppengineV1beta::ErrorHandler>]
2897
3114
  attr_accessor :error_handlers
2898
3115
 
3116
+ # Runtime settings for the App Engine flexible environment.
3117
+ # Corresponds to the JSON property `flexibleRuntimeSettings`
3118
+ # @return [Google::Apis::AppengineV1beta::FlexibleRuntimeSettings]
3119
+ attr_accessor :flexible_runtime_settings
3120
+
2899
3121
  # An ordered list of URL-matching patterns that should be applied to incoming
2900
3122
  # requests. The first matching URL handles the request and other request
2901
3123
  # handlers are not attempted.Only returned in GET requests if view=FULL is set.
@@ -3065,6 +3287,7 @@ module Google
3065
3287
  @env = args[:env] if args.key?(:env)
3066
3288
  @env_variables = args[:env_variables] if args.key?(:env_variables)
3067
3289
  @error_handlers = args[:error_handlers] if args.key?(:error_handlers)
3290
+ @flexible_runtime_settings = args[:flexible_runtime_settings] if args.key?(:flexible_runtime_settings)
3068
3291
  @handlers = args[:handlers] if args.key?(:handlers)
3069
3292
  @health_check = args[:health_check] if args.key?(:health_check)
3070
3293
  @id = args[:id] if args.key?(:id)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AppengineV1beta
18
18
  # Version of the google-apis-appengine_v1beta gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221017"
25
+ REVISION = "20230114"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,12 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class FlexibleRuntimeSettings
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
199
205
  class GoogleAppengineV1betaLocationMetadata
200
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
207
 
@@ -352,12 +358,36 @@ module Google
352
358
  include Google::Apis::Core::JsonObjectSupport
353
359
  end
354
360
 
361
+ class ProjectEvent
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
367
+ class ProjectState
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
373
+ class ProjectsMetadata
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
355
379
  class ReadinessCheck
356
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
381
 
358
382
  include Google::Apis::Core::JsonObjectSupport
359
383
  end
360
384
 
385
+ class Reasons
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
361
391
  class RepairApplicationRequest
362
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
393
 
@@ -751,6 +781,14 @@ module Google
751
781
  end
752
782
  end
753
783
 
784
+ class FlexibleRuntimeSettings
785
+ # @private
786
+ class Representation < Google::Apis::Core::JsonRepresentation
787
+ property :operating_system, as: 'operatingSystem'
788
+ property :runtime_version, as: 'runtimeVersion'
789
+ end
790
+ end
791
+
754
792
  class GoogleAppengineV1betaLocationMetadata
755
793
  # @private
756
794
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1029,6 +1067,43 @@ module Google
1029
1067
  end
1030
1068
  end
1031
1069
 
1070
+ class ProjectEvent
1071
+ # @private
1072
+ class Representation < Google::Apis::Core::JsonRepresentation
1073
+ property :event_id, as: 'eventId'
1074
+ property :phase, as: 'phase'
1075
+ property :project_metadata, as: 'projectMetadata', class: Google::Apis::AppengineV1beta::ProjectsMetadata, decorator: Google::Apis::AppengineV1beta::ProjectsMetadata::Representation
1076
+
1077
+ property :state, as: 'state', class: Google::Apis::AppengineV1beta::ProjectState, decorator: Google::Apis::AppengineV1beta::ProjectState::Representation
1078
+
1079
+ end
1080
+ end
1081
+
1082
+ class ProjectState
1083
+ # @private
1084
+ class Representation < Google::Apis::Core::JsonRepresentation
1085
+ property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1beta::Reasons, decorator: Google::Apis::AppengineV1beta::Reasons::Representation
1086
+
1087
+ property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1beta::Reasons, decorator: Google::Apis::AppengineV1beta::Reasons::Representation
1088
+
1089
+ property :state, as: 'state'
1090
+ end
1091
+ end
1092
+
1093
+ class ProjectsMetadata
1094
+ # @private
1095
+ class Representation < Google::Apis::Core::JsonRepresentation
1096
+ property :consumer_project_id, as: 'consumerProjectId'
1097
+ property :consumer_project_number, :numeric_string => true, as: 'consumerProjectNumber'
1098
+ property :consumer_project_state, as: 'consumerProjectState'
1099
+ property :p4_service_account, as: 'p4ServiceAccount'
1100
+ property :producer_project_id, as: 'producerProjectId'
1101
+ property :producer_project_number, :numeric_string => true, as: 'producerProjectNumber'
1102
+ property :tenant_project_id, as: 'tenantProjectId'
1103
+ property :tenant_project_number, :numeric_string => true, as: 'tenantProjectNumber'
1104
+ end
1105
+ end
1106
+
1032
1107
  class ReadinessCheck
1033
1108
  # @private
1034
1109
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1042,6 +1117,16 @@ module Google
1042
1117
  end
1043
1118
  end
1044
1119
 
1120
+ class Reasons
1121
+ # @private
1122
+ class Representation < Google::Apis::Core::JsonRepresentation
1123
+ property :abuse, as: 'abuse'
1124
+ property :billing, as: 'billing'
1125
+ property :data_governance, as: 'dataGovernance'
1126
+ property :service_management, as: 'serviceManagement'
1127
+ end
1128
+ end
1129
+
1045
1130
  class RepairApplicationRequest
1046
1131
  # @private
1047
1132
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1198,6 +1283,8 @@ module Google
1198
1283
  hash :env_variables, as: 'envVariables'
1199
1284
  collection :error_handlers, as: 'errorHandlers', class: Google::Apis::AppengineV1beta::ErrorHandler, decorator: Google::Apis::AppengineV1beta::ErrorHandler::Representation
1200
1285
 
1286
+ property :flexible_runtime_settings, as: 'flexibleRuntimeSettings', class: Google::Apis::AppengineV1beta::FlexibleRuntimeSettings, decorator: Google::Apis::AppengineV1beta::FlexibleRuntimeSettings::Representation
1287
+
1201
1288
  collection :handlers, as: 'handlers', class: Google::Apis::AppengineV1beta::UrlMap, decorator: Google::Apis::AppengineV1beta::UrlMap::Representation
1202
1289
 
1203
1290
  property :health_check, as: 'healthCheck', class: Google::Apis::AppengineV1beta::HealthCheck, decorator: Google::Apis::AppengineV1beta::HealthCheck::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-appengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.30.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: 2023-01-22 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-appengine_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1beta
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.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for App Engine Admin API V1beta