google-apis-appengine_v1beta 0.28.0 → 0.29.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: 277805a731c2feb725b93538548a35d0b0bf53fd7f593e7641dcc3a944284a73
4
- data.tar.gz: 429c46b6aaffced9b72772bb5a09435699b4937ba5a05b2ef179dcfacebb749a
3
+ metadata.gz: ba29cae0503c76b6e2f8706c7d3d58e38a3bcf46ef685f953ab4e7e36237ef99
4
+ data.tar.gz: e7ac8ffa6baff11790a87ef8fa2f857c175eb93dd3a8ba682d2230ca196770b8
5
5
  SHA512:
6
- metadata.gz: 7d9f566bce55ba49cd7731eb6cb73df1fcaa5b34899bd93db17e98bf670da4045a095b3eb726d744df96ada416f3454eb31997c75dd1645daa9eb4a25316530a
7
- data.tar.gz: d31df127f755539fe269fa4b69e18d882dd1c954e5d174edbc22a5d4b5434373a2a26156b3d36375693e2dba6d8b8cda29155dbcea4b537be83f045714b163ae
6
+ metadata.gz: 5206f837afda042c55ea0d540da56bbf5fb0ba71f17168b1b8c3f1a8b93a8535afc73498e5deb1f58e2f4811a4229488fdd67493acba0300aa0c9d8fd0548b6b
7
+ data.tar.gz: e637b25c0d6f32e236bc860a79b03e9eab2ef239cb182ddc262c756c8950a3fda6ac8915b2674beedab1dd90209a12b96564791b0cdb8c6deef736a74ce68ea5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.29.0 (2022-12-07)
4
+
5
+ * Regenerated from discovery document revision 20221205
6
+
3
7
  ### v0.28.0 (2022-11-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20221017
@@ -2206,6 +2206,157 @@ module Google
2206
2206
  end
2207
2207
  end
2208
2208
 
2209
+ # The request sent to CLHs during project events.
2210
+ class ProjectEvent
2211
+ include Google::Apis::Core::Hashable
2212
+
2213
+ # The unique ID for this project event. CLHs can use this value to dedup
2214
+ # repeated calls. required
2215
+ # Corresponds to the JSON property `eventId`
2216
+ # @return [String]
2217
+ attr_accessor :event_id
2218
+
2219
+ #
2220
+ # Corresponds to the JSON property `phase`
2221
+ # @return [String]
2222
+ attr_accessor :phase
2223
+
2224
+ # ProjectsMetadata is the metadata CCFE stores about the all the relevant
2225
+ # projects (tenant, consumer, producer).
2226
+ # Corresponds to the JSON property `projectMetadata`
2227
+ # @return [Google::Apis::AppengineV1beta::ProjectsMetadata]
2228
+ attr_accessor :project_metadata
2229
+
2230
+ # ProjectState contains the externally-visible project state that is used to
2231
+ # communicate the state and reasoning for that state to the CLH. This data is
2232
+ # not persisted by CCFE, but is instead derived from CCFE's internal
2233
+ # representation of the project state.
2234
+ # Corresponds to the JSON property `state`
2235
+ # @return [Google::Apis::AppengineV1beta::ProjectState]
2236
+ attr_accessor :state
2237
+
2238
+ def initialize(**args)
2239
+ update!(**args)
2240
+ end
2241
+
2242
+ # Update properties of this object
2243
+ def update!(**args)
2244
+ @event_id = args[:event_id] if args.key?(:event_id)
2245
+ @phase = args[:phase] if args.key?(:phase)
2246
+ @project_metadata = args[:project_metadata] if args.key?(:project_metadata)
2247
+ @state = args[:state] if args.key?(:state)
2248
+ end
2249
+ end
2250
+
2251
+ # ProjectState contains the externally-visible project state that is used to
2252
+ # communicate the state and reasoning for that state to the CLH. This data is
2253
+ # not persisted by CCFE, but is instead derived from CCFE's internal
2254
+ # representation of the project state.
2255
+ class ProjectState
2256
+ include Google::Apis::Core::Hashable
2257
+
2258
+ # Projects transition between and within states based on reasons sent from
2259
+ # various systems. CCFE will provide the CLH with reasons for the current state
2260
+ # per system.The current systems that CCFE supports are: Service Management (
2261
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2262
+ # Billing API)
2263
+ # Corresponds to the JSON property `currentReasons`
2264
+ # @return [Google::Apis::AppengineV1beta::Reasons]
2265
+ attr_accessor :current_reasons
2266
+
2267
+ # Projects transition between and within states based on reasons sent from
2268
+ # various systems. CCFE will provide the CLH with reasons for the current state
2269
+ # per system.The current systems that CCFE supports are: Service Management (
2270
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2271
+ # Billing API)
2272
+ # Corresponds to the JSON property `previousReasons`
2273
+ # @return [Google::Apis::AppengineV1beta::Reasons]
2274
+ attr_accessor :previous_reasons
2275
+
2276
+ # The current state of the project. This state is the culmination of all of the
2277
+ # opinions from external systems that CCFE knows about of the project.
2278
+ # Corresponds to the JSON property `state`
2279
+ # @return [String]
2280
+ attr_accessor :state
2281
+
2282
+ def initialize(**args)
2283
+ update!(**args)
2284
+ end
2285
+
2286
+ # Update properties of this object
2287
+ def update!(**args)
2288
+ @current_reasons = args[:current_reasons] if args.key?(:current_reasons)
2289
+ @previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
2290
+ @state = args[:state] if args.key?(:state)
2291
+ end
2292
+ end
2293
+
2294
+ # ProjectsMetadata is the metadata CCFE stores about the all the relevant
2295
+ # projects (tenant, consumer, producer).
2296
+ class ProjectsMetadata
2297
+ include Google::Apis::Core::Hashable
2298
+
2299
+ # The consumer project id.
2300
+ # Corresponds to the JSON property `consumerProjectId`
2301
+ # @return [String]
2302
+ attr_accessor :consumer_project_id
2303
+
2304
+ # The consumer project number.
2305
+ # Corresponds to the JSON property `consumerProjectNumber`
2306
+ # @return [Fixnum]
2307
+ attr_accessor :consumer_project_number
2308
+
2309
+ # The CCFE state of the consumer project. It is the same state that is
2310
+ # communicated to the CLH during project events. Notice that this field is not
2311
+ # set in the DB, it is only set in this proto when communicated to CLH in the
2312
+ # side channel.
2313
+ # Corresponds to the JSON property `consumerProjectState`
2314
+ # @return [String]
2315
+ attr_accessor :consumer_project_state
2316
+
2317
+ # The service account authorized to operate on the consumer project. Note: CCFE
2318
+ # only propagates P4SA with default tag to CLH.
2319
+ # Corresponds to the JSON property `p4ServiceAccount`
2320
+ # @return [String]
2321
+ attr_accessor :p4_service_account
2322
+
2323
+ # The producer project id.
2324
+ # Corresponds to the JSON property `producerProjectId`
2325
+ # @return [String]
2326
+ attr_accessor :producer_project_id
2327
+
2328
+ # The producer project number.
2329
+ # Corresponds to the JSON property `producerProjectNumber`
2330
+ # @return [Fixnum]
2331
+ attr_accessor :producer_project_number
2332
+
2333
+ # The tenant project id.
2334
+ # Corresponds to the JSON property `tenantProjectId`
2335
+ # @return [String]
2336
+ attr_accessor :tenant_project_id
2337
+
2338
+ # The tenant project number.
2339
+ # Corresponds to the JSON property `tenantProjectNumber`
2340
+ # @return [Fixnum]
2341
+ attr_accessor :tenant_project_number
2342
+
2343
+ def initialize(**args)
2344
+ update!(**args)
2345
+ end
2346
+
2347
+ # Update properties of this object
2348
+ def update!(**args)
2349
+ @consumer_project_id = args[:consumer_project_id] if args.key?(:consumer_project_id)
2350
+ @consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
2351
+ @consumer_project_state = args[:consumer_project_state] if args.key?(:consumer_project_state)
2352
+ @p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
2353
+ @producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
2354
+ @producer_project_number = args[:producer_project_number] if args.key?(:producer_project_number)
2355
+ @tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id)
2356
+ @tenant_project_number = args[:tenant_project_number] if args.key?(:tenant_project_number)
2357
+ end
2358
+ end
2359
+
2209
2360
  # Readiness checking configuration for VM instances. Unhealthy instances are
2210
2361
  # removed from traffic rotation.
2211
2362
  class ReadinessCheck
@@ -2265,6 +2416,47 @@ module Google
2265
2416
  end
2266
2417
  end
2267
2418
 
2419
+ # Projects transition between and within states based on reasons sent from
2420
+ # various systems. CCFE will provide the CLH with reasons for the current state
2421
+ # per system.The current systems that CCFE supports are: Service Management (
2422
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2423
+ # Billing API)
2424
+ class Reasons
2425
+ include Google::Apis::Core::Hashable
2426
+
2427
+ #
2428
+ # Corresponds to the JSON property `abuse`
2429
+ # @return [String]
2430
+ attr_accessor :abuse
2431
+
2432
+ #
2433
+ # Corresponds to the JSON property `billing`
2434
+ # @return [String]
2435
+ attr_accessor :billing
2436
+
2437
+ #
2438
+ # Corresponds to the JSON property `dataGovernance`
2439
+ # @return [String]
2440
+ attr_accessor :data_governance
2441
+
2442
+ #
2443
+ # Corresponds to the JSON property `serviceManagement`
2444
+ # @return [String]
2445
+ attr_accessor :service_management
2446
+
2447
+ def initialize(**args)
2448
+ update!(**args)
2449
+ end
2450
+
2451
+ # Update properties of this object
2452
+ def update!(**args)
2453
+ @abuse = args[:abuse] if args.key?(:abuse)
2454
+ @billing = args[:billing] if args.key?(:billing)
2455
+ @data_governance = args[:data_governance] if args.key?(:data_governance)
2456
+ @service_management = args[:service_management] if args.key?(:service_management)
2457
+ end
2458
+ end
2459
+
2268
2460
  # Request message for 'Applications.RepairApplication'.
2269
2461
  class RepairApplicationRequest
2270
2462
  include Google::Apis::Core::Hashable
@@ -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.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221017"
25
+ REVISION = "20221205"
26
26
  end
27
27
  end
28
28
  end
@@ -352,12 +352,36 @@ module Google
352
352
  include Google::Apis::Core::JsonObjectSupport
353
353
  end
354
354
 
355
+ class ProjectEvent
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
361
+ class ProjectState
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
367
+ class ProjectsMetadata
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
355
373
  class ReadinessCheck
356
374
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
375
 
358
376
  include Google::Apis::Core::JsonObjectSupport
359
377
  end
360
378
 
379
+ class Reasons
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
361
385
  class RepairApplicationRequest
362
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
387
 
@@ -1029,6 +1053,43 @@ module Google
1029
1053
  end
1030
1054
  end
1031
1055
 
1056
+ class ProjectEvent
1057
+ # @private
1058
+ class Representation < Google::Apis::Core::JsonRepresentation
1059
+ property :event_id, as: 'eventId'
1060
+ property :phase, as: 'phase'
1061
+ property :project_metadata, as: 'projectMetadata', class: Google::Apis::AppengineV1beta::ProjectsMetadata, decorator: Google::Apis::AppengineV1beta::ProjectsMetadata::Representation
1062
+
1063
+ property :state, as: 'state', class: Google::Apis::AppengineV1beta::ProjectState, decorator: Google::Apis::AppengineV1beta::ProjectState::Representation
1064
+
1065
+ end
1066
+ end
1067
+
1068
+ class ProjectState
1069
+ # @private
1070
+ class Representation < Google::Apis::Core::JsonRepresentation
1071
+ property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1beta::Reasons, decorator: Google::Apis::AppengineV1beta::Reasons::Representation
1072
+
1073
+ property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1beta::Reasons, decorator: Google::Apis::AppengineV1beta::Reasons::Representation
1074
+
1075
+ property :state, as: 'state'
1076
+ end
1077
+ end
1078
+
1079
+ class ProjectsMetadata
1080
+ # @private
1081
+ class Representation < Google::Apis::Core::JsonRepresentation
1082
+ property :consumer_project_id, as: 'consumerProjectId'
1083
+ property :consumer_project_number, :numeric_string => true, as: 'consumerProjectNumber'
1084
+ property :consumer_project_state, as: 'consumerProjectState'
1085
+ property :p4_service_account, as: 'p4ServiceAccount'
1086
+ property :producer_project_id, as: 'producerProjectId'
1087
+ property :producer_project_number, :numeric_string => true, as: 'producerProjectNumber'
1088
+ property :tenant_project_id, as: 'tenantProjectId'
1089
+ property :tenant_project_number, :numeric_string => true, as: 'tenantProjectNumber'
1090
+ end
1091
+ end
1092
+
1032
1093
  class ReadinessCheck
1033
1094
  # @private
1034
1095
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1042,6 +1103,16 @@ module Google
1042
1103
  end
1043
1104
  end
1044
1105
 
1106
+ class Reasons
1107
+ # @private
1108
+ class Representation < Google::Apis::Core::JsonRepresentation
1109
+ property :abuse, as: 'abuse'
1110
+ property :billing, as: 'billing'
1111
+ property :data_governance, as: 'dataGovernance'
1112
+ property :service_management, as: 'serviceManagement'
1113
+ end
1114
+ end
1115
+
1045
1116
  class RepairApplicationRequest
1046
1117
  # @private
1047
1118
  class Representation < Google::Apis::Core::JsonRepresentation
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.29.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: 2022-12-12 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.29.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: []