google-apis-appengine_v1beta 0.6.0 → 0.11.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: 413b0b7824316a0e72785ae608d0b569494c6e0de90a94cfd414cc40c3b9a701
4
- data.tar.gz: 364737d61f2b7057a28b0117cdd155cbd9433c3f198878250db2cc304df79332
3
+ metadata.gz: f96828ca996edb735f0971f6a35e336748486b3c18bdece040820d6a8a86b0ef
4
+ data.tar.gz: 1ea4a8d827d4cd077525b865a269e7fb4a8c165cc75fe525e71a8053de25bbf8
5
5
  SHA512:
6
- metadata.gz: 94d7c7f317d0ceaa10e82dba8eba1b21949991049cd3405783921a37ac2121c5dba097f6f070322a888881c960231ddbbf474739e85a63a81b37e015a17a02e0
7
- data.tar.gz: e88e632e348e8adfc004efeb8c4e991f9458fea49f1fb06eae1899cb3db0f60975d566a42bb104a7be146a4d5576564774637da43bb78bd5df1a35d9ad39f0d1
6
+ metadata.gz: 54307614bb92c0d147711df437a6eb1479d16fd0d64c5864906a89d62098e2752c8fc2245c44dbd1468a0fd8e621e4ffd5ca6249a98ef4f4caa80e5a83f2a6a0
7
+ data.tar.gz: dd77f27e9f4cd5d13659f08e53e22af6db27939b0e3c3a7b2153c09f44ace98fe38982b2af35d5532582c161fcfe0c9245a427793815a257653d0d3fa61ec908
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.11.0 (2021-06-24)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.10.0 (2021-06-18)
8
+
9
+ * Regenerated from discovery document revision 20210613
10
+
11
+ ### v0.9.0 (2021-06-12)
12
+
13
+ * Regenerated from discovery document revision 20210608
14
+ * Regenerated using generator version 0.3.0
15
+
16
+ ### v0.8.0 (2021-05-19)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.7.0 (2021-05-07)
21
+
22
+ * Regenerated from discovery document revision 20210501
23
+
3
24
  ### v0.6.0 (2021-03-26)
4
25
 
5
26
  * Regenerated from discovery document revision 20210319
@@ -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.
@@ -3063,6 +3098,12 @@ module Google
3063
3098
  class VpcAccessConnector
3064
3099
  include Google::Apis::Core::Hashable
3065
3100
 
3101
+ # The egress setting for the connector, controlling what traffic is diverted
3102
+ # through it.
3103
+ # Corresponds to the JSON property `egressSetting`
3104
+ # @return [String]
3105
+ attr_accessor :egress_setting
3106
+
3066
3107
  # Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/
3067
3108
  # us-central1/connectors/c1.
3068
3109
  # Corresponds to the JSON property `name`
@@ -3075,6 +3116,7 @@ module Google
3075
3116
 
3076
3117
  # Update properties of this object
3077
3118
  def update!(**args)
3119
+ @egress_setting = args[:egress_setting] if args.key?(:egress_setting)
3078
3120
  @name = args[:name] if args.key?(:name)
3079
3121
  end
3080
3122
  end
@@ -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.6.0"
19
+ GEM_VERSION = "0.11.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 = "20210319"
25
+ REVISION = "20210613"
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
@@ -1228,6 +1243,7 @@ module Google
1228
1243
  class VpcAccessConnector
1229
1244
  # @private
1230
1245
  class Representation < Google::Apis::Core::JsonRepresentation
1246
+ property :egress_setting, as: 'egressSetting'
1231
1247
  property :name, as: 'name'
1232
1248
  end
1233
1249
  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::AppengineV1beta::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::AppengineV1beta::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
  # examples, see Migrating and Splitting Traffic (https://cloud.google.com/
1108
1108
  # appengine/docs/admin-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,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-appengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.11.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-29 00:00:00.000000000 Z
11
+ date: 2021-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.3'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.3'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for App Engine Admin API V1beta. Simple
28
34
  REST clients are Ruby client libraries that provide access to Google services via
29
35
  their HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  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.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.11.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1beta
57
63
  post_install_message:
58
64
  rdoc_options: []
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  requirements: []
72
- rubygems_version: 3.2.13
78
+ rubygems_version: 3.2.17
73
79
  signing_key:
74
80
  specification_version: 4
75
81
  summary: Simple REST client for App Engine Admin API V1beta