google-apis-appengine_v1 0.41.0 → 0.43.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8af8c5559fcd3d3ecc7ee7737203b3baf9283b668643e215db9d0bcb37ea2988
|
4
|
+
data.tar.gz: 9388527a1311669f0b4c7d0f5b2bff4d5777c0ee54ab3ddb7d40013a7b828c10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5be7d9b49d80748fae665c9919ff2d9c7616bf7cf820c9ca92697d488cba495a4f32e46392d9d3ede824e7655030808af08872b59c352e214d681f1b6430965e
|
7
|
+
data.tar.gz: c2a8d5cb25974fd71d05476612fe6489715ee1b8ace4deae29a4883929827c3c360358d4a5f28b3639bcc26e7fd527c695f239084a959aa7847a3bd32807de9b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.42.0 (2023-09-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230909
|
10
|
+
|
3
11
|
### v0.41.0 (2023-09-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230831
|
@@ -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
|
-
#
|
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
|
2230
|
+
# representation of the container state.
|
2188
2231
|
# Corresponds to the JSON property `state`
|
2189
|
-
# @return [Google::Apis::AppengineV1::
|
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
|
-
#
|
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
|
@@ -2555,6 +2555,13 @@ module Google
|
|
2555
2555
|
class Service
|
2556
2556
|
include Google::Apis::Core::Hashable
|
2557
2557
|
|
2558
|
+
# Additional Google Generated Customer Metadata, this field won't be provided by
|
2559
|
+
# default and can be requested by setting the IncludeExtraData field in
|
2560
|
+
# GetServiceRequest
|
2561
|
+
# Corresponds to the JSON property `generatedCustomerMetadata`
|
2562
|
+
# @return [Hash<String,Object>]
|
2563
|
+
attr_accessor :generated_customer_metadata
|
2564
|
+
|
2558
2565
|
# Relative name of the service within the application. Example: default.@
|
2559
2566
|
# OutputOnly
|
2560
2567
|
# Corresponds to the JSON property `id`
|
@@ -2599,6 +2606,7 @@ module Google
|
|
2599
2606
|
|
2600
2607
|
# Update properties of this object
|
2601
2608
|
def update!(**args)
|
2609
|
+
@generated_customer_metadata = args[:generated_customer_metadata] if args.key?(:generated_customer_metadata)
|
2602
2610
|
@id = args[:id] if args.key?(:id)
|
2603
2611
|
@labels = args[:labels] if args.key?(:labels)
|
2604
2612
|
@name = args[:name] if args.key?(:name)
|
@@ -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.
|
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 = "
|
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,22 +1052,11 @@ 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::
|
1055
|
+
property :state, as: 'state', class: Google::Apis::AppengineV1::ContainerState, decorator: Google::Apis::AppengineV1::ContainerState::Representation
|
1045
1056
|
|
1046
1057
|
end
|
1047
1058
|
end
|
1048
1059
|
|
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
|
-
end
|
1058
|
-
end
|
1059
|
-
|
1060
1060
|
class ProjectsMetadata
|
1061
1061
|
# @private
|
1062
1062
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1139,6 +1139,7 @@ module Google
|
|
1139
1139
|
class Service
|
1140
1140
|
# @private
|
1141
1141
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1142
|
+
hash :generated_customer_metadata, as: 'generatedCustomerMetadata'
|
1142
1143
|
property :id, as: 'id'
|
1143
1144
|
hash :labels, as: 'labels'
|
1144
1145
|
property :name, as: 'name'
|
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.
|
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-
|
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.
|
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: []
|