google-apis-appengine_v1 0.6.0 → 0.11.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: 79578e03a229e7b74536fd5afefc26f745ed3e0746a9b31f28d70f6cebe77916
|
4
|
+
data.tar.gz: 42da544b74e5df17794da471f287186a4421433325515c170ea0cef34b08c057
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb4e57086f078bb8ba20215efc9e4f287d7c90fea318a8c5a48acb5708add6d5537f1bb6f788b80445c99778631efbfb577c0c9998b267070eb7d59031f69684
|
7
|
+
data.tar.gz: 879a499704708736ab41c4279aa09514a77ccf43454fba526f6b3b58afd07fc91733909dbcc85333c24881c0b4195c9e2716e3c1fffe6feb319b3211fe542120
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1
|
2
2
|
|
3
|
+
### v0.11.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.10.0 (2021-06-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210613
|
10
|
+
|
11
|
+
### v0.9.0 (2021-06-12)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210608
|
14
|
+
* Regenerated using generator version 0.3.0
|
15
|
+
|
16
|
+
### v0.8.0 (2021-05-19)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
20
|
+
### v0.7.0 (2021-05-07)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210501
|
23
|
+
|
3
24
|
### v0.6.0 (2021-03-26)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210319
|
@@ -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.
|
@@ -2976,6 +3011,12 @@ module Google
|
|
2976
3011
|
class VpcAccessConnector
|
2977
3012
|
include Google::Apis::Core::Hashable
|
2978
3013
|
|
3014
|
+
# The egress setting for the connector, controlling what traffic is diverted
|
3015
|
+
# through it.
|
3016
|
+
# Corresponds to the JSON property `egressSetting`
|
3017
|
+
# @return [String]
|
3018
|
+
attr_accessor :egress_setting
|
3019
|
+
|
2979
3020
|
# Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/
|
2980
3021
|
# us-central1/connectors/c1.
|
2981
3022
|
# Corresponds to the JSON property `name`
|
@@ -2988,6 +3029,7 @@ module Google
|
|
2988
3029
|
|
2989
3030
|
# Update properties of this object
|
2990
3031
|
def update!(**args)
|
3032
|
+
@egress_setting = args[:egress_setting] if args.key?(:egress_setting)
|
2991
3033
|
@name = args[:name] if args.key?(:name)
|
2992
3034
|
end
|
2993
3035
|
end
|
@@ -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.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210613"
|
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
|
@@ -1193,6 +1208,7 @@ module Google
|
|
1193
1208
|
class VpcAccessConnector
|
1194
1209
|
# @private
|
1195
1210
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1211
|
+
property :egress_setting, as: 'egressSetting'
|
1196
1212
|
property :name, as: 'name'
|
1197
1213
|
end
|
1198
1214
|
end
|
@@ -117,13 +117,13 @@ 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.
|
124
124
|
# @param [Google::Apis::AppengineV1::Application] application_object
|
125
125
|
# @param [String] update_mask
|
126
|
-
# Standard field mask for the set of fields to be updated.
|
126
|
+
# Required. Standard field mask for the set of fields to be updated.
|
127
127
|
# @param [String] fields
|
128
128
|
# Selector specifying which fields to include in a partial response.
|
129
129
|
# @param [String] quota_user
|
@@ -574,7 +574,7 @@ module Google
|
|
574
574
|
# Part of `name`. See documentation of `appsId`.
|
575
575
|
# @param [Google::Apis::AppengineV1::DomainMapping] domain_mapping_object
|
576
576
|
# @param [String] update_mask
|
577
|
-
# Standard field mask for the set of fields to be updated.
|
577
|
+
# Required. Standard field mask for the set of fields to be updated.
|
578
578
|
# @param [String] fields
|
579
579
|
# Selector specifying which fields to include in a partial response.
|
580
580
|
# @param [String] quota_user
|
@@ -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
|
@@ -1107,7 +1107,7 @@ module Google
|
|
1107
1107
|
# Migrating and Splitting Traffic (https://cloud.google.com/appengine/docs/admin-
|
1108
1108
|
# api/migrating-splitting-traffic).
|
1109
1109
|
# @param [String] update_mask
|
1110
|
-
# Standard field mask for the set of fields to be updated.
|
1110
|
+
# Required. Standard field mask for the set of fields to be updated.
|
1111
1111
|
# @param [String] fields
|
1112
1112
|
# Selector specifying which fields to include in a partial response.
|
1113
1113
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.11.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-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for App Engine Admin API V1. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.11.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for App Engine Admin API V1
|