google-apis-appengine_v1beta 0.11.0 → 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f96828ca996edb735f0971f6a35e336748486b3c18bdece040820d6a8a86b0ef
4
- data.tar.gz: 1ea4a8d827d4cd077525b865a269e7fb4a8c165cc75fe525e71a8053de25bbf8
3
+ metadata.gz: 479f2bb988792c63e21f0096dfe43bb74014e7382291ed9ed17aa0988f9cdd17
4
+ data.tar.gz: 77baff5633a6892275d3ff82567e6063cafd79a0814c2fbb9cc337a9e69f19c8
5
5
  SHA512:
6
- metadata.gz: 54307614bb92c0d147711df437a6eb1479d16fd0d64c5864906a89d62098e2752c8fc2245c44dbd1468a0fd8e621e4ffd5ca6249a98ef4f4caa80e5a83f2a6a0
7
- data.tar.gz: dd77f27e9f4cd5d13659f08e53e22af6db27939b0e3c3a7b2153c09f44ace98fe38982b2af35d5532582c161fcfe0c9245a427793815a257653d0d3fa61ec908
6
+ metadata.gz: cb54830646a1ea0683c80bcaf0607e2ef92868aa3b869fdb83b9420dc24f3902cd78a326c65822f885612a53f66664b06abdd10d7e64ad89fa002e1c7e6901ba
7
+ data.tar.gz: 06ed818dbde2aa49f7b35ccae5d678744669706173b784314bb220b367816ceeb87008d2c95719f9bf743668be91a04e7c312103bb104043c5d2dd2ead867057
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
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
+
7
+ ### v0.14.0 (2021-08-20)
8
+
9
+ * Regenerated from discovery document revision 20210816
10
+
11
+ ### v0.13.0 (2021-07-30)
12
+
13
+ * Regenerated from discovery document revision 20210721
14
+
15
+ ### v0.12.0 (2021-06-29)
16
+
17
+ * Regenerated from discovery document revision 20210618
18
+ * Regenerated using generator version 0.4.0
19
+
3
20
  ### v0.11.0 (2021-06-24)
4
21
 
5
22
  * Unspecified changes
@@ -171,6 +171,13 @@ module Google
171
171
  # @return [String]
172
172
  attr_accessor :name
173
173
 
174
+ # The service account associated with the application. This is the app-level
175
+ # default identity. If no identity provided during create version, Admin API
176
+ # will fallback to this one.
177
+ # Corresponds to the JSON property `serviceAccount`
178
+ # @return [String]
179
+ attr_accessor :service_account
180
+
174
181
  # Serving status of this application.
175
182
  # Corresponds to the JSON property `servingStatus`
176
183
  # @return [String]
@@ -195,6 +202,7 @@ module Google
195
202
  @id = args[:id] if args.key?(:id)
196
203
  @location_id = args[:location_id] if args.key?(:location_id)
197
204
  @name = args[:name] if args.key?(:name)
205
+ @service_account = args[:service_account] if args.key?(:service_account)
198
206
  @serving_status = args[:serving_status] if args.key?(:serving_status)
199
207
  end
200
208
  end
@@ -1146,6 +1154,150 @@ module Google
1146
1154
  end
1147
1155
  end
1148
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
+
1149
1301
  # Health checking configuration for VM instances. Unhealthy instances are killed
1150
1302
  # and replaced with new instances. Only applicable for instances in App Engine
1151
1303
  # flexible environment.
@@ -1826,6 +1978,12 @@ module Google
1826
1978
  # @return [Array<String>]
1827
1979
  attr_accessor :forwarded_ports
1828
1980
 
1981
+ # The IP mode for instances. Only applicable in the App Engine flexible
1982
+ # environment.
1983
+ # Corresponds to the JSON property `instanceIpMode`
1984
+ # @return [String]
1985
+ attr_accessor :instance_ip_mode
1986
+
1829
1987
  # Tag to apply to the instance during creation. Only applicable in the App
1830
1988
  # Engine flexible environment.
1831
1989
  # Corresponds to the JSON property `instanceTag`
@@ -1869,6 +2027,7 @@ module Google
1869
2027
  # Update properties of this object
1870
2028
  def update!(**args)
1871
2029
  @forwarded_ports = args[:forwarded_ports] if args.key?(:forwarded_ports)
2030
+ @instance_ip_mode = args[:instance_ip_mode] if args.key?(:instance_ip_mode)
1872
2031
  @instance_tag = args[:instance_tag] if args.key?(:instance_tag)
1873
2032
  @name = args[:name] if args.key?(:name)
1874
2033
  @session_affinity = args[:session_affinity] if args.key?(:session_affinity)
@@ -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.11.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210613"
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
 
@@ -497,6 +509,7 @@ module Google
497
509
  property :id, as: 'id'
498
510
  property :location_id, as: 'locationId'
499
511
  property :name, as: 'name'
512
+ property :service_account, as: 'serviceAccount'
500
513
  property :serving_status, as: 'servingStatus'
501
514
  end
502
515
  end
@@ -759,6 +772,36 @@ module Google
759
772
  end
760
773
  end
761
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
+
762
805
  class HealthCheck
763
806
  # @private
764
807
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -946,6 +989,7 @@ module Google
946
989
  # @private
947
990
  class Representation < Google::Apis::Core::JsonRepresentation
948
991
  collection :forwarded_ports, as: 'forwardedPorts'
992
+ property :instance_ip_mode, as: 'instanceIpMode'
949
993
  property :instance_tag, as: 'instanceTag'
950
994
  property :name, as: 'name'
951
995
  property :session_affinity, as: 'sessionAffinity'
@@ -32,10 +32,10 @@ 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
- # See, edit, configure, and delete your Google Cloud Platform data
35
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
36
36
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
37
37
 
38
- # View your data across Google Cloud Platform services
38
+ # View your data across Google Cloud services and see the email address of your Google Account
39
39
  AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
40
40
  end
41
41
  end
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.11.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-06-28 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.11.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: []