google-apis-appengine_v1alpha 0.27.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1970687b6f8a5cb4f3d6e9c3b44a37e325b3163261d310f7a05e24d2630fcba4
|
4
|
+
data.tar.gz: c4bd32a5f1ecb87917a7d16d58ee009ed3b9db4494f21450334bdd09cf100cac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a9ffe4594c6ada0d337c89de929326b8438c4cc31d5d25577fd62870b88ab791b8c59dce834bbd04ef7568869b3f288fa3b1db17e917df253e35f80066c688c
|
7
|
+
data.tar.gz: f324319f991a56d7acb35282205ed4a15bbeb1507d8598c02533c03054c092c948a74f101d0d2501601d7a52a8506c3aefe6df977a76b91f0220fea1d240ac4c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1alpha
|
2
2
|
|
3
|
+
### v0.29.0 (2024-01-23)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.13.0
|
6
|
+
|
7
|
+
### v0.28.0 (2023-10-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231004
|
10
|
+
|
3
11
|
### v0.27.0 (2023-08-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230807
|
@@ -165,6 +165,49 @@ module Google
|
|
165
165
|
end
|
166
166
|
end
|
167
167
|
|
168
|
+
# ContainerState contains the externally-visible container state that is used to
|
169
|
+
# communicate the state and reasoning for that state to the CLH. This data is
|
170
|
+
# not persisted by CCFE, but is instead derived from CCFE's internal
|
171
|
+
# representation of the container state.
|
172
|
+
class ContainerState
|
173
|
+
include Google::Apis::Core::Hashable
|
174
|
+
|
175
|
+
# Containers transition between and within states based on reasons sent from
|
176
|
+
# various systems. CCFE will provide the CLH with reasons for the current state
|
177
|
+
# per system.The current systems that CCFE supports are: Service Management (
|
178
|
+
# Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
|
179
|
+
# Billing API)
|
180
|
+
# Corresponds to the JSON property `currentReasons`
|
181
|
+
# @return [Google::Apis::AppengineV1alpha::Reasons]
|
182
|
+
attr_accessor :current_reasons
|
183
|
+
|
184
|
+
# Containers transition between and within states based on reasons sent from
|
185
|
+
# various systems. CCFE will provide the CLH with reasons for the current state
|
186
|
+
# per system.The current systems that CCFE supports are: Service Management (
|
187
|
+
# Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
|
188
|
+
# Billing API)
|
189
|
+
# Corresponds to the JSON property `previousReasons`
|
190
|
+
# @return [Google::Apis::AppengineV1alpha::Reasons]
|
191
|
+
attr_accessor :previous_reasons
|
192
|
+
|
193
|
+
# The current state of the container. This state is the culmination of all of
|
194
|
+
# the opinions from external systems that CCFE knows about of the container.
|
195
|
+
# Corresponds to the JSON property `state`
|
196
|
+
# @return [String]
|
197
|
+
attr_accessor :state
|
198
|
+
|
199
|
+
def initialize(**args)
|
200
|
+
update!(**args)
|
201
|
+
end
|
202
|
+
|
203
|
+
# Update properties of this object
|
204
|
+
def update!(**args)
|
205
|
+
@current_reasons = args[:current_reasons] if args.key?(:current_reasons)
|
206
|
+
@previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
|
207
|
+
@state = args[:state] if args.key?(:state)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
168
211
|
# Metadata for the given google.longrunning.Operation during a google.appengine.
|
169
212
|
# v1.CreateVersionRequest.
|
170
213
|
class CreateVersionMetadataV1
|
@@ -832,12 +875,12 @@ module Google
|
|
832
875
|
# @return [Google::Apis::AppengineV1alpha::ProjectsMetadata]
|
833
876
|
attr_accessor :project_metadata
|
834
877
|
|
835
|
-
#
|
878
|
+
# ContainerState contains the externally-visible container state that is used to
|
836
879
|
# communicate the state and reasoning for that state to the CLH. This data is
|
837
880
|
# not persisted by CCFE, but is instead derived from CCFE's internal
|
838
|
-
# representation of the
|
881
|
+
# representation of the container state.
|
839
882
|
# Corresponds to the JSON property `state`
|
840
|
-
# @return [Google::Apis::AppengineV1alpha::
|
883
|
+
# @return [Google::Apis::AppengineV1alpha::ContainerState]
|
841
884
|
attr_accessor :state
|
842
885
|
|
843
886
|
def initialize(**args)
|
@@ -853,49 +896,6 @@ module Google
|
|
853
896
|
end
|
854
897
|
end
|
855
898
|
|
856
|
-
# ProjectState contains the externally-visible project state that is used to
|
857
|
-
# communicate the state and reasoning for that state to the CLH. This data is
|
858
|
-
# not persisted by CCFE, but is instead derived from CCFE's internal
|
859
|
-
# representation of the project state.
|
860
|
-
class ProjectState
|
861
|
-
include Google::Apis::Core::Hashable
|
862
|
-
|
863
|
-
# Projects transition between and within states based on reasons sent from
|
864
|
-
# various systems. CCFE will provide the CLH with reasons for the current state
|
865
|
-
# per system.The current systems that CCFE supports are: Service Management (
|
866
|
-
# Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
|
867
|
-
# Billing API)
|
868
|
-
# Corresponds to the JSON property `currentReasons`
|
869
|
-
# @return [Google::Apis::AppengineV1alpha::Reasons]
|
870
|
-
attr_accessor :current_reasons
|
871
|
-
|
872
|
-
# Projects transition between and within states based on reasons sent from
|
873
|
-
# various systems. CCFE will provide the CLH with reasons for the current state
|
874
|
-
# per system.The current systems that CCFE supports are: Service Management (
|
875
|
-
# Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
|
876
|
-
# Billing API)
|
877
|
-
# Corresponds to the JSON property `previousReasons`
|
878
|
-
# @return [Google::Apis::AppengineV1alpha::Reasons]
|
879
|
-
attr_accessor :previous_reasons
|
880
|
-
|
881
|
-
# The current state of the project. This state is the culmination of all of the
|
882
|
-
# opinions from external systems that CCFE knows about of the project.
|
883
|
-
# Corresponds to the JSON property `state`
|
884
|
-
# @return [String]
|
885
|
-
attr_accessor :state
|
886
|
-
|
887
|
-
def initialize(**args)
|
888
|
-
update!(**args)
|
889
|
-
end
|
890
|
-
|
891
|
-
# Update properties of this object
|
892
|
-
def update!(**args)
|
893
|
-
@current_reasons = args[:current_reasons] if args.key?(:current_reasons)
|
894
|
-
@previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
|
895
|
-
@state = args[:state] if args.key?(:state)
|
896
|
-
end
|
897
|
-
end
|
898
|
-
|
899
899
|
# ProjectsMetadata is the metadata CCFE stores about the all the relevant
|
900
900
|
# projects (tenant, consumer, producer).
|
901
901
|
class ProjectsMetadata
|
@@ -962,7 +962,7 @@ module Google
|
|
962
962
|
end
|
963
963
|
end
|
964
964
|
|
965
|
-
#
|
965
|
+
# Containers transition between and within states based on reasons sent from
|
966
966
|
# various systems. CCFE will provide the CLH with reasons for the current state
|
967
967
|
# per system.The current systems that CCFE supports are: Service Management (
|
968
968
|
# Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AppengineV1alpha
|
18
18
|
# Version of the google-apis-appengine_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.13.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
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class ContainerState
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class CreateVersionMetadataV1
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -154,12 +160,6 @@ module Google
|
|
154
160
|
include Google::Apis::Core::JsonObjectSupport
|
155
161
|
end
|
156
162
|
|
157
|
-
class ProjectState
|
158
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
-
|
160
|
-
include Google::Apis::Core::JsonObjectSupport
|
161
|
-
end
|
162
|
-
|
163
163
|
class ProjectsMetadata
|
164
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
165
|
|
@@ -223,6 +223,17 @@ module Google
|
|
223
223
|
end
|
224
224
|
end
|
225
225
|
|
226
|
+
class ContainerState
|
227
|
+
# @private
|
228
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
229
|
+
property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1alpha::Reasons, decorator: Google::Apis::AppengineV1alpha::Reasons::Representation
|
230
|
+
|
231
|
+
property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1alpha::Reasons, decorator: Google::Apis::AppengineV1alpha::Reasons::Representation
|
232
|
+
|
233
|
+
property :state, as: 'state'
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
226
237
|
class CreateVersionMetadataV1
|
227
238
|
# @private
|
228
239
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -408,19 +419,8 @@ module Google
|
|
408
419
|
property :phase, as: 'phase'
|
409
420
|
property :project_metadata, as: 'projectMetadata', class: Google::Apis::AppengineV1alpha::ProjectsMetadata, decorator: Google::Apis::AppengineV1alpha::ProjectsMetadata::Representation
|
410
421
|
|
411
|
-
property :state, as: 'state', class: Google::Apis::AppengineV1alpha::
|
412
|
-
|
413
|
-
end
|
414
|
-
end
|
422
|
+
property :state, as: 'state', class: Google::Apis::AppengineV1alpha::ContainerState, decorator: Google::Apis::AppengineV1alpha::ContainerState::Representation
|
415
423
|
|
416
|
-
class ProjectState
|
417
|
-
# @private
|
418
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
419
|
-
property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1alpha::Reasons, decorator: Google::Apis::AppengineV1alpha::Reasons::Representation
|
420
|
-
|
421
|
-
property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1alpha::Reasons, decorator: Google::Apis::AppengineV1alpha::Reasons::Representation
|
422
|
-
|
423
|
-
property :state, as: 'state'
|
424
424
|
end
|
425
425
|
end
|
426
426
|
|
@@ -32,6 +32,8 @@ module Google
|
|
32
32
|
#
|
33
33
|
# @see https://cloud.google.com/appengine/docs/admin-api/
|
34
34
|
class AppengineService < Google::Apis::Core::BaseService
|
35
|
+
DEFAULT_ENDPOINT_TEMPLATE = "https://appengine.$UNIVERSE_DOMAIN$/"
|
36
|
+
|
35
37
|
# @return [String]
|
36
38
|
# API key. Your API key identifies your project and provides you with API access,
|
37
39
|
# quota, and reports. Required unless you provide an OAuth 2.0 token.
|
@@ -43,7 +45,7 @@ module Google
|
|
43
45
|
attr_accessor :quota_user
|
44
46
|
|
45
47
|
def initialize
|
46
|
-
super(
|
48
|
+
super(DEFAULT_ENDPOINT_TEMPLATE, '',
|
47
49
|
client_name: 'google-apis-appengine_v1alpha',
|
48
50
|
client_version: Google::Apis::AppengineV1alpha::GEM_VERSION)
|
49
51
|
@batch_path = 'batch'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-appengine_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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:
|
11
|
+
date: 2024-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.12.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.12.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.29.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1alpha
|
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.
|
78
|
+
rubygems_version: 3.5.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for App Engine Admin API V1alpha
|