google-apis-appengine_v1 0.42.0 → 0.43.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: d933d67069eab1514e5aa2a45279c0af2266ccbb79b0435f07ac614d4ae8218e
4
- data.tar.gz: e7fc136b122dc85411e4dbed244e729e8d253cda45ab32277fb0140166d29d8b
3
+ metadata.gz: 8af8c5559fcd3d3ecc7ee7737203b3baf9283b668643e215db9d0bcb37ea2988
4
+ data.tar.gz: 9388527a1311669f0b4c7d0f5b2bff4d5777c0ee54ab3ddb7d40013a7b828c10
5
5
  SHA512:
6
- metadata.gz: b72bf52354a77a7d7f1c00c339177c9f83b1cf2fc15645ae1169667285f4bb03e3c795fc62d4d547cdd76ed17318076431ab776cc948a2f4186081c28257b8a8
7
- data.tar.gz: fce851c454c705834bd3c994321b5d90e660ffbb1a892403f9751560b389ed7fdeec64b3f454e575205d83077da1755fd6b7f168021f1da4501409c48ee393df
6
+ metadata.gz: 5be7d9b49d80748fae665c9919ff2d9c7616bf7cf820c9ca92697d488cba495a4f32e46392d9d3ede824e7655030808af08872b59c352e214d681f1b6430965e
7
+ data.tar.gz: c2a8d5cb25974fd71d05476612fe6489715ee1b8ace4deae29a4883929827c3c360358d4a5f28b3639bcc26e7fd527c695f239084a959aa7847a3bd32807de9b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.43.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231004
6
+
3
7
  ### v0.42.0 (2023-09-17)
4
8
 
5
9
  * Regenerated from discovery document revision 20230909
@@ -583,6 +583,49 @@ module Google
583
583
  end
584
584
  end
585
585
 
586
+ # ContainerState contains the externally-visible container state that is used to
587
+ # communicate the state and reasoning for that state to the CLH. This data is
588
+ # not persisted by CCFE, but is instead derived from CCFE's internal
589
+ # representation of the container state.
590
+ class ContainerState
591
+ include Google::Apis::Core::Hashable
592
+
593
+ # Containers transition between and within states based on reasons sent from
594
+ # various systems. CCFE will provide the CLH with reasons for the current state
595
+ # per system.The current systems that CCFE supports are: Service Management (
596
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
597
+ # Billing API)
598
+ # Corresponds to the JSON property `currentReasons`
599
+ # @return [Google::Apis::AppengineV1::Reasons]
600
+ attr_accessor :current_reasons
601
+
602
+ # Containers transition between and within states based on reasons sent from
603
+ # various systems. CCFE will provide the CLH with reasons for the current state
604
+ # per system.The current systems that CCFE supports are: Service Management (
605
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
606
+ # Billing API)
607
+ # Corresponds to the JSON property `previousReasons`
608
+ # @return [Google::Apis::AppengineV1::Reasons]
609
+ attr_accessor :previous_reasons
610
+
611
+ # The current state of the container. This state is the culmination of all of
612
+ # the opinions from external systems that CCFE knows about of the container.
613
+ # Corresponds to the JSON property `state`
614
+ # @return [String]
615
+ attr_accessor :state
616
+
617
+ def initialize(**args)
618
+ update!(**args)
619
+ end
620
+
621
+ # Update properties of this object
622
+ def update!(**args)
623
+ @current_reasons = args[:current_reasons] if args.key?(:current_reasons)
624
+ @previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
625
+ @state = args[:state] if args.key?(:state)
626
+ end
627
+ end
628
+
586
629
  # Target scaling by CPU usage.
587
630
  class CpuUtilization
588
631
  include Google::Apis::Core::Hashable
@@ -2181,12 +2224,12 @@ module Google
2181
2224
  # @return [Google::Apis::AppengineV1::ProjectsMetadata]
2182
2225
  attr_accessor :project_metadata
2183
2226
 
2184
- # ProjectState contains the externally-visible project state that is used to
2227
+ # ContainerState contains the externally-visible container state that is used to
2185
2228
  # communicate the state and reasoning for that state to the CLH. This data is
2186
2229
  # not persisted by CCFE, but is instead derived from CCFE's internal
2187
- # representation of the project state.
2230
+ # representation of the container state.
2188
2231
  # Corresponds to the JSON property `state`
2189
- # @return [Google::Apis::AppengineV1::ProjectState]
2232
+ # @return [Google::Apis::AppengineV1::ContainerState]
2190
2233
  attr_accessor :state
2191
2234
 
2192
2235
  def initialize(**args)
@@ -2202,49 +2245,6 @@ module Google
2202
2245
  end
2203
2246
  end
2204
2247
 
2205
- # ProjectState contains the externally-visible project state that is used to
2206
- # communicate the state and reasoning for that state to the CLH. This data is
2207
- # not persisted by CCFE, but is instead derived from CCFE's internal
2208
- # representation of the project state.
2209
- class ProjectState
2210
- include Google::Apis::Core::Hashable
2211
-
2212
- # Projects transition between and within states based on reasons sent from
2213
- # various systems. CCFE will provide the CLH with reasons for the current state
2214
- # per system.The current systems that CCFE supports are: Service Management (
2215
- # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2216
- # Billing API)
2217
- # Corresponds to the JSON property `currentReasons`
2218
- # @return [Google::Apis::AppengineV1::Reasons]
2219
- attr_accessor :current_reasons
2220
-
2221
- # Projects transition between and within states based on reasons sent from
2222
- # various systems. CCFE will provide the CLH with reasons for the current state
2223
- # per system.The current systems that CCFE supports are: Service Management (
2224
- # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2225
- # Billing API)
2226
- # Corresponds to the JSON property `previousReasons`
2227
- # @return [Google::Apis::AppengineV1::Reasons]
2228
- attr_accessor :previous_reasons
2229
-
2230
- # The current state of the project. This state is the culmination of all of the
2231
- # opinions from external systems that CCFE knows about of the project.
2232
- # Corresponds to the JSON property `state`
2233
- # @return [String]
2234
- attr_accessor :state
2235
-
2236
- def initialize(**args)
2237
- update!(**args)
2238
- end
2239
-
2240
- # Update properties of this object
2241
- def update!(**args)
2242
- @current_reasons = args[:current_reasons] if args.key?(:current_reasons)
2243
- @previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
2244
- @state = args[:state] if args.key?(:state)
2245
- end
2246
- end
2247
-
2248
2248
  # ProjectsMetadata is the metadata CCFE stores about the all the relevant
2249
2249
  # projects (tenant, consumer, producer).
2250
2250
  class ProjectsMetadata
@@ -2370,7 +2370,7 @@ module Google
2370
2370
  end
2371
2371
  end
2372
2372
 
2373
- # Projects transition between and within states based on reasons sent from
2373
+ # Containers transition between and within states based on reasons sent from
2374
2374
  # various systems. CCFE will provide the CLH with reasons for the current state
2375
2375
  # per system.The current systems that CCFE supports are: Service Management (
2376
2376
  # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AppengineV1
18
18
  # Version of the google-apis-appengine_v1 gem
19
- GEM_VERSION = "0.42.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230909"
25
+ REVISION = "20231004"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class ContainerState
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class CpuUtilization
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -352,12 +358,6 @@ module Google
352
358
  include Google::Apis::Core::JsonObjectSupport
353
359
  end
354
360
 
355
- class ProjectState
356
- class Representation < Google::Apis::Core::JsonRepresentation; end
357
-
358
- include Google::Apis::Core::JsonObjectSupport
359
- end
360
-
361
361
  class ProjectsMetadata
362
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
363
 
@@ -617,6 +617,17 @@ module Google
617
617
  end
618
618
  end
619
619
 
620
+ class ContainerState
621
+ # @private
622
+ class Representation < Google::Apis::Core::JsonRepresentation
623
+ property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1::Reasons, decorator: Google::Apis::AppengineV1::Reasons::Representation
624
+
625
+ property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1::Reasons, decorator: Google::Apis::AppengineV1::Reasons::Representation
626
+
627
+ property :state, as: 'state'
628
+ end
629
+ end
630
+
620
631
  class CpuUtilization
621
632
  # @private
622
633
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1041,19 +1052,8 @@ module Google
1041
1052
  property :phase, as: 'phase'
1042
1053
  property :project_metadata, as: 'projectMetadata', class: Google::Apis::AppengineV1::ProjectsMetadata, decorator: Google::Apis::AppengineV1::ProjectsMetadata::Representation
1043
1054
 
1044
- property :state, as: 'state', class: Google::Apis::AppengineV1::ProjectState, decorator: Google::Apis::AppengineV1::ProjectState::Representation
1045
-
1046
- end
1047
- end
1055
+ property :state, as: 'state', class: Google::Apis::AppengineV1::ContainerState, decorator: Google::Apis::AppengineV1::ContainerState::Representation
1048
1056
 
1049
- class ProjectState
1050
- # @private
1051
- class Representation < Google::Apis::Core::JsonRepresentation
1052
- property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1::Reasons, decorator: Google::Apis::AppengineV1::Reasons::Representation
1053
-
1054
- property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1::Reasons, decorator: Google::Apis::AppengineV1::Reasons::Representation
1055
-
1056
- property :state, as: 'state'
1057
1057
  end
1058
1058
  end
1059
1059
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-appengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.43.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: 2023-09-17 00:00:00.000000000 Z
11
+ date: 2023-10-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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.43.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
63
63
  post_install_message:
64
64
  rdoc_options: []