google-apis-appengine_v1 0.3.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/lib/google/apis/appengine_v1.rb +1 -1
- data/lib/google/apis/appengine_v1/classes.rb +43 -0
- data/lib/google/apis/appengine_v1/gem_version.rb +3 -3
- data/lib/google/apis/appengine_v1/representations.rb +16 -0
- data/lib/google/apis/appengine_v1/service.rb +8 -4
- 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: 705aa0ba805e57692f3cd68131ee0b53566d29555009541cd078afa023116348
|
4
|
+
data.tar.gz: ca6419c3ac935171b57720f5670dd1e61ffdfa8011a9b7a1be9d637f19cee424
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 760de5fa8aa9b4b18b9a461cb30f0ac9a5cfcc92ed4da218e428cc388837a412ea9b1da579afd95aab10447a2b2a6a36c3b8be49bd3bdb2c45c98ef6846cdd56
|
7
|
+
data.tar.gz: 55ef56e9a808edff3bbf6254cb681f2333e3d78680ad45bf7c2441f8d41f623ad96ce4d095c7e4a58075cba3dd7584a02f411caaf2a1a5b451563dbe125c176a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2021-05-19)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.7.0 (2021-05-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210501
|
10
|
+
|
11
|
+
### v0.6.0 (2021-03-26)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210319
|
14
|
+
|
15
|
+
### v0.5.0 (2021-03-19)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210315
|
18
|
+
|
19
|
+
### v0.4.0 (2021-03-12)
|
20
|
+
|
21
|
+
* Regenerated from discovery document revision 20210308
|
22
|
+
* Regenerated using generator version 0.2.0
|
23
|
+
|
3
24
|
### v0.3.0 (2021-03-04)
|
4
25
|
|
5
26
|
* Unspecified changes
|
@@ -32,7 +32,7 @@ module Google
|
|
32
32
|
# View and manage your applications deployed on Google App Engine
|
33
33
|
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
34
34
|
|
35
|
-
#
|
35
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
36
36
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
37
37
|
|
38
38
|
# View your data across Google Cloud Platform services
|
@@ -1032,6 +1032,41 @@ module Google
|
|
1032
1032
|
end
|
1033
1033
|
end
|
1034
1034
|
|
1035
|
+
# Metadata for the given google.cloud.location.Location.
|
1036
|
+
class GoogleAppengineV1betaLocationMetadata
|
1037
|
+
include Google::Apis::Core::Hashable
|
1038
|
+
|
1039
|
+
# App Engine flexible environment is available in the given location.@OutputOnly
|
1040
|
+
# Corresponds to the JSON property `flexibleEnvironmentAvailable`
|
1041
|
+
# @return [Boolean]
|
1042
|
+
attr_accessor :flexible_environment_available
|
1043
|
+
alias_method :flexible_environment_available?, :flexible_environment_available
|
1044
|
+
|
1045
|
+
# Output only. Search API (https://cloud.google.com/appengine/docs/standard/
|
1046
|
+
# python/search) is available in the given location.
|
1047
|
+
# Corresponds to the JSON property `searchApiAvailable`
|
1048
|
+
# @return [Boolean]
|
1049
|
+
attr_accessor :search_api_available
|
1050
|
+
alias_method :search_api_available?, :search_api_available
|
1051
|
+
|
1052
|
+
# App Engine standard environment is available in the given location.@OutputOnly
|
1053
|
+
# Corresponds to the JSON property `standardEnvironmentAvailable`
|
1054
|
+
# @return [Boolean]
|
1055
|
+
attr_accessor :standard_environment_available
|
1056
|
+
alias_method :standard_environment_available?, :standard_environment_available
|
1057
|
+
|
1058
|
+
def initialize(**args)
|
1059
|
+
update!(**args)
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
# Update properties of this object
|
1063
|
+
def update!(**args)
|
1064
|
+
@flexible_environment_available = args[:flexible_environment_available] if args.key?(:flexible_environment_available)
|
1065
|
+
@search_api_available = args[:search_api_available] if args.key?(:search_api_available)
|
1066
|
+
@standard_environment_available = args[:standard_environment_available] if args.key?(:standard_environment_available)
|
1067
|
+
end
|
1068
|
+
end
|
1069
|
+
|
1035
1070
|
# Health checking configuration for VM instances. Unhealthy instances are killed
|
1036
1071
|
# and replaced with new instances. Only applicable for instances in App Engine
|
1037
1072
|
# flexible environment.
|
@@ -2849,6 +2884,13 @@ module Google
|
|
2849
2884
|
# @return [String]
|
2850
2885
|
attr_accessor :runtime_main_executable_path
|
2851
2886
|
|
2887
|
+
# The identity that the deployed version will run as. Admin API will use the App
|
2888
|
+
# Engine Appspot service account as default if this field is neither provided in
|
2889
|
+
# app.yaml file nor through CLI flag.
|
2890
|
+
# Corresponds to the JSON property `serviceAccount`
|
2891
|
+
# @return [String]
|
2892
|
+
attr_accessor :service_account
|
2893
|
+
|
2852
2894
|
# Current serving status of this version. Only the versions with a SERVING
|
2853
2895
|
# status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an
|
2854
2896
|
# invalid value. Defaults to SERVING.
|
@@ -2923,6 +2965,7 @@ module Google
|
|
2923
2965
|
@runtime_api_version = args[:runtime_api_version] if args.key?(:runtime_api_version)
|
2924
2966
|
@runtime_channel = args[:runtime_channel] if args.key?(:runtime_channel)
|
2925
2967
|
@runtime_main_executable_path = args[:runtime_main_executable_path] if args.key?(:runtime_main_executable_path)
|
2968
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
2926
2969
|
@serving_status = args[:serving_status] if args.key?(:serving_status)
|
2927
2970
|
@threadsafe = args[:threadsafe] if args.key?(:threadsafe)
|
2928
2971
|
@version_url = args[:version_url] if args.key?(:version_url)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210501"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,6 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
+
class GoogleAppengineV1betaLocationMetadata
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
187
193
|
class HealthCheck
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
@@ -710,6 +716,15 @@ module Google
|
|
710
716
|
end
|
711
717
|
end
|
712
718
|
|
719
|
+
class GoogleAppengineV1betaLocationMetadata
|
720
|
+
# @private
|
721
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
722
|
+
property :flexible_environment_available, as: 'flexibleEnvironmentAvailable'
|
723
|
+
property :search_api_available, as: 'searchApiAvailable'
|
724
|
+
property :standard_environment_available, as: 'standardEnvironmentAvailable'
|
725
|
+
end
|
726
|
+
end
|
727
|
+
|
713
728
|
class HealthCheck
|
714
729
|
# @private
|
715
730
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1170,6 +1185,7 @@ module Google
|
|
1170
1185
|
property :runtime_api_version, as: 'runtimeApiVersion'
|
1171
1186
|
property :runtime_channel, as: 'runtimeChannel'
|
1172
1187
|
property :runtime_main_executable_path, as: 'runtimeMainExecutablePath'
|
1188
|
+
property :service_account, as: 'serviceAccount'
|
1173
1189
|
property :serving_status, as: 'servingStatus'
|
1174
1190
|
property :threadsafe, as: 'threadsafe'
|
1175
1191
|
property :version_url, as: 'versionUrl'
|
@@ -117,7 +117,7 @@ module Google
|
|
117
117
|
# Updates the specified Application resource. You can update the following
|
118
118
|
# fields: auth_domain - Google authentication domain for controlling user access
|
119
119
|
# to the application. default_cookie_expiration - Cookie expiration policy for
|
120
|
-
# the application.
|
120
|
+
# the application. iap - Identity-Aware Proxy properties for the application.
|
121
121
|
# @param [String] apps_id
|
122
122
|
# Part of `name`. Name of the Application resource to update. Example: apps/
|
123
123
|
# myapp.
|
@@ -863,11 +863,15 @@ module Google
|
|
863
863
|
# @param [String] apps_id
|
864
864
|
# Part of `name`. The resource that owns the locations collection, if applicable.
|
865
865
|
# @param [String] filter
|
866
|
-
#
|
866
|
+
# A filter to narrow down results to a preferred subset. The filtering language
|
867
|
+
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
868
|
+
# AIP-160 (https://google.aip.dev/160).
|
867
869
|
# @param [Fixnum] page_size
|
868
|
-
# The
|
870
|
+
# The maximum number of results to return. If not set, the service selects a
|
871
|
+
# default.
|
869
872
|
# @param [String] page_token
|
870
|
-
#
|
873
|
+
# A page token received from the next_page_token field in the response. Send
|
874
|
+
# that page token to receive the subsequent page.
|
871
875
|
# @param [String] fields
|
872
876
|
# Selector specifying which fields to include in a partial response.
|
873
877
|
# @param [String] quota_user
|
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.
|
4
|
+
version: 0.8.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-
|
11
|
+
date: 2021-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.8.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for App Engine Admin API V1
|