google-apis-appengine_v1 0.4.0 → 0.9.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: 5e41d61dd92643fd277cbb8dec048b5cc33dcf1fb30b4af56d93a5ab39518d5f
4
- data.tar.gz: fdfd80a643a24e21e9ab8eb0413632c2de26240bfd014c51499fade7975fc397
3
+ metadata.gz: 5acecb662c0d43085d40605a8092df67101e261067f9e4a45fa3cb6004c53655
4
+ data.tar.gz: abc4c9f8ee50f8a216d4c1bc0753d82b9e3a35169827dcdff28bd4e275e3093f
5
5
  SHA512:
6
- metadata.gz: 5ef84770b20381009c7bfb56731bca4594cb3fc7801295f2dec40ad372d6f3af8e4fe5c771f599e6ab5c12990d977c9fa0e2b8dbafdae5b45cfbfac88351369e
7
- data.tar.gz: 5229a563bcb54511b4defa06744c0408b94b168cdd3aa5982403e5f4fc193c1a626c5034482663548b50abd26e019ce79c33050a2f7c253bfe26667ab315689f
6
+ metadata.gz: b71468857b15becb2926b6c8415bc910b70b3a8aa217a82f57c533e312b3ba931cb39ea996b3bd7371852557f956303ac9b77cf44eab6d1f37463192cdc46b86
7
+ data.tar.gz: 47cd6716adc501d25cc72aee6a9638a5218d376a26b8567d165987cedd0a5a1998ae720d4227169c335b34705287575253311bb3ed71fae156782de122e802ce
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.9.0 (2021-06-12)
4
+
5
+ * Regenerated from discovery document revision 20210608
6
+ * Regenerated using generator version 0.3.0
7
+
8
+ ### v0.8.0 (2021-05-19)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.7.0 (2021-05-07)
13
+
14
+ * Regenerated from discovery document revision 20210501
15
+
16
+ ### v0.6.0 (2021-03-26)
17
+
18
+ * Regenerated from discovery document revision 20210319
19
+
20
+ ### v0.5.0 (2021-03-19)
21
+
22
+ * Regenerated from discovery document revision 20210315
23
+
3
24
  ### v0.4.0 (2021-03-12)
4
25
 
5
26
  * Regenerated from discovery document revision 20210308
@@ -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.4.0"
19
+ GEM_VERSION = "0.9.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 = "20210308"
25
+ REVISION = "20210608"
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,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
- # The standard list filter.
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 standard list page size.
870
+ # The maximum number of results to return. If not set, the service selects a
871
+ # default.
869
872
  # @param [String] page_token
870
- # The standard list page token.
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.0
4
+ version: 0.9.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-15 00:00:00.000000000 Z
11
+ date: 2021-06-14 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.4.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.9.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