google-apis-appengine_v1alpha 0.14.0 → 0.17.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: 4961828cb8e3cc1a6835a0b7f4ade1f3a5f172c8c44cc69d2a5137c796cdfdc2
4
- data.tar.gz: 7ab8e3cc7c42b17f056622dba2e281bdf076cc5945f3f9e3fc041b643de46dba
3
+ metadata.gz: 9ffb89d99daf27cd17b42db794e57bf97128ea6910f7d348a81ed941d9bc3e1a
4
+ data.tar.gz: ebc39c486ebc0409ecb894e9c1b3aca176f3c68bf4ed17420e62e5c84b4c92dd
5
5
  SHA512:
6
- metadata.gz: 6a1fd6a3efb7648180a4cc92b7361953eef100270c5d939b53ae8ce7e2818132f73463fee507e28b2811bd85ea2632a2afa45b4ba9759da0019a18061240df4a
7
- data.tar.gz: 2a0fd065fb52cf00bee3c407d6375ba8595fbba7988ee2670a9eca91f59ba11c53a1e462fcee87ee9434acab308c457d4841859c8f17a4cf4ef0030228715e60
6
+ metadata.gz: 17de2280fe600f47d17e0a5bbc3186c7b6c56fd026b5a1c929331b45755d9c97961ca161a890eaa4bdac037ac860433b3d405d8a38abc31534021882321bd4ab
7
+ data.tar.gz: 7784cc5a010877598f18337ab0483c6a497e12c6d9f0a846fd6bc0e72961727b3dcde55670cd4185687828e9bdb099bb7df963f11593f5d8e14e4e0f5a196ce7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-appengine_v1alpha
2
2
 
3
+ ### v0.17.0 (2022-06-03)
4
+
5
+ * Regenerated using generator version 0.5.0
6
+
7
+ ### v0.16.0 (2022-04-01)
8
+
9
+ * Regenerated from discovery document revision 20220326
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.15.0 (2021-12-14)
13
+
14
+ * Regenerated from discovery document revision 20211029
15
+
3
16
  ### v0.14.0 (2021-10-20)
4
17
 
5
18
  * Unspecified changes
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/appengine_v1alpha"
51
51
  client = Google::Apis::AppengineV1alpha::AppengineService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -271,8 +271,7 @@ module Google
271
271
  # A generic empty message that you can re-use to avoid defining duplicated empty
272
272
  # messages in your APIs. A typical example is to use it as the request or the
273
273
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
274
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
275
- # Empty is empty JSON object ``.
274
+ # protobuf.Empty) returns (google.protobuf.Empty); `
276
275
  class Empty
277
276
  include Google::Apis::Core::Hashable
278
277
 
@@ -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.14.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211002"
25
+ REVISION = "20220326"
26
26
  end
27
27
  end
28
28
  end
@@ -627,6 +627,168 @@ module Google
627
627
  command.query['quotaUser'] = quota_user unless quota_user.nil?
628
628
  execute_or_queue_command(command, &block)
629
629
  end
630
+
631
+ # Gets information about a location.
632
+ # @param [String] projects_id
633
+ # Part of `name`. Resource name for the location.
634
+ # @param [String] locations_id
635
+ # Part of `name`. See documentation of `projectsId`.
636
+ # @param [String] fields
637
+ # Selector specifying which fields to include in a partial response.
638
+ # @param [String] quota_user
639
+ # Available to use for quota purposes for server-side applications. Can be any
640
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
641
+ # @param [Google::Apis::RequestOptions] options
642
+ # Request-specific options
643
+ #
644
+ # @yield [result, err] Result & error if block supplied
645
+ # @yieldparam result [Google::Apis::AppengineV1alpha::Location] parsed result object
646
+ # @yieldparam err [StandardError] error object if request failed
647
+ #
648
+ # @return [Google::Apis::AppengineV1alpha::Location]
649
+ #
650
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
651
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
652
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
653
+ def get_project_location(projects_id, locations_id, fields: nil, quota_user: nil, options: nil, &block)
654
+ command = make_simple_command(:get, 'v1alpha/projects/{projectsId}/locations/{locationsId}', options)
655
+ command.response_representation = Google::Apis::AppengineV1alpha::Location::Representation
656
+ command.response_class = Google::Apis::AppengineV1alpha::Location
657
+ command.params['projectsId'] = projects_id unless projects_id.nil?
658
+ command.params['locationsId'] = locations_id unless locations_id.nil?
659
+ command.query['fields'] = fields unless fields.nil?
660
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
661
+ execute_or_queue_command(command, &block)
662
+ end
663
+
664
+ # Lists information about the supported locations for this service.
665
+ # @param [String] projects_id
666
+ # Part of `name`. The resource that owns the locations collection, if applicable.
667
+ # @param [String] filter
668
+ # A filter to narrow down results to a preferred subset. The filtering language
669
+ # accepts strings like "displayName=tokyo", and is documented in more detail in
670
+ # AIP-160 (https://google.aip.dev/160).
671
+ # @param [Fixnum] page_size
672
+ # The maximum number of results to return. If not set, the service selects a
673
+ # default.
674
+ # @param [String] page_token
675
+ # A page token received from the next_page_token field in the response. Send
676
+ # that page token to receive the subsequent page.
677
+ # @param [String] fields
678
+ # Selector specifying which fields to include in a partial response.
679
+ # @param [String] quota_user
680
+ # Available to use for quota purposes for server-side applications. Can be any
681
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
682
+ # @param [Google::Apis::RequestOptions] options
683
+ # Request-specific options
684
+ #
685
+ # @yield [result, err] Result & error if block supplied
686
+ # @yieldparam result [Google::Apis::AppengineV1alpha::ListLocationsResponse] parsed result object
687
+ # @yieldparam err [StandardError] error object if request failed
688
+ #
689
+ # @return [Google::Apis::AppengineV1alpha::ListLocationsResponse]
690
+ #
691
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
692
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
693
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
694
+ def list_project_locations(projects_id, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
695
+ command = make_simple_command(:get, 'v1alpha/projects/{projectsId}/locations', options)
696
+ command.response_representation = Google::Apis::AppengineV1alpha::ListLocationsResponse::Representation
697
+ command.response_class = Google::Apis::AppengineV1alpha::ListLocationsResponse
698
+ command.params['projectsId'] = projects_id unless projects_id.nil?
699
+ command.query['filter'] = filter unless filter.nil?
700
+ command.query['pageSize'] = page_size unless page_size.nil?
701
+ command.query['pageToken'] = page_token unless page_token.nil?
702
+ command.query['fields'] = fields unless fields.nil?
703
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
704
+ execute_or_queue_command(command, &block)
705
+ end
706
+
707
+ # Gets the latest state of a long-running operation. Clients can use this method
708
+ # to poll the operation result at intervals as recommended by the API service.
709
+ # @param [String] projects_id
710
+ # Part of `name`. The name of the operation resource.
711
+ # @param [String] locations_id
712
+ # Part of `name`. See documentation of `projectsId`.
713
+ # @param [String] operations_id
714
+ # Part of `name`. See documentation of `projectsId`.
715
+ # @param [String] fields
716
+ # Selector specifying which fields to include in a partial response.
717
+ # @param [String] quota_user
718
+ # Available to use for quota purposes for server-side applications. Can be any
719
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
720
+ # @param [Google::Apis::RequestOptions] options
721
+ # Request-specific options
722
+ #
723
+ # @yield [result, err] Result & error if block supplied
724
+ # @yieldparam result [Google::Apis::AppengineV1alpha::Operation] parsed result object
725
+ # @yieldparam err [StandardError] error object if request failed
726
+ #
727
+ # @return [Google::Apis::AppengineV1alpha::Operation]
728
+ #
729
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
730
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
731
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
732
+ def get_project_location_operation(projects_id, locations_id, operations_id, fields: nil, quota_user: nil, options: nil, &block)
733
+ command = make_simple_command(:get, 'v1alpha/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}', options)
734
+ command.response_representation = Google::Apis::AppengineV1alpha::Operation::Representation
735
+ command.response_class = Google::Apis::AppengineV1alpha::Operation
736
+ command.params['projectsId'] = projects_id unless projects_id.nil?
737
+ command.params['locationsId'] = locations_id unless locations_id.nil?
738
+ command.params['operationsId'] = operations_id unless operations_id.nil?
739
+ command.query['fields'] = fields unless fields.nil?
740
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
741
+ execute_or_queue_command(command, &block)
742
+ end
743
+
744
+ # Lists operations that match the specified filter in the request. If the server
745
+ # doesn't support this method, it returns UNIMPLEMENTED.NOTE: the name binding
746
+ # allows API services to override the binding to use different resource name
747
+ # schemes, such as users/*/operations. To override the binding, API services can
748
+ # add a binding such as "/v1/`name=users/*`/operations" to their service
749
+ # configuration. For backwards compatibility, the default name includes the
750
+ # operations collection id, however overriding users must ensure the name
751
+ # binding is the parent resource, without the operations collection id.
752
+ # @param [String] projects_id
753
+ # Part of `name`. The name of the operation's parent resource.
754
+ # @param [String] locations_id
755
+ # Part of `name`. See documentation of `projectsId`.
756
+ # @param [String] filter
757
+ # The standard list filter.
758
+ # @param [Fixnum] page_size
759
+ # The standard list page size.
760
+ # @param [String] page_token
761
+ # The standard list page token.
762
+ # @param [String] fields
763
+ # Selector specifying which fields to include in a partial response.
764
+ # @param [String] quota_user
765
+ # Available to use for quota purposes for server-side applications. Can be any
766
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
767
+ # @param [Google::Apis::RequestOptions] options
768
+ # Request-specific options
769
+ #
770
+ # @yield [result, err] Result & error if block supplied
771
+ # @yieldparam result [Google::Apis::AppengineV1alpha::ListOperationsResponse] parsed result object
772
+ # @yieldparam err [StandardError] error object if request failed
773
+ #
774
+ # @return [Google::Apis::AppengineV1alpha::ListOperationsResponse]
775
+ #
776
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
777
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
778
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
779
+ def list_project_location_operations(projects_id, locations_id, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
780
+ command = make_simple_command(:get, 'v1alpha/projects/{projectsId}/locations/{locationsId}/operations', options)
781
+ command.response_representation = Google::Apis::AppengineV1alpha::ListOperationsResponse::Representation
782
+ command.response_class = Google::Apis::AppengineV1alpha::ListOperationsResponse
783
+ command.params['projectsId'] = projects_id unless projects_id.nil?
784
+ command.params['locationsId'] = locations_id unless locations_id.nil?
785
+ command.query['filter'] = filter unless filter.nil?
786
+ command.query['pageSize'] = page_size unless page_size.nil?
787
+ command.query['pageToken'] = page_token unless page_token.nil?
788
+ command.query['fields'] = fields unless fields.nil?
789
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
790
+ execute_or_queue_command(command, &block)
791
+ end
630
792
 
631
793
  protected
632
794
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-appengine_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.17.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: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2022-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.5'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.17.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for App Engine Admin API V1alpha