google-apis-appengine_v1 0.54.0 → 0.56.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: 7059be97d883401509a81a895697d854d609d19e1df2a1d4237e2e6ed1415a10
4
- data.tar.gz: 0f0ed08a1f61561f6e2b4b733c851cb0a475ed8b883adeec2f26aa41362b8ac8
3
+ metadata.gz: 9150c291c7289f53048a5efac234a0fa27c870522a181f67d197c28e77550df4
4
+ data.tar.gz: aef5ba00525fd33b05e522ae30fb26ee45fe3e41aadf577d1ff1ac50aa084a98
5
5
  SHA512:
6
- metadata.gz: 072e3ea29c63a9673656e54d638bb69cfe24fe60d91fe700222f4e1f1d142770c261dd47ce27cf549b9bce86730a5cf24fd241cc4737b7b45bf4b7ef61bc0461
7
- data.tar.gz: 771f3fa645efd7fe7f779c716ebb009a159b33e4a972e564e8e7b4f1cf4a173027982a505a3b3346eb314b12c8ac9406ffaf97a95b29d05dab0ecd9b7e9c7421
6
+ metadata.gz: bbc7e90bd4291a1cabd9fd7fca7e9a32fa359ed922df38f2a55263a4fd10fe37fdb75e2a8e9917ff0b5d6c965f3e9a33e1e195c77f97c6a6eb6a4e0129f78afc
7
+ data.tar.gz: dd8b3d3a164c4d4241ad783b40fb88018e384aae040629585e7654ab29a649d651b7edac21fb571f28d280cdae3cfef82ab0dce04511f1d695427a6ff8751056
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.56.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241205
6
+
7
+ ### v0.55.0 (2024-11-24)
8
+
9
+ * Regenerated from discovery document revision 20241118
10
+
3
11
  ### v0.54.0 (2024-10-20)
4
12
 
5
13
  * Regenerated from discovery document revision 20241007
@@ -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.54.0"
19
+ GEM_VERSION = "0.56.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 = "20241007"
25
+ REVISION = "20241205"
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
@@ -1636,6 +1636,46 @@ module Google
1636
1636
  execute_or_queue_command(command, &block)
1637
1637
  end
1638
1638
 
1639
+ # Deletes the specified service and all enclosed versions.
1640
+ # @param [String] projects_id
1641
+ # Part of `name`. Name of the resource requested. Example: apps/myapp/services/
1642
+ # default.
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] fields
1650
+ # Selector specifying which fields to include in a partial response.
1651
+ # @param [String] quota_user
1652
+ # Available to use for quota purposes for server-side applications. Can be any
1653
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1654
+ # @param [Google::Apis::RequestOptions] options
1655
+ # Request-specific options
1656
+ #
1657
+ # @yield [result, err] Result & error if block supplied
1658
+ # @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
1659
+ # @yieldparam err [StandardError] error object if request failed
1660
+ #
1661
+ # @return [Google::Apis::AppengineV1::Operation]
1662
+ #
1663
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1664
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1665
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1666
+ def delete_project_location_application_service(projects_id, locations_id, applications_id, services_id, fields: nil, quota_user: nil, options: nil, &block)
1667
+ command = make_simple_command(:delete, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
1668
+ command.response_representation = Google::Apis::AppengineV1::Operation::Representation
1669
+ command.response_class = Google::Apis::AppengineV1::Operation
1670
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1671
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1672
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1673
+ command.params['servicesId'] = services_id unless services_id.nil?
1674
+ command.query['fields'] = fields unless fields.nil?
1675
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1676
+ execute_or_queue_command(command, &block)
1677
+ end
1678
+
1639
1679
  # Deletes an existing Version resource.
1640
1680
  # @param [String] projects_id
1641
1681
  # Part of `name`. Name of the resource requested. Example: apps/myapp/services/
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.54.0
4
+ version: 0.56.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-10-27 00:00:00.000000000 Z
11
+ date: 2024-12-15 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.54.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.56.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.21
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for App Engine Admin API V1