google-apis-appengine_v1 0.54.0 → 0.55.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: 86c110b022f3e5932e070899252064a65999a2b7533699c7970ae8c4c36aa6e5
|
4
|
+
data.tar.gz: 45c33f54daef2cb7b5b1ede5ae7a13e252e2ddeefa1f2251cfb337239975d54e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37c5de7bdff6ccbf8a448e6bfc74ec0037151262084052e76defbe7d84345e6f2f8e34ad97c36842b5e1b5c6274c83903aa47f1b6351745dcaafcae3b3454b2f
|
7
|
+
data.tar.gz: 1b3a963e4ca499e137a98331c722103bde8b1ac5a6f5eea5653afd2dda64fc4353fe54c8250fec299f9ad8ab19361a3e2d932a13002c7c1a6ac70db1288823c3
|
data/CHANGELOG.md
CHANGED
@@ -2561,6 +2561,44 @@ module Google
|
|
2561
2561
|
end
|
2562
2562
|
end
|
2563
2563
|
|
2564
|
+
# The request that is passed to CLH during per-resource events. The request will
|
2565
|
+
# be sent with update semantics in all cases except for data governance purge
|
2566
|
+
# events. These events will be sent with delete semantics and the CLH is
|
2567
|
+
# expected to delete the resource receiving this event.
|
2568
|
+
class ResourceEvent
|
2569
|
+
include Google::Apis::Core::Hashable
|
2570
|
+
|
2571
|
+
# The unique ID for this per-resource event. CLHs can use this value to dedup
|
2572
|
+
# repeated calls. required
|
2573
|
+
# Corresponds to the JSON property `eventId`
|
2574
|
+
# @return [String]
|
2575
|
+
attr_accessor :event_id
|
2576
|
+
|
2577
|
+
# The name of the resource for which this event is. required
|
2578
|
+
# Corresponds to the JSON property `name`
|
2579
|
+
# @return [String]
|
2580
|
+
attr_accessor :name
|
2581
|
+
|
2582
|
+
# ContainerState contains the externally-visible container state that is used to
|
2583
|
+
# communicate the state and reasoning for that state to the CLH. This data is
|
2584
|
+
# not persisted by CCFE, but is instead derived from CCFE's internal
|
2585
|
+
# representation of the container state.
|
2586
|
+
# Corresponds to the JSON property `state`
|
2587
|
+
# @return [Google::Apis::AppengineV1::ContainerState]
|
2588
|
+
attr_accessor :state
|
2589
|
+
|
2590
|
+
def initialize(**args)
|
2591
|
+
update!(**args)
|
2592
|
+
end
|
2593
|
+
|
2594
|
+
# Update properties of this object
|
2595
|
+
def update!(**args)
|
2596
|
+
@event_id = args[:event_id] if args.key?(:event_id)
|
2597
|
+
@name = args[:name] if args.key?(:name)
|
2598
|
+
@state = args[:state] if args.key?(:state)
|
2599
|
+
end
|
2600
|
+
end
|
2601
|
+
|
2564
2602
|
# A DNS resource record.
|
2565
2603
|
class ResourceRecord
|
2566
2604
|
include Google::Apis::Core::Hashable
|
@@ -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.55.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
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
|
@@ -406,6 +406,12 @@ module Google
|
|
406
406
|
include Google::Apis::Core::JsonObjectSupport
|
407
407
|
end
|
408
408
|
|
409
|
+
class ResourceEvent
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
409
415
|
class ResourceRecord
|
410
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
417
|
|
@@ -1161,6 +1167,16 @@ module Google
|
|
1161
1167
|
end
|
1162
1168
|
end
|
1163
1169
|
|
1170
|
+
class ResourceEvent
|
1171
|
+
# @private
|
1172
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1173
|
+
property :event_id, as: 'eventId'
|
1174
|
+
property :name, as: 'name'
|
1175
|
+
property :state, as: 'state', class: Google::Apis::AppengineV1::ContainerState, decorator: Google::Apis::AppengineV1::ContainerState::Representation
|
1176
|
+
|
1177
|
+
end
|
1178
|
+
end
|
1179
|
+
|
1164
1180
|
class ResourceRecord
|
1165
1181
|
# @private
|
1166
1182
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.55.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_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.55.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: []
|
@@ -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 V1
|