google-apis-appengine_v1 0.53.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
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1
|
2
2
|
|
3
|
+
### v0.55.0 (2024-11-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241118
|
6
|
+
|
7
|
+
### v0.54.0 (2024-10-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241007
|
10
|
+
|
3
11
|
### v0.53.0 (2024-09-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240906
|
@@ -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
|
@@ -1635,6 +1635,49 @@ module Google
|
|
1635
1635
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1636
1636
|
execute_or_queue_command(command, &block)
|
1637
1637
|
end
|
1638
|
+
|
1639
|
+
# Deletes an existing Version resource.
|
1640
|
+
# @param [String] projects_id
|
1641
|
+
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
1642
|
+
# default/versions/v1.
|
1643
|
+
# @param [String] locations_id
|
1644
|
+
# Part of `name`. See documentation of `projectsId`.
|
1645
|
+
# @param [String] applications_id
|
1646
|
+
# Part of `name`. See documentation of `projectsId`.
|
1647
|
+
# @param [String] services_id
|
1648
|
+
# Part of `name`. See documentation of `projectsId`.
|
1649
|
+
# @param [String] versions_id
|
1650
|
+
# Part of `name`. See documentation of `projectsId`.
|
1651
|
+
# @param [String] fields
|
1652
|
+
# Selector specifying which fields to include in a partial response.
|
1653
|
+
# @param [String] quota_user
|
1654
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1655
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1656
|
+
# @param [Google::Apis::RequestOptions] options
|
1657
|
+
# Request-specific options
|
1658
|
+
#
|
1659
|
+
# @yield [result, err] Result & error if block supplied
|
1660
|
+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
1661
|
+
# @yieldparam err [StandardError] error object if request failed
|
1662
|
+
#
|
1663
|
+
# @return [Google::Apis::AppengineV1::Operation]
|
1664
|
+
#
|
1665
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1666
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1667
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1668
|
+
def delete_project_location_application_service_version(projects_id, locations_id, applications_id, services_id, versions_id, fields: nil, quota_user: nil, options: nil, &block)
|
1669
|
+
command = make_simple_command(:delete, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}', options)
|
1670
|
+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
1671
|
+
command.response_class = Google::Apis::AppengineV1::Operation
|
1672
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1673
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1674
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1675
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
1676
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
1677
|
+
command.query['fields'] = fields unless fields.nil?
|
1678
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1679
|
+
execute_or_queue_command(command, &block)
|
1680
|
+
end
|
1638
1681
|
|
1639
1682
|
protected
|
1640
1683
|
|
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
|