google-apis-appengine_v1 0.57.0 → 0.58.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/appengine_v1/gem_version.rb +2 -2
- data/lib/google/apis/appengine_v1/service.rb +46 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25a3a0a7a34594941ab439e623137f8f0b778aa89f688dfca635d4597be3ee97
|
4
|
+
data.tar.gz: 8cffbc1a9806ad50ff85eaf7b5dac7ad5150edb93cfa955afcad96b8b14bae09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcb415f97523db959755fdcb80c09178122cd48c10bdac2d817f3ca4a70c2eb1fa15a0ec80f7cab1404dbb60cf05d54656f627002e6bdd537e421411dd4d3b15
|
7
|
+
data.tar.gz: 00c1b9f458d27aeb163598729e314ea60bd1f58347ed02fb0d921324cf3314666324e46119c1f6bcf3ef0cbb0e9e40e0033c3ca0acad81c88fe1e4ed3ae7d353
|
data/CHANGELOG.md
CHANGED
@@ -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.58.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250310"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1594,6 +1594,52 @@ module Google
|
|
1594
1594
|
execute_or_queue_command(command, &block)
|
1595
1595
|
end
|
1596
1596
|
|
1597
|
+
# Updates the specified Application resource. You can update the following
|
1598
|
+
# fields: auth_domain - Google authentication domain for controlling user access
|
1599
|
+
# to the application. default_cookie_expiration - Cookie expiration policy for
|
1600
|
+
# the application. iap - Identity-Aware Proxy properties for the application.
|
1601
|
+
# @param [String] projects_id
|
1602
|
+
# Part of `name`. Name of the Application resource to update. Example: apps/
|
1603
|
+
# myapp.
|
1604
|
+
# @param [String] locations_id
|
1605
|
+
# Part of `name`. See documentation of `projectsId`.
|
1606
|
+
# @param [String] applications_id
|
1607
|
+
# Part of `name`. See documentation of `projectsId`.
|
1608
|
+
# @param [Google::Apis::AppengineV1::Application] application_object
|
1609
|
+
# @param [String] update_mask
|
1610
|
+
# Required. Standard field mask for the set of fields to be updated.
|
1611
|
+
# @param [String] fields
|
1612
|
+
# Selector specifying which fields to include in a partial response.
|
1613
|
+
# @param [String] quota_user
|
1614
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1615
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1616
|
+
# @param [Google::Apis::RequestOptions] options
|
1617
|
+
# Request-specific options
|
1618
|
+
#
|
1619
|
+
# @yield [result, err] Result & error if block supplied
|
1620
|
+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
1621
|
+
# @yieldparam err [StandardError] error object if request failed
|
1622
|
+
#
|
1623
|
+
# @return [Google::Apis::AppengineV1::Operation]
|
1624
|
+
#
|
1625
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1626
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1627
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1628
|
+
def patch_project_location_application(projects_id, locations_id, applications_id, application_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1629
|
+
command = make_simple_command(:patch, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}', options)
|
1630
|
+
command.request_representation = Google::Apis::AppengineV1::Application::Representation
|
1631
|
+
command.request_object = application_object
|
1632
|
+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
1633
|
+
command.response_class = Google::Apis::AppengineV1::Operation
|
1634
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1635
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1636
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1637
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1638
|
+
command.query['fields'] = fields unless fields.nil?
|
1639
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1640
|
+
execute_or_queue_command(command, &block)
|
1641
|
+
end
|
1642
|
+
|
1597
1643
|
# Lists all domains the user is authorized to administer.
|
1598
1644
|
# @param [String] projects_id
|
1599
1645
|
# Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.58.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.58.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:
|