google-apis-appengine_v1 0.6.0 → 0.7.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51ed48220512b1871c6c1e9fa4c3aa5d55f7df328dfb913a0362b4a050a912c4
|
4
|
+
data.tar.gz: 5119074d5af0b41d8f1bf8fab9371a28a1d74b8eb8fe8b46622326a9fea60da5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de9d3364ce5ecc2244f5489126428d53e52745fe6ce42880c13e7514b1f18bc40b68fbca9fe79e508d334ad6c68a8facdbcee9292511d7c53db6553392896342
|
7
|
+
data.tar.gz: f9f5c301d1c7bb651fcbe8b3312a8ed0c8b533e2468bbe7f18202af86d8c61e1ab2c89658c940971254dba5a9dd8213005d23534bff3512dfca2b7c84d01f947
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
@@ -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.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
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
|
@@ -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.
|
@@ -867,7 +867,7 @@ module Google
|
|
867
867
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
868
868
|
# AIP-160 (https://google.aip.dev/160).
|
869
869
|
# @param [Fixnum] page_size
|
870
|
-
# The maximum number of results to return. If not set, the service
|
870
|
+
# The maximum number of results to return. If not set, the service selects a
|
871
871
|
# default.
|
872
872
|
# @param [String] page_token
|
873
873
|
# A page token received from the next_page_token field in the response. Send
|
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.7.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-18 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.7.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
|