google-apis-appengine_v1beta 0.1.0 → 0.6.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: 179ba6276b855d01fd834eb1d77c9daa99825c7217ae0439fda0c5eff1314910
4
- data.tar.gz: a8dfc7eb50769c0a7e2ac7944196fdd97ad1db6609dda4737bb81c8c0e732da6
3
+ metadata.gz: 413b0b7824316a0e72785ae608d0b569494c6e0de90a94cfd414cc40c3b9a701
4
+ data.tar.gz: 364737d61f2b7057a28b0117cdd155cbd9433c3f198878250db2cc304df79332
5
5
  SHA512:
6
- metadata.gz: afef6d96d1a6c8985b1027d892fbe99af7aca63a3abfec1037f3c7d670f3e233e0225be416f54368c2394bcb7ac46cbe856906f1686176f2b2df5182408f573d
7
- data.tar.gz: 1175896ad212f8b5af6c5a1eb771d4cec5840b6466a63bfb2652a932dc03b9fcff4b32e60d3c910391573dc3fff8c642429d30f171f148e292460d363c6467c1
6
+ metadata.gz: 94d7c7f317d0ceaa10e82dba8eba1b21949991049cd3405783921a37ac2121c5dba097f6f070322a888881c960231ddbbf474739e85a63a81b37e015a17a02e0
7
+ data.tar.gz: e88e632e348e8adfc004efeb8c4e991f9458fea49f1fb06eae1899cb3db0f60975d566a42bb104a7be146a4d5576564774637da43bb78bd5df1a35d9ad39f0d1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.6.0 (2021-03-26)
4
+
5
+ * Regenerated from discovery document revision 20210319
6
+
7
+ ### v0.5.0 (2021-03-19)
8
+
9
+ * Regenerated from discovery document revision 20210315
10
+
11
+ ### v0.4.0 (2021-03-12)
12
+
13
+ * Regenerated from discovery document revision 20210308
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.3.0 (2021-03-04)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.2.0 (2021-02-26)
21
+
22
+ * Regenerated from discovery document revision 20210219
23
+ * Regenerated using generator version 0.1.2
24
+
3
25
  ### v0.1.0 (2021-01-07)
4
26
 
5
27
  * Regenerated using generator version 0.1.1
@@ -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
@@ -1706,6 +1706,13 @@ module Google
1706
1706
  attr_accessor :flexible_environment_available
1707
1707
  alias_method :flexible_environment_available?, :flexible_environment_available
1708
1708
 
1709
+ # Output only. Search API (https://cloud.google.com/appengine/docs/standard/
1710
+ # python/search) is available in the given location.
1711
+ # Corresponds to the JSON property `searchApiAvailable`
1712
+ # @return [Boolean]
1713
+ attr_accessor :search_api_available
1714
+ alias_method :search_api_available?, :search_api_available
1715
+
1709
1716
  # App Engine standard environment is available in the given location.@OutputOnly
1710
1717
  # Corresponds to the JSON property `standardEnvironmentAvailable`
1711
1718
  # @return [Boolean]
@@ -1719,6 +1726,7 @@ module Google
1719
1726
  # Update properties of this object
1720
1727
  def update!(**args)
1721
1728
  @flexible_environment_available = args[:flexible_environment_available] if args.key?(:flexible_environment_available)
1729
+ @search_api_available = args[:search_api_available] if args.key?(:search_api_available)
1722
1730
  @standard_environment_available = args[:standard_environment_available] if args.key?(:standard_environment_available)
1723
1731
  end
1724
1732
  end
@@ -2728,7 +2736,7 @@ module Google
2728
2736
  # @return [Google::Apis::AppengineV1beta::ApiConfigHandler]
2729
2737
  attr_accessor :api_config
2730
2738
 
2731
- # app_engine_apis allows Second Generation runtimes to access the App Engine
2739
+ # app_engine_apis allows second generation runtimes to access the App Engine
2732
2740
  # APIs.
2733
2741
  # Corresponds to the JSON property `appEngineApis`
2734
2742
  # @return [Boolean]
@@ -2927,6 +2935,13 @@ module Google
2927
2935
  # @return [String]
2928
2936
  attr_accessor :runtime_main_executable_path
2929
2937
 
2938
+ # The identity that the deployed version will run as. Admin API will use the App
2939
+ # Engine Appspot service account as default if this field is neither provided in
2940
+ # app.yaml file nor through CLI flag.
2941
+ # Corresponds to the JSON property `serviceAccount`
2942
+ # @return [String]
2943
+ attr_accessor :service_account
2944
+
2930
2945
  # Current serving status of this version. Only the versions with a SERVING
2931
2946
  # status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an
2932
2947
  # invalid value. Defaults to SERVING.
@@ -3002,6 +3017,7 @@ module Google
3002
3017
  @runtime_api_version = args[:runtime_api_version] if args.key?(:runtime_api_version)
3003
3018
  @runtime_channel = args[:runtime_channel] if args.key?(:runtime_channel)
3004
3019
  @runtime_main_executable_path = args[:runtime_main_executable_path] if args.key?(:runtime_main_executable_path)
3020
+ @service_account = args[:service_account] if args.key?(:service_account)
3005
3021
  @serving_status = args[:serving_status] if args.key?(:serving_status)
3006
3022
  @threadsafe = args[:threadsafe] if args.key?(:threadsafe)
3007
3023
  @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.1.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20201114"
25
+ REVISION = "20210319"
26
26
  end
27
27
  end
28
28
  end
@@ -907,6 +907,7 @@ module Google
907
907
  # @private
908
908
  class Representation < Google::Apis::Core::JsonRepresentation
909
909
  property :flexible_environment_available, as: 'flexibleEnvironmentAvailable'
910
+ property :search_api_available, as: 'searchApiAvailable'
910
911
  property :standard_environment_available, as: 'standardEnvironmentAvailable'
911
912
  end
912
913
  end
@@ -1204,6 +1205,7 @@ module Google
1204
1205
  property :runtime_api_version, as: 'runtimeApiVersion'
1205
1206
  property :runtime_channel, as: 'runtimeChannel'
1206
1207
  property :runtime_main_executable_path, as: 'runtimeMainExecutablePath'
1208
+ property :service_account, as: 'serviceAccount'
1207
1209
  property :serving_status, as: 'servingStatus'
1208
1210
  property :threadsafe, as: 'threadsafe'
1209
1211
  property :version_url, as: 'versionUrl'
@@ -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 will select 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.1.0
4
+ version: 0.6.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-01-08 00:00:00.000000000 Z
11
+ date: 2021-03-29 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.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.6.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: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.1.4
72
+ rubygems_version: 3.2.13
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for App Engine Admin API V1beta