google-apis-appengine_v1 0.62.0 → 0.63.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: 97615cf1ed973145d3d3c59bd731f5d345c704dc1f10e6ac8ad04ec4cdfb72a9
4
- data.tar.gz: dcd1b9a60ca5f72c09f29ec937900abc3f882e706718b3ea84b0a38274fc470d
3
+ metadata.gz: 796725c26da4edd722e93c186696f97ed960c1ff3e89219acffb813e1b57cec2
4
+ data.tar.gz: f69cb1c536469b968fa00b3aa21836162d85bef02183c73d3ddce06d051d0ac4
5
5
  SHA512:
6
- metadata.gz: 99eff532aab9bc0db1072590b5c956e67cca4e5afba1684bb0504fafa3755ec3409ebdfc61e6d3efa810b2a41331ec892a331fe5ddf9917d73bc786697e3c225
7
- data.tar.gz: d0d257a339a55a3007520e1f19ff47a5d40020915ebe9c913e6ee2e928751cd26e29799ad11c00b50b115f3513e1d8b264f91711b768c00c7305cf2173d0ce63
6
+ metadata.gz: d5c9f1e1462345a79f526e41941822f6698bf062025d68fedc467b7836df463bf54039cb7b992048b800316d6b66eb27879502f6339b67900c6e61ac9c6d3df6
7
+ data.tar.gz: 73b3a6860b841c9f58df13c779088c511521726ec9b29f203a4ef3ac2b07006e5ee1618578894f8b13ad34ea193b54e7d5342179ff7a30569fc358ca2b17e26a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.63.0 (2025-06-22)
4
+
5
+ * Regenerated from discovery document revision 20250616
6
+
3
7
  ### v0.62.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250611
@@ -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.62.0"
19
+ GEM_VERSION = "0.63.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 = "20250611"
25
+ REVISION = "20250616"
26
26
  end
27
27
  end
28
28
  end
@@ -1903,6 +1903,51 @@ module Google
1903
1903
  execute_or_queue_command(command, &block)
1904
1904
  end
1905
1905
 
1906
+ # Maps a domain to an application. A user must be authorized to administer a
1907
+ # domain in order to map it to an application. For a list of available
1908
+ # authorized domains, see AuthorizedDomains.ListAuthorizedDomains.
1909
+ # @param [String] projects_id
1910
+ # Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
1911
+ # @param [String] locations_id
1912
+ # Part of `parent`. See documentation of `projectsId`.
1913
+ # @param [String] applications_id
1914
+ # Part of `parent`. See documentation of `projectsId`.
1915
+ # @param [Google::Apis::AppengineV1::DomainMapping] domain_mapping_object
1916
+ # @param [String] override_strategy
1917
+ # Whether the domain creation should override any existing mappings for this
1918
+ # domain. By default, overrides are rejected.
1919
+ # @param [String] fields
1920
+ # Selector specifying which fields to include in a partial response.
1921
+ # @param [String] quota_user
1922
+ # Available to use for quota purposes for server-side applications. Can be any
1923
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1924
+ # @param [Google::Apis::RequestOptions] options
1925
+ # Request-specific options
1926
+ #
1927
+ # @yield [result, err] Result & error if block supplied
1928
+ # @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
1929
+ # @yieldparam err [StandardError] error object if request failed
1930
+ #
1931
+ # @return [Google::Apis::AppengineV1::Operation]
1932
+ #
1933
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1934
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1935
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1936
+ def create_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mapping_object = nil, override_strategy: nil, fields: nil, quota_user: nil, options: nil, &block)
1937
+ command = make_simple_command(:post, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings', options)
1938
+ command.request_representation = Google::Apis::AppengineV1::DomainMapping::Representation
1939
+ command.request_object = domain_mapping_object
1940
+ command.response_representation = Google::Apis::AppengineV1::Operation::Representation
1941
+ command.response_class = Google::Apis::AppengineV1::Operation
1942
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1943
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1944
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1945
+ command.query['overrideStrategy'] = override_strategy unless override_strategy.nil?
1946
+ command.query['fields'] = fields unless fields.nil?
1947
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1948
+ execute_or_queue_command(command, &block)
1949
+ end
1950
+
1906
1951
  # Gets the specified domain mapping.
1907
1952
  # @param [String] projects_id
1908
1953
  # Part of `name`. Name of the resource requested. Example: apps/myapp/
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.62.0
4
+ version: 0.63.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.62.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.63.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: