google-apis-appengine_v1beta 0.14.0 → 0.15.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: a8c57763851e1fe12c6beeafdc8b2939aa8365d6119e89166cdfec6ba53699f4
4
- data.tar.gz: 136f31620b7e0e8cc796ccdca3d9a52beb58dd87ea8cf51b845e489a7cd14552
3
+ metadata.gz: 479f2bb988792c63e21f0096dfe43bb74014e7382291ed9ed17aa0988f9cdd17
4
+ data.tar.gz: 77baff5633a6892275d3ff82567e6063cafd79a0814c2fbb9cc337a9e69f19c8
5
5
  SHA512:
6
- metadata.gz: 175f82cd2554f051cd6eae4727729a0fb1a0e50bd405b501d658f4e40c5774082892b5f8bf1994b8af97147b812f111079d7deddcf8ceb3a3e20deb3875d9e86
7
- data.tar.gz: 52cfcbbcb4468f558b397f586b9c4fb3b87d6a34bfb2c28934b1a63444c6ba6d08d83ff33dd2f59d1955bd34c2443133c9d5bbfca1705032ff49359c3b3dcdcd
6
+ metadata.gz: cb54830646a1ea0683c80bcaf0607e2ef92868aa3b869fdb83b9420dc24f3902cd78a326c65822f885612a53f66664b06abdd10d7e64ad89fa002e1c7e6901ba
7
+ data.tar.gz: 06ed818dbde2aa49f7b35ccae5d678744669706173b784314bb220b367816ceeb87008d2c95719f9bf743668be91a04e7c312103bb104043c5d2dd2ead867057
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.15.0 (2021-09-03)
4
+
5
+ * Regenerated from discovery document revision 20210827
6
+
3
7
  ### v0.14.0 (2021-08-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20210816
@@ -1154,6 +1154,150 @@ module Google
1154
1154
  end
1155
1155
  end
1156
1156
 
1157
+ # Represents the metadata of the long-running operation.
1158
+ class GoogleAppengineV2OperationMetadata
1159
+ include Google::Apis::Core::Hashable
1160
+
1161
+ # Output only. API version used to start the operation.
1162
+ # Corresponds to the JSON property `apiVersion`
1163
+ # @return [String]
1164
+ attr_accessor :api_version
1165
+
1166
+ # Output only. The time the operation was created.
1167
+ # Corresponds to the JSON property `createTime`
1168
+ # @return [String]
1169
+ attr_accessor :create_time
1170
+
1171
+ # Output only. The time the operation finished running.
1172
+ # Corresponds to the JSON property `endTime`
1173
+ # @return [String]
1174
+ attr_accessor :end_time
1175
+
1176
+ # Output only. Ephemeral message that may change every time the operation is
1177
+ # polled.
1178
+ # Corresponds to the JSON property `ephemeralMessage`
1179
+ # @return [String]
1180
+ attr_accessor :ephemeral_message
1181
+
1182
+ # Output only. Identifies whether the user has requested cancellation of the
1183
+ # operation. Operations that have been cancelled successfully have Operation.
1184
+ # error value with a google.rpc.Status.code of 1, corresponding to Code.
1185
+ # CANCELLED.
1186
+ # Corresponds to the JSON property `requestedCancellation`
1187
+ # @return [Boolean]
1188
+ attr_accessor :requested_cancellation
1189
+ alias_method :requested_cancellation?, :requested_cancellation
1190
+
1191
+ # Output only. Human-readable status of the operation, if any.
1192
+ # Corresponds to the JSON property `statusMessage`
1193
+ # @return [String]
1194
+ attr_accessor :status_message
1195
+
1196
+ # Output only. Server-defined resource path for the target of the operation.
1197
+ # Corresponds to the JSON property `target`
1198
+ # @return [String]
1199
+ attr_accessor :target
1200
+
1201
+ # Output only. Name of the verb executed by the operation.
1202
+ # Corresponds to the JSON property `verb`
1203
+ # @return [String]
1204
+ attr_accessor :verb
1205
+
1206
+ # Output only. Durable messages that persist on every operation poll.
1207
+ # Corresponds to the JSON property `warning`
1208
+ # @return [Array<String>]
1209
+ attr_accessor :warning
1210
+
1211
+ def initialize(**args)
1212
+ update!(**args)
1213
+ end
1214
+
1215
+ # Update properties of this object
1216
+ def update!(**args)
1217
+ @api_version = args[:api_version] if args.key?(:api_version)
1218
+ @create_time = args[:create_time] if args.key?(:create_time)
1219
+ @end_time = args[:end_time] if args.key?(:end_time)
1220
+ @ephemeral_message = args[:ephemeral_message] if args.key?(:ephemeral_message)
1221
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
1222
+ @status_message = args[:status_message] if args.key?(:status_message)
1223
+ @target = args[:target] if args.key?(:target)
1224
+ @verb = args[:verb] if args.key?(:verb)
1225
+ @warning = args[:warning] if args.key?(:warning)
1226
+ end
1227
+ end
1228
+
1229
+ # Represents the metadata of the long-running operation.
1230
+ class GoogleAppengineV2mainOperationMetadata
1231
+ include Google::Apis::Core::Hashable
1232
+
1233
+ # Output only. API version used to start the operation.
1234
+ # Corresponds to the JSON property `apiVersion`
1235
+ # @return [String]
1236
+ attr_accessor :api_version
1237
+
1238
+ # Output only. The time the operation was created.
1239
+ # Corresponds to the JSON property `createTime`
1240
+ # @return [String]
1241
+ attr_accessor :create_time
1242
+
1243
+ # Output only. The time the operation finished running.
1244
+ # Corresponds to the JSON property `endTime`
1245
+ # @return [String]
1246
+ attr_accessor :end_time
1247
+
1248
+ # Output only. Ephemeral message that may change every time the operation is
1249
+ # polled.
1250
+ # Corresponds to the JSON property `ephemeralMessage`
1251
+ # @return [String]
1252
+ attr_accessor :ephemeral_message
1253
+
1254
+ # Output only. Identifies whether the user has requested cancellation of the
1255
+ # operation. Operations that have been cancelled successfully have Operation.
1256
+ # error value with a google.rpc.Status.code of 1, corresponding to Code.
1257
+ # CANCELLED.
1258
+ # Corresponds to the JSON property `requestedCancellation`
1259
+ # @return [Boolean]
1260
+ attr_accessor :requested_cancellation
1261
+ alias_method :requested_cancellation?, :requested_cancellation
1262
+
1263
+ # Output only. Human-readable status of the operation, if any.
1264
+ # Corresponds to the JSON property `statusMessage`
1265
+ # @return [String]
1266
+ attr_accessor :status_message
1267
+
1268
+ # Output only. Server-defined resource path for the target of the operation.
1269
+ # Corresponds to the JSON property `target`
1270
+ # @return [String]
1271
+ attr_accessor :target
1272
+
1273
+ # Output only. Name of the verb executed by the operation.
1274
+ # Corresponds to the JSON property `verb`
1275
+ # @return [String]
1276
+ attr_accessor :verb
1277
+
1278
+ # Output only. Durable messages that persist on every operation poll.
1279
+ # Corresponds to the JSON property `warning`
1280
+ # @return [Array<String>]
1281
+ attr_accessor :warning
1282
+
1283
+ def initialize(**args)
1284
+ update!(**args)
1285
+ end
1286
+
1287
+ # Update properties of this object
1288
+ def update!(**args)
1289
+ @api_version = args[:api_version] if args.key?(:api_version)
1290
+ @create_time = args[:create_time] if args.key?(:create_time)
1291
+ @end_time = args[:end_time] if args.key?(:end_time)
1292
+ @ephemeral_message = args[:ephemeral_message] if args.key?(:ephemeral_message)
1293
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
1294
+ @status_message = args[:status_message] if args.key?(:status_message)
1295
+ @target = args[:target] if args.key?(:target)
1296
+ @verb = args[:verb] if args.key?(:verb)
1297
+ @warning = args[:warning] if args.key?(:warning)
1298
+ end
1299
+ end
1300
+
1157
1301
  # Health checking configuration for VM instances. Unhealthy instances are killed
1158
1302
  # and replaced with new instances. Only applicable for instances in App Engine
1159
1303
  # flexible environment.
@@ -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.14.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210816"
25
+ REVISION = "20210827"
26
26
  end
27
27
  end
28
28
  end
@@ -202,6 +202,18 @@ module Google
202
202
  include Google::Apis::Core::JsonObjectSupport
203
203
  end
204
204
 
205
+ class GoogleAppengineV2OperationMetadata
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
211
+ class GoogleAppengineV2mainOperationMetadata
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
205
217
  class HealthCheck
206
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
219
 
@@ -760,6 +772,36 @@ module Google
760
772
  end
761
773
  end
762
774
 
775
+ class GoogleAppengineV2OperationMetadata
776
+ # @private
777
+ class Representation < Google::Apis::Core::JsonRepresentation
778
+ property :api_version, as: 'apiVersion'
779
+ property :create_time, as: 'createTime'
780
+ property :end_time, as: 'endTime'
781
+ property :ephemeral_message, as: 'ephemeralMessage'
782
+ property :requested_cancellation, as: 'requestedCancellation'
783
+ property :status_message, as: 'statusMessage'
784
+ property :target, as: 'target'
785
+ property :verb, as: 'verb'
786
+ collection :warning, as: 'warning'
787
+ end
788
+ end
789
+
790
+ class GoogleAppengineV2mainOperationMetadata
791
+ # @private
792
+ class Representation < Google::Apis::Core::JsonRepresentation
793
+ property :api_version, as: 'apiVersion'
794
+ property :create_time, as: 'createTime'
795
+ property :end_time, as: 'endTime'
796
+ property :ephemeral_message, as: 'ephemeralMessage'
797
+ property :requested_cancellation, as: 'requestedCancellation'
798
+ property :status_message, as: 'statusMessage'
799
+ property :target, as: 'target'
800
+ property :verb, as: 'verb'
801
+ collection :warning, as: 'warning'
802
+ end
803
+ end
804
+
763
805
  class HealthCheck
764
806
  # @private
765
807
  class Representation < Google::Apis::Core::JsonRepresentation
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.14.0
4
+ version: 0.15.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-08-23 00:00:00.000000000 Z
11
+ date: 2021-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []