google-apis-appengine_v1 0.37.0 → 0.38.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: fc9fd92d7aaf0e8811b399eccfee57ac47282d251da4e95e1fa032969882be30
4
- data.tar.gz: b5042422af5151bf9d4feb55b4cc66a8d7ba07cfc3e635e9614d158b980894fe
3
+ metadata.gz: f6f0b04fabf6b8a6c7599d81f60ff67f05a9c0d826289812b03ac4bab4e2a03a
4
+ data.tar.gz: 57f311176b73c3fad24c8c5b23fd58c89d51dd3e9d7e44540d942265f6f53fe6
5
5
  SHA512:
6
- metadata.gz: 19168d3b731db73b5fc48447deb9fa56669ed6967d752c38a83b0a2877f5078d1a5aed4bbb563ab63cc6d7c614ee6b0c8ddcf56198b61127fb10757032384d46
7
- data.tar.gz: 14cd4cf5500e10b8d6bfac5c2a6333f73da2d50a9bf427115e68dc8f043e34bc50f15b1d853623cb9c73d91d1092223f2bd6332cae06658423f74278c778646f
6
+ metadata.gz: 0f3fdadf9faeb7fa25bc4d993337507b3a5e23d24600a6e4aed9647228b2c0335c4d36df3a6d4c30dc25c0b26d533cf02d1a065406aa828676643958e18f4613
7
+ data.tar.gz: d6bbb888d8daf4a3837d1695547dce9ef1915e95cbd084f07c0903d586589c827ea331d66911c25226b334178f98c3e0b9a6b7ba8543ccd2168bda64c3179a35
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.38.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230706
6
+
3
7
  ### v0.37.0 (2023-06-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20230601
@@ -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.37.0"
19
+ GEM_VERSION = "0.38.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 = "20230601"
25
+ REVISION = "20230706"
26
26
  end
27
27
  end
28
28
  end
@@ -56,9 +56,6 @@ module Google
56
56
  # applications, see Managing Projects, Applications, and Billing (https://cloud.
57
57
  # google.com/appengine/docs/standard/python/console/).
58
58
  # @param [Google::Apis::AppengineV1::Application] application_object
59
- # @param [String] parent
60
- # The project and location in which the application should be created, specified
61
- # in the format projects/*/locations/*
62
59
  # @param [String] fields
63
60
  # Selector specifying which fields to include in a partial response.
64
61
  # @param [String] quota_user
@@ -76,13 +73,12 @@ module Google
76
73
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
77
74
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
78
75
  # @raise [Google::Apis::AuthorizationError] Authorization is required
79
- def create_app(application_object = nil, parent: nil, fields: nil, quota_user: nil, options: nil, &block)
76
+ def create_app(application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
80
77
  command = make_simple_command(:post, 'v1/apps', options)
81
78
  command.request_representation = Google::Apis::AppengineV1::Application::Representation
82
79
  command.request_object = application_object
83
80
  command.response_representation = Google::Apis::AppengineV1::Operation::Representation
84
81
  command.response_class = Google::Apis::AppengineV1::Operation
85
- command.query['parent'] = parent unless parent.nil?
86
82
  command.query['fields'] = fields unless fields.nil?
87
83
  command.query['quotaUser'] = quota_user unless quota_user.nil?
88
84
  execute_or_queue_command(command, &block)
@@ -1558,214 +1554,6 @@ module Google
1558
1554
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1559
1555
  execute_or_queue_command(command, &block)
1560
1556
  end
1561
-
1562
- # Creates an App Engine application for a Google Cloud Platform project.
1563
- # Required fields: id - The ID of the target Cloud Platform project. location -
1564
- # The region (https://cloud.google.com/appengine/docs/locations) where you want
1565
- # the App Engine application located.For more information about App Engine
1566
- # applications, see Managing Projects, Applications, and Billing (https://cloud.
1567
- # google.com/appengine/docs/standard/python/console/).
1568
- # @param [String] projects_id
1569
- # Part of `parent`. The project and location in which the application should be
1570
- # created, specified in the format projects/*/locations/*
1571
- # @param [String] locations_id
1572
- # Part of `parent`. See documentation of `projectsId`.
1573
- # @param [Google::Apis::AppengineV1::Application] application_object
1574
- # @param [String] fields
1575
- # Selector specifying which fields to include in a partial response.
1576
- # @param [String] quota_user
1577
- # Available to use for quota purposes for server-side applications. Can be any
1578
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1579
- # @param [Google::Apis::RequestOptions] options
1580
- # Request-specific options
1581
- #
1582
- # @yield [result, err] Result & error if block supplied
1583
- # @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
1584
- # @yieldparam err [StandardError] error object if request failed
1585
- #
1586
- # @return [Google::Apis::AppengineV1::Operation]
1587
- #
1588
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1589
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1590
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1591
- def create_project_location_application(projects_id, locations_id, application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1592
- command = make_simple_command(:post, 'v1/projects/{projectsId}/locations/{locationsId}/applications', options)
1593
- command.request_representation = Google::Apis::AppengineV1::Application::Representation
1594
- command.request_object = application_object
1595
- command.response_representation = Google::Apis::AppengineV1::Operation::Representation
1596
- command.response_class = Google::Apis::AppengineV1::Operation
1597
- command.params['projectsId'] = projects_id unless projects_id.nil?
1598
- command.params['locationsId'] = locations_id unless locations_id.nil?
1599
- command.query['fields'] = fields unless fields.nil?
1600
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1601
- execute_or_queue_command(command, &block)
1602
- end
1603
-
1604
- # Gets information about an application.
1605
- # @param [String] projects_id
1606
- # Part of `name`. Name of the Application resource to get. Example: apps/myapp.
1607
- # @param [String] locations_id
1608
- # Part of `name`. See documentation of `projectsId`.
1609
- # @param [String] applications_id
1610
- # Part of `name`. See documentation of `projectsId`.
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::Application] parsed result object
1621
- # @yieldparam err [StandardError] error object if request failed
1622
- #
1623
- # @return [Google::Apis::AppengineV1::Application]
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 get_project_location_application(projects_id, locations_id, applications_id, fields: nil, quota_user: nil, options: nil, &block)
1629
- command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}', options)
1630
- command.response_representation = Google::Apis::AppengineV1::Application::Representation
1631
- command.response_class = Google::Apis::AppengineV1::Application
1632
- command.params['projectsId'] = projects_id unless projects_id.nil?
1633
- command.params['locationsId'] = locations_id unless locations_id.nil?
1634
- command.params['applicationsId'] = applications_id unless applications_id.nil?
1635
- command.query['fields'] = fields unless fields.nil?
1636
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1637
- execute_or_queue_command(command, &block)
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
1687
-
1688
- # Gets the current configuration of the specified service.
1689
- # @param [String] projects_id
1690
- # Part of `name`. Name of the resource requested. Example: apps/myapp/services/
1691
- # default.
1692
- # @param [String] locations_id
1693
- # Part of `name`. See documentation of `projectsId`.
1694
- # @param [String] applications_id
1695
- # Part of `name`. See documentation of `projectsId`.
1696
- # @param [String] services_id
1697
- # Part of `name`. See documentation of `projectsId`.
1698
- # @param [String] fields
1699
- # Selector specifying which fields to include in a partial response.
1700
- # @param [String] quota_user
1701
- # Available to use for quota purposes for server-side applications. Can be any
1702
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1703
- # @param [Google::Apis::RequestOptions] options
1704
- # Request-specific options
1705
- #
1706
- # @yield [result, err] Result & error if block supplied
1707
- # @yieldparam result [Google::Apis::AppengineV1::Service] parsed result object
1708
- # @yieldparam err [StandardError] error object if request failed
1709
- #
1710
- # @return [Google::Apis::AppengineV1::Service]
1711
- #
1712
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1713
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1714
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1715
- def get_project_location_application_service(projects_id, locations_id, applications_id, services_id, fields: nil, quota_user: nil, options: nil, &block)
1716
- command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
1717
- command.response_representation = Google::Apis::AppengineV1::Service::Representation
1718
- command.response_class = Google::Apis::AppengineV1::Service
1719
- command.params['projectsId'] = projects_id unless projects_id.nil?
1720
- command.params['locationsId'] = locations_id unless locations_id.nil?
1721
- command.params['applicationsId'] = applications_id unless applications_id.nil?
1722
- command.params['servicesId'] = services_id unless services_id.nil?
1723
- command.query['fields'] = fields unless fields.nil?
1724
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1725
- execute_or_queue_command(command, &block)
1726
- end
1727
-
1728
- # Lists all the services in the application.
1729
- # @param [String] projects_id
1730
- # Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
1731
- # @param [String] locations_id
1732
- # Part of `parent`. See documentation of `projectsId`.
1733
- # @param [String] applications_id
1734
- # Part of `parent`. See documentation of `projectsId`.
1735
- # @param [Fixnum] page_size
1736
- # Maximum results to return per page.
1737
- # @param [String] page_token
1738
- # Continuation token for fetching the next page of results.
1739
- # @param [String] fields
1740
- # Selector specifying which fields to include in a partial response.
1741
- # @param [String] quota_user
1742
- # Available to use for quota purposes for server-side applications. Can be any
1743
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1744
- # @param [Google::Apis::RequestOptions] options
1745
- # Request-specific options
1746
- #
1747
- # @yield [result, err] Result & error if block supplied
1748
- # @yieldparam result [Google::Apis::AppengineV1::ListServicesResponse] parsed result object
1749
- # @yieldparam err [StandardError] error object if request failed
1750
- #
1751
- # @return [Google::Apis::AppengineV1::ListServicesResponse]
1752
- #
1753
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1754
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1755
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1756
- def list_project_location_application_services(projects_id, locations_id, applications_id, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1757
- command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services', options)
1758
- command.response_representation = Google::Apis::AppengineV1::ListServicesResponse::Representation
1759
- command.response_class = Google::Apis::AppengineV1::ListServicesResponse
1760
- command.params['projectsId'] = projects_id unless projects_id.nil?
1761
- command.params['locationsId'] = locations_id unless locations_id.nil?
1762
- command.params['applicationsId'] = applications_id unless applications_id.nil?
1763
- command.query['pageSize'] = page_size unless page_size.nil?
1764
- command.query['pageToken'] = page_token unless page_token.nil?
1765
- command.query['fields'] = fields unless fields.nil?
1766
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1767
- execute_or_queue_command(command, &block)
1768
- end
1769
1557
 
1770
1558
  protected
1771
1559
 
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.37.0
4
+ version: 0.38.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-06-11 00:00:00.000000000 Z
11
+ date: 2023-07-09 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.37.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.38.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: []