google-apis-appengine_v1alpha 0.33.0 → 0.34.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: 412749d618fbc0ad84f0e507dac65d727f90d8e6af2181b8c3fa35b0bac6a4c6
|
4
|
+
data.tar.gz: 69165f3364fc6a71ff44ae9e063b13dd60fc6ee5d33d99c701b80434edeb4a79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f1706a2763f024e19c0dd19efdcbe3888b18a62762e818ea61c59370d30c7605b76d3537a65b721f77acd7f381f46889e1ab385f85c640794fd90dc150bae12
|
7
|
+
data.tar.gz: a07dff3705abf49ceca09586400ada6e5a9129bcaad2e72a438f7d7ca3f5b14c81d90119a4896cb7f423630a0f3ffd2c7f1cad43709ee43424b6f385f402a04b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1alpha
|
2
2
|
|
3
|
+
### v0.34.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241118
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.33.0 (2024-05-19)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.15.0
|
@@ -327,6 +327,34 @@ module Google
|
|
327
327
|
end
|
328
328
|
end
|
329
329
|
|
330
|
+
# For use only by GCE. GceTag is a wrapper around the GCE administrative tag
|
331
|
+
# with parent info.
|
332
|
+
class GceTag
|
333
|
+
include Google::Apis::Core::Hashable
|
334
|
+
|
335
|
+
# The parents(s) of the tag. Eg. projects/123, folders/456 It usually contains
|
336
|
+
# only one parent. But, in some corner cases, it can contain multiple parents.
|
337
|
+
# Currently, organizations are not supported.
|
338
|
+
# Corresponds to the JSON property `parent`
|
339
|
+
# @return [Array<String>]
|
340
|
+
attr_accessor :parent
|
341
|
+
|
342
|
+
# The administrative_tag name.
|
343
|
+
# Corresponds to the JSON property `tag`
|
344
|
+
# @return [String]
|
345
|
+
attr_accessor :tag
|
346
|
+
|
347
|
+
def initialize(**args)
|
348
|
+
update!(**args)
|
349
|
+
end
|
350
|
+
|
351
|
+
# Update properties of this object
|
352
|
+
def update!(**args)
|
353
|
+
@parent = args[:parent] if args.key?(:parent)
|
354
|
+
@tag = args[:tag] if args.key?(:tag)
|
355
|
+
end
|
356
|
+
end
|
357
|
+
|
330
358
|
# Metadata for the given google.cloud.location.Location.
|
331
359
|
class GoogleAppengineV1betaLocationMetadata
|
332
360
|
include Google::Apis::Core::Hashable
|
@@ -921,6 +949,12 @@ module Google
|
|
921
949
|
# @return [String]
|
922
950
|
attr_accessor :consumer_project_state
|
923
951
|
|
952
|
+
# The GCE tags associated with the consumer project and those inherited due to
|
953
|
+
# their ancestry, if any. Not supported by CCFE.
|
954
|
+
# Corresponds to the JSON property `gceTag`
|
955
|
+
# @return [Array<Google::Apis::AppengineV1alpha::GceTag>]
|
956
|
+
attr_accessor :gce_tag
|
957
|
+
|
924
958
|
# The service account authorized to operate on the consumer project. Note: CCFE
|
925
959
|
# only propagates P4SA with default tag to CLH.
|
926
960
|
# Corresponds to the JSON property `p4ServiceAccount`
|
@@ -956,6 +990,7 @@ module Google
|
|
956
990
|
@consumer_project_id = args[:consumer_project_id] if args.key?(:consumer_project_id)
|
957
991
|
@consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
|
958
992
|
@consumer_project_state = args[:consumer_project_state] if args.key?(:consumer_project_state)
|
993
|
+
@gce_tag = args[:gce_tag] if args.key?(:gce_tag)
|
959
994
|
@p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
|
960
995
|
@producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
|
961
996
|
@producer_project_number = args[:producer_project_number] if args.key?(:producer_project_number)
|
@@ -1013,6 +1048,44 @@ module Google
|
|
1013
1048
|
end
|
1014
1049
|
end
|
1015
1050
|
|
1051
|
+
# The request that is passed to CLH during per-resource events. The request will
|
1052
|
+
# be sent with update semantics in all cases except for data governance purge
|
1053
|
+
# events. These events will be sent with delete semantics and the CLH is
|
1054
|
+
# expected to delete the resource receiving this event.
|
1055
|
+
class ResourceEvent
|
1056
|
+
include Google::Apis::Core::Hashable
|
1057
|
+
|
1058
|
+
# The unique ID for this per-resource event. CLHs can use this value to dedup
|
1059
|
+
# repeated calls. required
|
1060
|
+
# Corresponds to the JSON property `eventId`
|
1061
|
+
# @return [String]
|
1062
|
+
attr_accessor :event_id
|
1063
|
+
|
1064
|
+
# The name of the resource for which this event is. required
|
1065
|
+
# Corresponds to the JSON property `name`
|
1066
|
+
# @return [String]
|
1067
|
+
attr_accessor :name
|
1068
|
+
|
1069
|
+
# ContainerState contains the externally-visible container state that is used to
|
1070
|
+
# communicate the state and reasoning for that state to the CLH. This data is
|
1071
|
+
# not persisted by CCFE, but is instead derived from CCFE's internal
|
1072
|
+
# representation of the container state.
|
1073
|
+
# Corresponds to the JSON property `state`
|
1074
|
+
# @return [Google::Apis::AppengineV1alpha::ContainerState]
|
1075
|
+
attr_accessor :state
|
1076
|
+
|
1077
|
+
def initialize(**args)
|
1078
|
+
update!(**args)
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
# Update properties of this object
|
1082
|
+
def update!(**args)
|
1083
|
+
@event_id = args[:event_id] if args.key?(:event_id)
|
1084
|
+
@name = args[:name] if args.key?(:name)
|
1085
|
+
@state = args[:state] if args.key?(:state)
|
1086
|
+
end
|
1087
|
+
end
|
1088
|
+
|
1016
1089
|
# A DNS resource record.
|
1017
1090
|
class ResourceRecord
|
1018
1091
|
include Google::Apis::Core::Hashable
|
@@ -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.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241118"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -76,6 +76,12 @@ module Google
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
77
77
|
end
|
78
78
|
|
79
|
+
class GceTag
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
79
85
|
class GoogleAppengineV1betaLocationMetadata
|
80
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
87
|
|
@@ -172,6 +178,12 @@ module Google
|
|
172
178
|
include Google::Apis::Core::JsonObjectSupport
|
173
179
|
end
|
174
180
|
|
181
|
+
class ResourceEvent
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
175
187
|
class ResourceRecord
|
176
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
189
|
|
@@ -273,6 +285,14 @@ module Google
|
|
273
285
|
end
|
274
286
|
end
|
275
287
|
|
288
|
+
class GceTag
|
289
|
+
# @private
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
291
|
+
collection :parent, as: 'parent'
|
292
|
+
property :tag, as: 'tag'
|
293
|
+
end
|
294
|
+
end
|
295
|
+
|
276
296
|
class GoogleAppengineV1betaLocationMetadata
|
277
297
|
# @private
|
278
298
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -430,6 +450,8 @@ module Google
|
|
430
450
|
property :consumer_project_id, as: 'consumerProjectId'
|
431
451
|
property :consumer_project_number, :numeric_string => true, as: 'consumerProjectNumber'
|
432
452
|
property :consumer_project_state, as: 'consumerProjectState'
|
453
|
+
collection :gce_tag, as: 'gceTag', class: Google::Apis::AppengineV1alpha::GceTag, decorator: Google::Apis::AppengineV1alpha::GceTag::Representation
|
454
|
+
|
433
455
|
property :p4_service_account, as: 'p4ServiceAccount'
|
434
456
|
property :producer_project_id, as: 'producerProjectId'
|
435
457
|
property :producer_project_number, :numeric_string => true, as: 'producerProjectNumber'
|
@@ -449,6 +471,16 @@ module Google
|
|
449
471
|
end
|
450
472
|
end
|
451
473
|
|
474
|
+
class ResourceEvent
|
475
|
+
# @private
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
477
|
+
property :event_id, as: 'eventId'
|
478
|
+
property :name, as: 'name'
|
479
|
+
property :state, as: 'state', class: Google::Apis::AppengineV1alpha::ContainerState, decorator: Google::Apis::AppengineV1alpha::ContainerState::Representation
|
480
|
+
|
481
|
+
end
|
482
|
+
end
|
483
|
+
|
452
484
|
class ResourceRecord
|
453
485
|
# @private
|
454
486
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.34.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: 2024-
|
11
|
+
date: 2024-12-04 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_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.34.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.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for App Engine Admin API V1alpha
|