google-apis-appengine_v1 0.35.0 → 0.36.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e1097c81370741b2e9f636e69066127b59ab26cc5ecaec8b5c429159c678658
4
- data.tar.gz: d90c83ab27968159fac34e693cf360e64b0e3878eda56ebecc37021dbf7917f7
3
+ metadata.gz: 30a3eaf11dbbcb43bcbe84c086d45effec7c095d64f0c24a5c6275bea1eedb14
4
+ data.tar.gz: d7a775796cb51833572252a27584cfe3299452a6cb2df5edfdda06076d090646
5
5
  SHA512:
6
- metadata.gz: 4ff8d9cbd89425aa45c6432462f3a058eb5aaa792b4fe330b4b8cabe546d10255a2b3de21cd6aa0945d406b2e4153dc61088a4096dc41db64e64b402af3ff5d5
7
- data.tar.gz: 8a15cc11725f0e07f3551da681a619bc0eb995101e0abe2ddf3ce775ecef73fe57650e94ce795630b7f3b249da9650c71a9709c94795a06ca5daeb6217ca30e7
6
+ metadata.gz: b1fc1216d236a5ee344a9b20a79f5ad1eb3343a57005814764315371bb19dc51e581a508880059eefca28638f2d80054df17373319fadcfbe2f4e5e619875a9b
7
+ data.tar.gz: b251e1b99e211f291a05ab1112ed56ef39c98f06a8db8fc586a93b6cb0ca3ccdedc9b2b18083513e19be8133e601c6aba4bc641952504d36b4e0026c8b28d4de
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.36.0 (2023-06-04)
4
+
5
+ * Regenerated from discovery document revision 20230529
6
+
3
7
  ### v0.35.0 (2023-04-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20230424
@@ -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.35.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230424"
25
+ REVISION = "20230529"
26
26
  end
27
27
  end
28
28
  end
@@ -1636,6 +1636,54 @@ module Google
1636
1636
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1637
1637
  execute_or_queue_command(command, &block)
1638
1638
  end
1639
+
1640
+ # Recreates the required App Engine features for the specified App Engine
1641
+ # application, for example a Cloud Storage bucket or App Engine service account.
1642
+ # Use this method if you receive an error message about a missing feature, for
1643
+ # example, Error retrieving the App Engine service account. If you have deleted
1644
+ # your App Engine service account, this will not be able to recreate it. Instead,
1645
+ # you should attempt to use the IAM undelete API if possible at https://cloud.
1646
+ # google.com/iam/reference/rest/v1/projects.serviceAccounts/undelete?apix_params=
1647
+ # %7B"name"%3A"projects%2F-%2FserviceAccounts%2Funique_id"%2C"resource"%3A%7B%7D%
1648
+ # 7D . If the deletion was recent, the numeric ID can be found in the Cloud
1649
+ # Console Activity Log.
1650
+ # @param [String] projects_id
1651
+ # Part of `name`. Name of the application to repair. Example: apps/myapp
1652
+ # @param [String] locations_id
1653
+ # Part of `name`. See documentation of `projectsId`.
1654
+ # @param [String] applications_id
1655
+ # Part of `name`. See documentation of `projectsId`.
1656
+ # @param [Google::Apis::AppengineV1::RepairApplicationRequest] repair_application_request_object
1657
+ # @param [String] fields
1658
+ # Selector specifying which fields to include in a partial response.
1659
+ # @param [String] quota_user
1660
+ # Available to use for quota purposes for server-side applications. Can be any
1661
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1662
+ # @param [Google::Apis::RequestOptions] options
1663
+ # Request-specific options
1664
+ #
1665
+ # @yield [result, err] Result & error if block supplied
1666
+ # @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
1667
+ # @yieldparam err [StandardError] error object if request failed
1668
+ #
1669
+ # @return [Google::Apis::AppengineV1::Operation]
1670
+ #
1671
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1672
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1673
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1674
+ def repair_project_location_application(projects_id, locations_id, applications_id, repair_application_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1675
+ command = make_simple_command(:post, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}:repair', options)
1676
+ command.request_representation = Google::Apis::AppengineV1::RepairApplicationRequest::Representation
1677
+ command.request_object = repair_application_request_object
1678
+ command.response_representation = Google::Apis::AppengineV1::Operation::Representation
1679
+ command.response_class = Google::Apis::AppengineV1::Operation
1680
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1681
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1682
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1683
+ command.query['fields'] = fields unless fields.nil?
1684
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1685
+ execute_or_queue_command(command, &block)
1686
+ end
1639
1687
 
1640
1688
  protected
1641
1689
 
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.35.0
4
+ version: 0.36.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: 2023-04-30 00:00:00.000000000 Z
11
+ date: 2023-06-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.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.36.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: []