google-apis-appengine_v1 0.70.0 → 0.72.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: 64c6625dde2b4a88b8ddf1b653416e35e58df4bdd21a8082074be61829121d08
4
- data.tar.gz: 11961a15c966f38ffe63eeaece58fe21e5414a4d16c0beb75b1c1da4ed16025f
3
+ metadata.gz: 158070939c463ff2e2b39bc4a8539efc54482df7acf7133aa64240db8e2252c8
4
+ data.tar.gz: 7071ff010bcd5156ba58a50e068744c24c60dd4eba43686e083b6aac77c8fc1f
5
5
  SHA512:
6
- metadata.gz: 74adaa20895018ec931fb3a07eeeb19d4f60d3955d1efc373aea988ac3991ada210768cae4f8112aa075f1e9a3b16ab639f39b735e607709f577532f65fa123f
7
- data.tar.gz: 306582b4b8759cfc5de0d909ac57cedd8e85a079c8e7a12c1e89bafd79d2791af8869ca1e2e92f5a40cc02561f3bdb37f96705d9ea2e6071bfcada1a3c14a455
6
+ metadata.gz: 3a4f24515ee36ebd40816da2b86e51f93f347282d79ca8e0a23d3535161405c1fbeb3addf5ce75e70d1d401364c643c9d5e9c7e9182e89bca6907b95d0181af2
7
+ data.tar.gz: 013f87a0057883c27284eea4866af75182df3b9398a5de906fe592cd3a1e45a78afe92cc3c1c4071699a48a990bfbd7c49231b8b47dfcae964977b6b26fb921c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.72.0 (2026-02-08)
4
+
5
+ * Regenerated from discovery document revision 20260202
6
+
7
+ ### v0.71.0 (2026-02-01)
8
+
9
+ * Regenerated from discovery document revision 20260126
10
+
3
11
  ### v0.70.0 (2026-01-25)
4
12
 
5
13
  * Regenerated from discovery document revision 20260120
@@ -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.70.0"
19
+ GEM_VERSION = "0.72.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260120"
25
+ REVISION = "20260202"
26
26
  end
27
27
  end
28
28
  end
@@ -905,7 +905,11 @@ module Google
905
905
  execute_or_queue_command(command, &block)
906
906
  end
907
907
 
908
- # Lists information about the supported locations for this service.
908
+ # Lists information about the supported locations for this service. This method
909
+ # can be called in two ways: List all public locations: Use the path GET /v1/
910
+ # locations. List project-visible locations: Use the path GET /v1/projects/`
911
+ # project_id`/locations. This may include public locations as well as private or
912
+ # other locations specifically visible to the project.
909
913
  # @param [String] apps_id
910
914
  # Part of `name`. The resource that owns the locations collection, if applicable.
911
915
  # @param [Array<String>, String] extra_location_types
@@ -2425,6 +2429,61 @@ module Google
2425
2429
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2426
2430
  execute_or_queue_command(command, &block)
2427
2431
  end
2432
+
2433
+ # Stops a running instance.The instance might be automatically recreated based
2434
+ # on the scaling settings of the version. For more information, see "How
2435
+ # Instances are Managed" (standard environment (https://cloud.google.com/
2436
+ # appengine/docs/standard/python/how-instances-are-managed) | flexible
2437
+ # environment (https://cloud.google.com/appengine/docs/flexible/python/how-
2438
+ # instances-are-managed)).To ensure that instances are not re-created and avoid
2439
+ # getting billed, you can stop all instances within the target version by
2440
+ # changing the serving status of the version to STOPPED with the apps.services.
2441
+ # versions.patch (https://cloud.google.com/appengine/docs/admin-api/reference/
2442
+ # rest/v1/apps.services.versions/patch) method.
2443
+ # @param [String] projects_id
2444
+ # Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
2445
+ # services/default/versions/v1/instances/instance-1.
2446
+ # @param [String] locations_id
2447
+ # Part of `name`. See documentation of `projectsId`.
2448
+ # @param [String] applications_id
2449
+ # Part of `name`. See documentation of `projectsId`.
2450
+ # @param [String] services_id
2451
+ # Part of `name`. See documentation of `projectsId`.
2452
+ # @param [String] versions_id
2453
+ # Part of `name`. See documentation of `projectsId`.
2454
+ # @param [String] instances_id
2455
+ # Part of `name`. See documentation of `projectsId`.
2456
+ # @param [String] fields
2457
+ # Selector specifying which fields to include in a partial response.
2458
+ # @param [String] quota_user
2459
+ # Available to use for quota purposes for server-side applications. Can be any
2460
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2461
+ # @param [Google::Apis::RequestOptions] options
2462
+ # Request-specific options
2463
+ #
2464
+ # @yield [result, err] Result & error if block supplied
2465
+ # @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
2466
+ # @yieldparam err [StandardError] error object if request failed
2467
+ #
2468
+ # @return [Google::Apis::AppengineV1::Operation]
2469
+ #
2470
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2471
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2472
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2473
+ def delete_project_location_application_service_version_instance(projects_id, locations_id, applications_id, services_id, versions_id, instances_id, fields: nil, quota_user: nil, options: nil, &block)
2474
+ command = make_simple_command(:delete, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}', options)
2475
+ command.response_representation = Google::Apis::AppengineV1::Operation::Representation
2476
+ command.response_class = Google::Apis::AppengineV1::Operation
2477
+ command.params['projectsId'] = projects_id unless projects_id.nil?
2478
+ command.params['locationsId'] = locations_id unless locations_id.nil?
2479
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
2480
+ command.params['servicesId'] = services_id unless services_id.nil?
2481
+ command.params['versionsId'] = versions_id unless versions_id.nil?
2482
+ command.params['instancesId'] = instances_id unless instances_id.nil?
2483
+ command.query['fields'] = fields unless fields.nil?
2484
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2485
+ execute_or_queue_command(command, &block)
2486
+ end
2428
2487
 
2429
2488
  protected
2430
2489
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-appengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.70.0
4
+ version: 0.72.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.70.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.72.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
62
62
  rdoc_options: []
63
63
  require_paths: