google-apis-appengine_v1alpha 0.38.0 → 0.39.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: 1f209da946861479ebd8ec614370fa352b673cceb35692703a907504573b8403
4
- data.tar.gz: ca30458f279b9c451cd06cd1fc834864c6f62377ff3567969c0cdf2d82060eb7
3
+ metadata.gz: d3df269a2ca7db7d0db2ba35390f5a706a54a6179d5638b904a1f3638c763706
4
+ data.tar.gz: 07725c47c21fc0fff0a7e17a21580cc4eb2e1a746c108fd0caa3c034b3170917
5
5
  SHA512:
6
- metadata.gz: 795aedf0b87bc849dae2a3d6a23073d4f93b7694143a3b8bc453de8c66da15f3bbeceba6940a182c949ae0fc19d443e8f1f1193eed9438ab3da50f08cc395490
7
- data.tar.gz: d8f5aac6adfef7c93c4aeaac44903951642f46a6c11221d65a6ce18b04130e20e7004ddd6a048a41185e04a18e62ccdadfee215ddc5c6b2933ab9b3003f109b9
6
+ metadata.gz: d4c34fea6822f454e7a9b3f851008226088b0c7255616a92ae05513fed57ac186cf64cef5a156f5db31e8f907989720e38dbbb63ae26a23393f995735167f6dd
7
+ data.tar.gz: c0137aa835def3d906dd6b089806cdffc94ec2d2bf247d4a27def9f7a62a9efa8a680c2875ef735ad50d0aacb3f5409a0c8c5d935be80aa7c482628d207caf86
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-appengine_v1alpha
2
2
 
3
+ ### v0.39.0 (2025-06-22)
4
+
5
+ * Regenerated from discovery document revision 20250616
6
+
3
7
  ### v0.38.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 AppengineV1alpha
18
18
  # Version of the google-apis-appengine_v1alpha gem
19
- GEM_VERSION = "0.38.0"
19
+ GEM_VERSION = "0.39.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
@@ -967,6 +967,57 @@ module Google
967
967
  execute_or_queue_command(command, &block)
968
968
  end
969
969
 
970
+ # Maps a domain to an application. A user must be authorized to administer a
971
+ # domain in order to map it to an application. For a list of available
972
+ # authorized domains, see AuthorizedDomains.ListAuthorizedDomains.
973
+ # @param [String] projects_id
974
+ # Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
975
+ # @param [String] locations_id
976
+ # Part of `parent`. See documentation of `projectsId`.
977
+ # @param [String] applications_id
978
+ # Part of `parent`. See documentation of `projectsId`.
979
+ # @param [Google::Apis::AppengineV1alpha::DomainMapping] domain_mapping_object
980
+ # @param [Boolean] no_managed_certificate
981
+ # Whether a managed certificate should be provided by App Engine. If true, a
982
+ # certificate ID must be manaually set in the DomainMapping resource to
983
+ # configure SSL for this domain. If false, a managed certificate will be
984
+ # provisioned and a certificate ID will be automatically populated.
985
+ # @param [String] override_strategy
986
+ # Whether the domain creation should override any existing mappings for this
987
+ # domain. By default, overrides are rejected.
988
+ # @param [String] fields
989
+ # Selector specifying which fields to include in a partial response.
990
+ # @param [String] quota_user
991
+ # Available to use for quota purposes for server-side applications. Can be any
992
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
993
+ # @param [Google::Apis::RequestOptions] options
994
+ # Request-specific options
995
+ #
996
+ # @yield [result, err] Result & error if block supplied
997
+ # @yieldparam result [Google::Apis::AppengineV1alpha::Operation] parsed result object
998
+ # @yieldparam err [StandardError] error object if request failed
999
+ #
1000
+ # @return [Google::Apis::AppengineV1alpha::Operation]
1001
+ #
1002
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1003
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1004
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1005
+ def create_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mapping_object = nil, no_managed_certificate: nil, override_strategy: nil, fields: nil, quota_user: nil, options: nil, &block)
1006
+ command = make_simple_command(:post, 'v1alpha/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings', options)
1007
+ command.request_representation = Google::Apis::AppengineV1alpha::DomainMapping::Representation
1008
+ command.request_object = domain_mapping_object
1009
+ command.response_representation = Google::Apis::AppengineV1alpha::Operation::Representation
1010
+ command.response_class = Google::Apis::AppengineV1alpha::Operation
1011
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1012
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1013
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1014
+ command.query['noManagedCertificate'] = no_managed_certificate unless no_managed_certificate.nil?
1015
+ command.query['overrideStrategy'] = override_strategy unless override_strategy.nil?
1016
+ command.query['fields'] = fields unless fields.nil?
1017
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1018
+ execute_or_queue_command(command, &block)
1019
+ end
1020
+
970
1021
  # Gets the specified domain mapping.
971
1022
  # @param [String] projects_id
972
1023
  # 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_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.38.0
4
+ version: 0.39.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_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.38.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.39.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: