google-apis-appengine_v1alpha 0.14.0 → 0.15.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/OVERVIEW.md +1 -1
- data/lib/google/apis/appengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/appengine_v1alpha/service.rb +162 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 310c95f64646a3f841c701df1fc33970c59fc14b55e3b5dbd2d7e5d532ef1343
|
4
|
+
data.tar.gz: 7f41a2d482af4f672029158083cebd30e69adff39137fd120ecdab1b1093723d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 874f7e60e167533271f9ef0d0ee4088494a61dfcb9fc371f10b2b76e3ea6950d6051d371f247a874f4160c987f7e56f85f8d598a3f03d320e661db301c6946b8
|
7
|
+
data.tar.gz: 105fdc293647346a91c6f59925325cf1e89f68497e81ef854be6e302a9f7e1b3c2e40995227ceba985a543e3c67b4b5da379be49bfff2928ac98c9ed4e3d137d
|
data/CHANGELOG.md
CHANGED
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.
|
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.
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.15.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211029"
|
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.
|
4
|
+
version: 0.15.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:
|
11
|
+
date: 2022-01-10 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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.15.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.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for App Engine Admin API V1alpha
|