google-apis-appengine_v1 0.5.0 → 0.10.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: d15aca414c643d4cfe9c6d2a759e1c591cd0383970290d05124a095ca954948e
4
- data.tar.gz: 17ac7ade4a3f5383f8efffd23524158373232543656909e43a75ab594e977bf1
3
+ metadata.gz: 92176581638ad3ef79dacb4c2b0b88352b160137acce87910b97984d3b4c2c4f
4
+ data.tar.gz: c41d1005bf8ae32387a20a31ea4a32f2ec5e31128b1526c0a9c11fbf3d4dc6e3
5
5
  SHA512:
6
- metadata.gz: fc1f8d9f7d80438d52c3f10c26fc89a94860030183b7bcfd544ff198cf11e6090b12446400b67f8ca0fd9da42bd7d1435a820e6750814778cc30bbfb9435baba
7
- data.tar.gz: e6cef2db27efc486e8291044a8ce6cb101e1ec4c2e2c6d54536751bcc1ddc29de53942fbb1ab152883a711b4687a6a59a15713ec199490fbd83eef35ed702317
6
+ metadata.gz: 63117a1e757bc850f435c7f757aee97dce21c00e93359dc86384d52f67f914db8f0b5648a9aa785ce9231610ad77a60df1795ebf2dbd082267128cfda2d7e0ed
7
+ data.tar.gz: 2802f4c47a6de8fcc78d112c3f11212ad19cd9cc127a18e42ef9958ad3d301217b1daa6a3ff7c2401b85321eb55012f7331c3db7fd2a68d744c64e4d898e6905
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.10.0 (2021-06-18)
4
+
5
+ * Regenerated from discovery document revision 20210613
6
+
7
+ ### v0.9.0 (2021-06-12)
8
+
9
+ * Regenerated from discovery document revision 20210608
10
+ * Regenerated using generator version 0.3.0
11
+
12
+ ### v0.8.0 (2021-05-19)
13
+
14
+ * Unspecified changes
15
+
16
+ ### v0.7.0 (2021-05-07)
17
+
18
+ * Regenerated from discovery document revision 20210501
19
+
20
+ ### v0.6.0 (2021-03-26)
21
+
22
+ * Regenerated from discovery document revision 20210319
23
+
3
24
  ### v0.5.0 (2021-03-19)
4
25
 
5
26
  * Regenerated from discovery document revision 20210315
@@ -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
- # View and manage your data across Google Cloud Platform services
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.
@@ -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.5.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210315"
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 will select a
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,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.5.0
4
+ version: 0.10.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-03-22 00:00:00.000000000 Z
11
+ date: 2021-06-21 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.5.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.10.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.13
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