google-apis-dataplex_v1 0.10.0 → 0.11.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: 4cf1f52310e9d7eacd185bbd51130c9be6fbf15d1fc9ca641b7cf4f8988c57db
4
- data.tar.gz: 90084f14a8337df3d3e1f1335b6c1fbbc31093423592f4237db3d05b643428e0
3
+ metadata.gz: d91cd94cbd440779a6cec0a7ed6a3f32f75a27d60059f77527505b5c4ac8e26c
4
+ data.tar.gz: da85aeea1053d96ab578cad238d7517bd93de49c93aca3c6108194f9552e914a
5
5
  SHA512:
6
- metadata.gz: f03438bf079fd03aa0ce46f4fa440fddc222f4ffd24edbac16ac0aade42e70cc4196882c1afcf2983a9a4ee554628000e5b4e0fff99386ca7cb9f89ec6756d98
7
- data.tar.gz: 18d46fb2795f5cb9fca404346c088969afa1f6f9d4141046a4fd0562945e31256f2e8115a8cc69773d65fd5e32dad3a27fe1eb6aeb0c64ac9c5feb4deb79f534
6
+ metadata.gz: b7d82692e1c266c643cbdaae8f71a786933bf7127ad97eac815a7e233e7396ae9b7664b77c72662247c348ca11e19ad17f9d26cd34a6c49b3c8aa9f81df57f0f
7
+ data.tar.gz: 0c63af4f7f5aa7ba71b8e430f503d356f91b22d386c1a60e456860fb179f5d273c7cb6009c6e26170ea883b2e2771a034a9e0fa61288ed8e30d8d1207fbd24a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.11.0 (2022-07-29)
4
+
5
+ * Regenerated from discovery document revision 20220723
6
+
3
7
  ### v0.10.0 (2022-07-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20220711
@@ -2374,6 +2374,12 @@ module Google
2374
2374
  class GoogleCloudDataplexV1SessionEvent
2375
2375
  include Google::Apis::Core::Hashable
2376
2376
 
2377
+ # The status of the event.
2378
+ # Corresponds to the JSON property `eventSucceeded`
2379
+ # @return [Boolean]
2380
+ attr_accessor :event_succeeded
2381
+ alias_method :event_succeeded?, :event_succeeded
2382
+
2377
2383
  # The log message.
2378
2384
  # Corresponds to the JSON property `message`
2379
2385
  # @return [String]
@@ -2394,22 +2400,37 @@ module Google
2394
2400
  # @return [String]
2395
2401
  attr_accessor :type
2396
2402
 
2397
- # The information about the user that created the session.
2403
+ # The idle duration of a warm pooled session before it is assigned to user.
2404
+ # Corresponds to the JSON property `unassignedDuration`
2405
+ # @return [String]
2406
+ attr_accessor :unassigned_duration
2407
+
2408
+ # The information about the user that created the session. It will be the email
2409
+ # address of the user.
2398
2410
  # Corresponds to the JSON property `userId`
2399
2411
  # @return [String]
2400
2412
  attr_accessor :user_id
2401
2413
 
2414
+ # If the session is a warm pooled session.
2415
+ # Corresponds to the JSON property `warmPoolEnabled`
2416
+ # @return [Boolean]
2417
+ attr_accessor :warm_pool_enabled
2418
+ alias_method :warm_pool_enabled?, :warm_pool_enabled
2419
+
2402
2420
  def initialize(**args)
2403
2421
  update!(**args)
2404
2422
  end
2405
2423
 
2406
2424
  # Update properties of this object
2407
2425
  def update!(**args)
2426
+ @event_succeeded = args[:event_succeeded] if args.key?(:event_succeeded)
2408
2427
  @message = args[:message] if args.key?(:message)
2409
2428
  @query = args[:query] if args.key?(:query)
2410
2429
  @session_id = args[:session_id] if args.key?(:session_id)
2411
2430
  @type = args[:type] if args.key?(:type)
2431
+ @unassigned_duration = args[:unassigned_duration] if args.key?(:unassigned_duration)
2412
2432
  @user_id = args[:user_id] if args.key?(:user_id)
2433
+ @warm_pool_enabled = args[:warm_pool_enabled] if args.key?(:warm_pool_enabled)
2413
2434
  end
2414
2435
  end
2415
2436
 
@@ -2688,8 +2709,8 @@ module Google
2688
2709
  attr_accessor :max_job_execution_lifetime
2689
2710
 
2690
2711
  # Optional. The project in which jobs are run. By default, the project
2691
- # containing the Lake is used. If a project is provided, the executionspec.
2692
- # service_account must belong to this same project.
2712
+ # containing the Lake is used. If a project is provided, the ExecutionSpec.
2713
+ # service_account must belong to this project.
2693
2714
  # Corresponds to the JSON property `project`
2694
2715
  # @return [String]
2695
2716
  attr_accessor :project
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataplexV1
18
18
  # Version of the google-apis-dataplex_v1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220711"
25
+ REVISION = "20220723"
26
26
  end
27
27
  end
28
28
  end
@@ -1238,12 +1238,15 @@ module Google
1238
1238
  class GoogleCloudDataplexV1SessionEvent
1239
1239
  # @private
1240
1240
  class Representation < Google::Apis::Core::JsonRepresentation
1241
+ property :event_succeeded, as: 'eventSucceeded'
1241
1242
  property :message, as: 'message'
1242
1243
  property :query, as: 'query', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail::Representation
1243
1244
 
1244
1245
  property :session_id, as: 'sessionId'
1245
1246
  property :type, as: 'type'
1247
+ property :unassigned_duration, as: 'unassignedDuration'
1246
1248
  property :user_id, as: 'userId'
1249
+ property :warm_pool_enabled, as: 'warmPoolEnabled'
1247
1250
  end
1248
1251
  end
1249
1252
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataplex_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.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: 2022-07-25 00:00:00.000000000 Z
11
+ date: 2022-08-01 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/main/generated/google-apis-dataplex_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
63
63
  post_install_message:
64
64
  rdoc_options: []