google-apis-appengine_v1 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: 11db3375e5ca96097ed59357a54976e3f484f9e6d83f978d4c1b232ff0ca6a88
4
- data.tar.gz: 9ab1515b3d8d289d984a3093c268af662e30def45371be12910b8083229332b7
3
+ metadata.gz: 667883f952cfd25c4773e85a8f81b458c06f242d496e568491a41a63bace05df
4
+ data.tar.gz: a070c5927575a42ff9b8da7f209993b02b106d5b1255d8affa55e5d942703d19
5
5
  SHA512:
6
- metadata.gz: f790e2a3b2680e16a65fdeddb1488169f41a07661c5afdc520615c8be933ae4f2a5f6005b71883ff805b4f4b6622807120ef250278c87f10ad8ff5457171f001
7
- data.tar.gz: 79ebc4636adf24645d9448754202453d14738a6c4b331c324a694d1701df10803169329558c50f3c3135aa6bd4832b2bd2f937d1dc791ef6c76f5fb6de2cfd88
6
+ metadata.gz: 93a455dece94c481dce97df93b1a889dd5b70090ff44ba542093964f0c6ca935ad32123ed2b9d6db87d5be17714eeb9d79ef68ec73dc837756b86766c504f2a9
7
+ data.tar.gz: 8ead73237551dddea1150e53d6d65ebb880b7e29a4fbac472e95fc8dd702d2a50c7e18c7286bdd724ffc024d908f2841e10c985dc0db3350b8ebca6c36c7e054
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-appengine_v1
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
@@ -1627,6 +1627,13 @@ module Google
1627
1627
  attr_accessor :flexible_environment_available
1628
1628
  alias_method :flexible_environment_available?, :flexible_environment_available
1629
1629
 
1630
+ # Output only. Search API (https://cloud.google.com/appengine/docs/standard/
1631
+ # python/search) is available in the given location.
1632
+ # Corresponds to the JSON property `searchApiAvailable`
1633
+ # @return [Boolean]
1634
+ attr_accessor :search_api_available
1635
+ alias_method :search_api_available?, :search_api_available
1636
+
1630
1637
  # App Engine standard environment is available in the given location.@OutputOnly
1631
1638
  # Corresponds to the JSON property `standardEnvironmentAvailable`
1632
1639
  # @return [Boolean]
@@ -1640,6 +1647,7 @@ module Google
1640
1647
  # Update properties of this object
1641
1648
  def update!(**args)
1642
1649
  @flexible_environment_available = args[:flexible_environment_available] if args.key?(:flexible_environment_available)
1650
+ @search_api_available = args[:search_api_available] if args.key?(:search_api_available)
1643
1651
  @standard_environment_available = args[:standard_environment_available] if args.key?(:standard_environment_available)
1644
1652
  end
1645
1653
  end
@@ -2841,6 +2849,13 @@ module Google
2841
2849
  # @return [String]
2842
2850
  attr_accessor :runtime_main_executable_path
2843
2851
 
2852
+ # The identity that the deployed version will run as. Admin API will use the App
2853
+ # Engine Appspot service account as default if this field is neither provided in
2854
+ # app.yaml file nor through CLI flag.
2855
+ # Corresponds to the JSON property `serviceAccount`
2856
+ # @return [String]
2857
+ attr_accessor :service_account
2858
+
2844
2859
  # Current serving status of this version. Only the versions with a SERVING
2845
2860
  # status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an
2846
2861
  # invalid value. Defaults to SERVING.
@@ -2915,6 +2930,7 @@ module Google
2915
2930
  @runtime_api_version = args[:runtime_api_version] if args.key?(:runtime_api_version)
2916
2931
  @runtime_channel = args[:runtime_channel] if args.key?(:runtime_channel)
2917
2932
  @runtime_main_executable_path = args[:runtime_main_executable_path] if args.key?(:runtime_main_executable_path)
2933
+ @service_account = args[:service_account] if args.key?(:service_account)
2918
2934
  @serving_status = args[:serving_status] if args.key?(:serving_status)
2919
2935
  @threadsafe = args[:threadsafe] if args.key?(:threadsafe)
2920
2936
  @version_url = args[:version_url] if args.key?(:version_url)
@@ -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.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 = "20201201"
25
+ REVISION = "20210319"
26
26
  end
27
27
  end
28
28
  end
@@ -873,6 +873,7 @@ module Google
873
873
  # @private
874
874
  class Representation < Google::Apis::Core::JsonRepresentation
875
875
  property :flexible_environment_available, as: 'flexibleEnvironmentAvailable'
876
+ property :search_api_available, as: 'searchApiAvailable'
876
877
  property :standard_environment_available, as: 'standardEnvironmentAvailable'
877
878
  end
878
879
  end
@@ -1169,6 +1170,7 @@ module Google
1169
1170
  property :runtime_api_version, as: 'runtimeApiVersion'
1170
1171
  property :runtime_channel, as: 'runtimeChannel'
1171
1172
  property :runtime_main_executable_path, as: 'runtimeMainExecutablePath'
1173
+ property :service_account, as: 'serviceAccount'
1172
1174
  property :serving_status, as: 'servingStatus'
1173
1175
  property :threadsafe, as: 'threadsafe'
1174
1176
  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_v1
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_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.6.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: []
@@ -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 V1