google-apis-appengine_v1beta 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 186d2e46b64a25bf74d5373c8c12a1879031ba22390a6e18bcc975c3ef1e4a8e
4
- data.tar.gz: 6d4b8013a7223208527e0907045b4f9d89fed8aaa9a3c7cba0fd71d215106c61
3
+ metadata.gz: 0ce6052300a47c6216b2bc386f69727ff5842ec762c60f712198b2205df8c8e2
4
+ data.tar.gz: b6be1167f517c987542836c9fc826349b4dbbdf3b61c9ac2659df499a30e464e
5
5
  SHA512:
6
- metadata.gz: 381831f4b6b7608823f962f28d2b806afef5c0925aa9389d7286ba87bba3691cf0e2118b68d2b1834feece7cde64602362bbaeff5cf842d9c54fe5a99dd49ac8
7
- data.tar.gz: c1fad740e8c1740e36c02d63d06c0a1928d0d82af37c1b14a560a27a68848a529b0745039e45a0dca90b6a357bba6325b9455124572412cf2f1a228cd937a465
6
+ metadata.gz: 40b42d69d88768c70683bfeb768bc4e2da14c811b4454628a6c4edf5a3096f2288a3c56508b9b92ce29783641deda08cabed31c5e58ab84441e67cf1084b059e
7
+ data.tar.gz: dc4106149ae5ef2fda2435776876e99855a2132e7f81039d6bee00cc6f4bc6544ec02450da100eab1fc670b3e86322acbadf56d4a1c017ddcf9aaeea6d911979
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-appengine_v1beta
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
- # 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
@@ -1111,6 +1111,41 @@ module Google
1111
1111
  end
1112
1112
  end
1113
1113
 
1114
+ # Metadata for the given google.cloud.location.Location.
1115
+ class GoogleAppengineV1betaLocationMetadata
1116
+ include Google::Apis::Core::Hashable
1117
+
1118
+ # App Engine flexible environment is available in the given location.@OutputOnly
1119
+ # Corresponds to the JSON property `flexibleEnvironmentAvailable`
1120
+ # @return [Boolean]
1121
+ attr_accessor :flexible_environment_available
1122
+ alias_method :flexible_environment_available?, :flexible_environment_available
1123
+
1124
+ # Output only. Search API (https://cloud.google.com/appengine/docs/standard/
1125
+ # python/search) is available in the given location.
1126
+ # Corresponds to the JSON property `searchApiAvailable`
1127
+ # @return [Boolean]
1128
+ attr_accessor :search_api_available
1129
+ alias_method :search_api_available?, :search_api_available
1130
+
1131
+ # App Engine standard environment is available in the given location.@OutputOnly
1132
+ # Corresponds to the JSON property `standardEnvironmentAvailable`
1133
+ # @return [Boolean]
1134
+ attr_accessor :standard_environment_available
1135
+ alias_method :standard_environment_available?, :standard_environment_available
1136
+
1137
+ def initialize(**args)
1138
+ update!(**args)
1139
+ end
1140
+
1141
+ # Update properties of this object
1142
+ def update!(**args)
1143
+ @flexible_environment_available = args[:flexible_environment_available] if args.key?(:flexible_environment_available)
1144
+ @search_api_available = args[:search_api_available] if args.key?(:search_api_available)
1145
+ @standard_environment_available = args[:standard_environment_available] if args.key?(:standard_environment_available)
1146
+ end
1147
+ end
1148
+
1114
1149
  # Health checking configuration for VM instances. Unhealthy instances are killed
1115
1150
  # and replaced with new instances. Only applicable for instances in App Engine
1116
1151
  # flexible environment.
@@ -2736,7 +2771,7 @@ module Google
2736
2771
  # @return [Google::Apis::AppengineV1beta::ApiConfigHandler]
2737
2772
  attr_accessor :api_config
2738
2773
 
2739
- # app_engine_apis allows Second Generation runtimes to access the App Engine
2774
+ # app_engine_apis allows second generation runtimes to access the App Engine
2740
2775
  # APIs.
2741
2776
  # Corresponds to the JSON property `appEngineApis`
2742
2777
  # @return [Boolean]
@@ -2935,6 +2970,13 @@ module Google
2935
2970
  # @return [String]
2936
2971
  attr_accessor :runtime_main_executable_path
2937
2972
 
2973
+ # The identity that the deployed version will run as. Admin API will use the App
2974
+ # Engine Appspot service account as default if this field is neither provided in
2975
+ # app.yaml file nor through CLI flag.
2976
+ # Corresponds to the JSON property `serviceAccount`
2977
+ # @return [String]
2978
+ attr_accessor :service_account
2979
+
2938
2980
  # Current serving status of this version. Only the versions with a SERVING
2939
2981
  # status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an
2940
2982
  # invalid value. Defaults to SERVING.
@@ -3010,6 +3052,7 @@ module Google
3010
3052
  @runtime_api_version = args[:runtime_api_version] if args.key?(:runtime_api_version)
3011
3053
  @runtime_channel = args[:runtime_channel] if args.key?(:runtime_channel)
3012
3054
  @runtime_main_executable_path = args[:runtime_main_executable_path] if args.key?(:runtime_main_executable_path)
3055
+ @service_account = args[:service_account] if args.key?(:service_account)
3013
3056
  @serving_status = args[:serving_status] if args.key?(:serving_status)
3014
3057
  @threadsafe = args[:threadsafe] if args.key?(:threadsafe)
3015
3058
  @version_url = args[:version_url] if args.key?(:version_url)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AppengineV1beta
18
18
  # Version of the google-apis-appengine_v1beta gem
19
- GEM_VERSION = "0.3.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.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210219"
25
+ REVISION = "20210501"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,12 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class GoogleAppengineV1betaLocationMetadata
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
199
205
  class HealthCheck
200
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
207
 
@@ -744,6 +750,15 @@ module Google
744
750
  end
745
751
  end
746
752
 
753
+ class GoogleAppengineV1betaLocationMetadata
754
+ # @private
755
+ class Representation < Google::Apis::Core::JsonRepresentation
756
+ property :flexible_environment_available, as: 'flexibleEnvironmentAvailable'
757
+ property :search_api_available, as: 'searchApiAvailable'
758
+ property :standard_environment_available, as: 'standardEnvironmentAvailable'
759
+ end
760
+ end
761
+
747
762
  class HealthCheck
748
763
  # @private
749
764
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1205,6 +1220,7 @@ module Google
1205
1220
  property :runtime_api_version, as: 'runtimeApiVersion'
1206
1221
  property :runtime_channel, as: 'runtimeChannel'
1207
1222
  property :runtime_main_executable_path, as: 'runtimeMainExecutablePath'
1223
+ property :service_account, as: 'serviceAccount'
1208
1224
  property :serving_status, as: 'servingStatus'
1209
1225
  property :threadsafe, as: 'threadsafe'
1210
1226
  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
- # 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_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.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-03-08 00:00:00.000000000 Z
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_v1beta/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.8.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1beta
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 V1beta