google-apis-dataplex_v1 0.13.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: '099b36e61ca50fdea1dba6cbe19038897442164957e16457b6f0efda1a484054'
4
- data.tar.gz: 5fea93ce3cf73f220efc17710beaeeb2615df2b645182c279157cb95d474634e
3
+ metadata.gz: 48d0de7e830b7f69671ea96d16b8e893d77e3887492db93b47d87df2e129aa57
4
+ data.tar.gz: 73ff067ac0082e562d1b863158dc4140c5656e1bdbcf32ad41c5e1af24d58191
5
5
  SHA512:
6
- metadata.gz: a644f21a1dc6675f122aec59593e924e5a9f468439ae66342548dbb36fafcc894572c598a9fe5a0cfd1f63c7d1443ed29f41931c04951217071e063db96e19c7
7
- data.tar.gz: dbdfbd8989e568ff72b133bf2019937bca63d0528849b76056cc11246965150fb74bd40d003da3c8bdae01f49759e9df6a89830436dd47a42f0afce57dc04cce
6
+ metadata.gz: e7db3f692f910c17cdfdf74f03cb12505c9822f439b7b2221e7a3300b36f5b273b0c69208e51f4690e26d12b275ba8fedb437c85e08dcbbcdc042df35401bea8
7
+ data.tar.gz: bc28f39e758c0098f802e8668e0a3fe5f8dbd0f5add49fcef57cd5e9000c6aa4c28520244c95e81ae5dc6d86e68786920ad4613656d1f3ae9706ffc33c97b573
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.15.0 (2022-10-30)
4
+
5
+ * Regenerated from discovery document revision 20221021
6
+ * Regenerated using generator version 0.11.0
7
+
8
+ ### v0.14.0 (2022-09-24)
9
+
10
+ * Regenerated from discovery document revision 20220920
11
+ * Regenerated using generator version 0.10.0
12
+
3
13
  ### v0.13.0 (2022-09-18)
4
14
 
5
15
  * Unspecified changes
@@ -896,6 +896,145 @@ module Google
896
896
  end
897
897
  end
898
898
 
899
+ # These messages contain information about the execution of a datascan. The
900
+ # monitored resource is 'DataScan'
901
+ class GoogleCloudDataplexV1DataScanEvent
902
+ include Google::Apis::Core::Hashable
903
+
904
+ # Data profile result for data scan job.
905
+ # Corresponds to the JSON property `dataProfile`
906
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult]
907
+ attr_accessor :data_profile
908
+
909
+ # Data quality result for data scan job.
910
+ # Corresponds to the JSON property `dataQuality`
911
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataQualityResult]
912
+ attr_accessor :data_quality
913
+
914
+ # The data source of the data scan
915
+ # Corresponds to the JSON property `dataSource`
916
+ # @return [String]
917
+ attr_accessor :data_source
918
+
919
+ # The time when the data scan job finished.
920
+ # Corresponds to the JSON property `endTime`
921
+ # @return [String]
922
+ attr_accessor :end_time
923
+
924
+ # The identifier of the specific data scan job this log entry is for.
925
+ # Corresponds to the JSON property `jobId`
926
+ # @return [String]
927
+ attr_accessor :job_id
928
+
929
+ # The message describing the data scan job event.
930
+ # Corresponds to the JSON property `message`
931
+ # @return [String]
932
+ attr_accessor :message
933
+
934
+ # The scope of the data scan (e.g. full, incremental).
935
+ # Corresponds to the JSON property `scope`
936
+ # @return [String]
937
+ attr_accessor :scope
938
+
939
+ # A version identifier of the spec which was used to execute this job.
940
+ # Corresponds to the JSON property `specVersion`
941
+ # @return [String]
942
+ attr_accessor :spec_version
943
+
944
+ # The time when the data scan job started to run.
945
+ # Corresponds to the JSON property `startTime`
946
+ # @return [String]
947
+ attr_accessor :start_time
948
+
949
+ # The status of the data scan job.
950
+ # Corresponds to the JSON property `state`
951
+ # @return [String]
952
+ attr_accessor :state
953
+
954
+ # The trigger type of the data scan job.
955
+ # Corresponds to the JSON property `trigger`
956
+ # @return [String]
957
+ attr_accessor :trigger
958
+
959
+ # The type of the data scan.
960
+ # Corresponds to the JSON property `type`
961
+ # @return [String]
962
+ attr_accessor :type
963
+
964
+ def initialize(**args)
965
+ update!(**args)
966
+ end
967
+
968
+ # Update properties of this object
969
+ def update!(**args)
970
+ @data_profile = args[:data_profile] if args.key?(:data_profile)
971
+ @data_quality = args[:data_quality] if args.key?(:data_quality)
972
+ @data_source = args[:data_source] if args.key?(:data_source)
973
+ @end_time = args[:end_time] if args.key?(:end_time)
974
+ @job_id = args[:job_id] if args.key?(:job_id)
975
+ @message = args[:message] if args.key?(:message)
976
+ @scope = args[:scope] if args.key?(:scope)
977
+ @spec_version = args[:spec_version] if args.key?(:spec_version)
978
+ @start_time = args[:start_time] if args.key?(:start_time)
979
+ @state = args[:state] if args.key?(:state)
980
+ @trigger = args[:trigger] if args.key?(:trigger)
981
+ @type = args[:type] if args.key?(:type)
982
+ end
983
+ end
984
+
985
+ # Data profile result for data scan job.
986
+ class GoogleCloudDataplexV1DataScanEventDataProfileResult
987
+ include Google::Apis::Core::Hashable
988
+
989
+ # The count of rows processed in the data scan job.
990
+ # Corresponds to the JSON property `rowCount`
991
+ # @return [Fixnum]
992
+ attr_accessor :row_count
993
+
994
+ def initialize(**args)
995
+ update!(**args)
996
+ end
997
+
998
+ # Update properties of this object
999
+ def update!(**args)
1000
+ @row_count = args[:row_count] if args.key?(:row_count)
1001
+ end
1002
+ end
1003
+
1004
+ # Data quality result for data scan job.
1005
+ class GoogleCloudDataplexV1DataScanEventDataQualityResult
1006
+ include Google::Apis::Core::Hashable
1007
+
1008
+ # The result of each dimension for data quality result. The key of the map is
1009
+ # the name of the dimension. The value is the bool value depicting whether the
1010
+ # dimension result was pass or not.
1011
+ # Corresponds to the JSON property `dimensionPassed`
1012
+ # @return [Hash<String,Boolean>]
1013
+ attr_accessor :dimension_passed
1014
+
1015
+ # Whether the data quality result was pass or not.
1016
+ # Corresponds to the JSON property `passed`
1017
+ # @return [Boolean]
1018
+ attr_accessor :passed
1019
+ alias_method :passed?, :passed
1020
+
1021
+ # The count of rows processed in the data scan job.
1022
+ # Corresponds to the JSON property `rowCount`
1023
+ # @return [Fixnum]
1024
+ attr_accessor :row_count
1025
+
1026
+ def initialize(**args)
1027
+ update!(**args)
1028
+ end
1029
+
1030
+ # Update properties of this object
1031
+ def update!(**args)
1032
+ @dimension_passed = args[:dimension_passed] if args.key?(:dimension_passed)
1033
+ @passed = args[:passed] if args.key?(:passed)
1034
+ @row_count = args[:row_count] if args.key?(:row_count)
1035
+ end
1036
+ end
1037
+
899
1038
  # The payload associated with Discovery data processing.
900
1039
  class GoogleCloudDataplexV1DiscoveryEvent
901
1040
  include Google::Apis::Core::Hashable
@@ -2380,6 +2519,13 @@ module Google
2380
2519
  attr_accessor :event_succeeded
2381
2520
  alias_method :event_succeeded?, :event_succeeded
2382
2521
 
2522
+ # If the session is associated with an environment with fast startup enabled,
2523
+ # and was created before being assigned to a user.
2524
+ # Corresponds to the JSON property `fastStartupEnabled`
2525
+ # @return [Boolean]
2526
+ attr_accessor :fast_startup_enabled
2527
+ alias_method :fast_startup_enabled?, :fast_startup_enabled
2528
+
2383
2529
  # The log message.
2384
2530
  # Corresponds to the JSON property `message`
2385
2531
  # @return [String]
@@ -2411,12 +2557,6 @@ module Google
2411
2557
  # @return [String]
2412
2558
  attr_accessor :user_id
2413
2559
 
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
-
2420
2560
  def initialize(**args)
2421
2561
  update!(**args)
2422
2562
  end
@@ -2424,13 +2564,13 @@ module Google
2424
2564
  # Update properties of this object
2425
2565
  def update!(**args)
2426
2566
  @event_succeeded = args[:event_succeeded] if args.key?(:event_succeeded)
2567
+ @fast_startup_enabled = args[:fast_startup_enabled] if args.key?(:fast_startup_enabled)
2427
2568
  @message = args[:message] if args.key?(:message)
2428
2569
  @query = args[:query] if args.key?(:query)
2429
2570
  @session_id = args[:session_id] if args.key?(:session_id)
2430
2571
  @type = args[:type] if args.key?(:type)
2431
2572
  @unassigned_duration = args[:unassigned_duration] if args.key?(:unassigned_duration)
2432
2573
  @user_id = args[:user_id] if args.key?(:user_id)
2433
- @warm_pool_enabled = args[:warm_pool_enabled] if args.key?(:warm_pool_enabled)
2434
2574
  end
2435
2575
  end
2436
2576
 
@@ -2633,6 +2773,11 @@ module Google
2633
2773
  # @return [String]
2634
2774
  attr_accessor :name
2635
2775
 
2776
+ # Config for running scheduled notebooks.
2777
+ # Corresponds to the JSON property `notebook`
2778
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskNotebookTaskConfig]
2779
+ attr_accessor :notebook
2780
+
2636
2781
  # User-specified config for running a Spark task.
2637
2782
  # Corresponds to the JSON property `spark`
2638
2783
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig]
@@ -2672,6 +2817,7 @@ module Google
2672
2817
  @execution_status = args[:execution_status] if args.key?(:execution_status)
2673
2818
  @labels = args[:labels] if args.key?(:labels)
2674
2819
  @name = args[:name] if args.key?(:name)
2820
+ @notebook = args[:notebook] if args.key?(:notebook)
2675
2821
  @spark = args[:spark] if args.key?(:spark)
2676
2822
  @state = args[:state] if args.key?(:state)
2677
2823
  @trigger_spec = args[:trigger_spec] if args.key?(:trigger_spec)
@@ -2896,6 +3042,48 @@ module Google
2896
3042
  end
2897
3043
  end
2898
3044
 
3045
+ # Config for running scheduled notebooks.
3046
+ class GoogleCloudDataplexV1TaskNotebookTaskConfig
3047
+ include Google::Apis::Core::Hashable
3048
+
3049
+ # Optional. Cloud Storage URIs of archives to be extracted into the working
3050
+ # directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz,
3051
+ # and .zip.
3052
+ # Corresponds to the JSON property `archiveUris`
3053
+ # @return [Array<String>]
3054
+ attr_accessor :archive_uris
3055
+
3056
+ # Optional. Cloud Storage URIs of files to be placed in the working directory of
3057
+ # each executor.
3058
+ # Corresponds to the JSON property `fileUris`
3059
+ # @return [Array<String>]
3060
+ attr_accessor :file_uris
3061
+
3062
+ # Configuration for the underlying infrastructure used to run workloads.
3063
+ # Corresponds to the JSON property `infrastructureSpec`
3064
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec]
3065
+ attr_accessor :infrastructure_spec
3066
+
3067
+ # Required. Path to input notebook. This can be the Cloud Storage URI of the
3068
+ # notebook file or the path to a Notebook Content. The execution args are
3069
+ # accessible as environment variables (TASK_key=value).
3070
+ # Corresponds to the JSON property `notebook`
3071
+ # @return [String]
3072
+ attr_accessor :notebook
3073
+
3074
+ def initialize(**args)
3075
+ update!(**args)
3076
+ end
3077
+
3078
+ # Update properties of this object
3079
+ def update!(**args)
3080
+ @archive_uris = args[:archive_uris] if args.key?(:archive_uris)
3081
+ @file_uris = args[:file_uris] if args.key?(:file_uris)
3082
+ @infrastructure_spec = args[:infrastructure_spec] if args.key?(:infrastructure_spec)
3083
+ @notebook = args[:notebook] if args.key?(:notebook)
3084
+ end
3085
+ end
3086
+
2899
3087
  # User-specified config for running a Spark task.
2900
3088
  class GoogleCloudDataplexV1TaskSparkTaskConfig
2901
3089
  include Google::Apis::Core::Hashable
@@ -3433,22 +3621,23 @@ module Google
3433
3621
  # members can have the following values: allUsers: A special identifier that
3434
3622
  # represents anyone who is on the internet; with or without a Google account.
3435
3623
  # allAuthenticatedUsers: A special identifier that represents anyone who is
3436
- # authenticated with a Google account or a service account. user:`emailid`: An
3437
- # email address that represents a specific Google account. For example, alice@
3438
- # example.com . serviceAccount:`emailid`: An email address that represents a
3439
- # Google service account. For example, my-other-app@appspot.gserviceaccount.com.
3440
- # serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]: An
3441
- # identifier for a Kubernetes service account (https://cloud.google.com/
3442
- # kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, my-
3443
- # project.svc.id.goog[my-namespace/my-kubernetes-sa]. group:`emailid`: An email
3444
- # address that represents a Google group. For example, admins@example.com.
3445
- # deleted:user:`emailid`?uid=`uniqueid`: An email address (plus unique
3446
- # identifier) representing a user that has been recently deleted. For example,
3447
- # alice@example.com?uid=123456789012345678901. If the user is recovered, this
3448
- # value reverts to user:`emailid` and the recovered user retains the role in the
3449
- # binding. deleted:serviceAccount:`emailid`?uid=`uniqueid`: An email address (
3450
- # plus unique identifier) representing a service account that has been recently
3451
- # deleted. For example, my-other-app@appspot.gserviceaccount.com?uid=
3624
+ # authenticated with a Google account or a service account. Does not include
3625
+ # identities that come from external identity providers (IdPs) through identity
3626
+ # federation. user:`emailid`: An email address that represents a specific Google
3627
+ # account. For example, alice@example.com . serviceAccount:`emailid`: An email
3628
+ # address that represents a Google service account. For example, my-other-app@
3629
+ # appspot.gserviceaccount.com. serviceAccount:`projectid`.svc.id.goog[`namespace`
3630
+ # /`kubernetes-sa`]: An identifier for a Kubernetes service account (https://
3631
+ # cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts).
3632
+ # For example, my-project.svc.id.goog[my-namespace/my-kubernetes-sa]. group:`
3633
+ # emailid`: An email address that represents a Google group. For example, admins@
3634
+ # example.com. deleted:user:`emailid`?uid=`uniqueid`: An email address (plus
3635
+ # unique identifier) representing a user that has been recently deleted. For
3636
+ # example, alice@example.com?uid=123456789012345678901. If the user is recovered,
3637
+ # this value reverts to user:`emailid` and the recovered user retains the role
3638
+ # in the binding. deleted:serviceAccount:`emailid`?uid=`uniqueid`: An email
3639
+ # address (plus unique identifier) representing a service account that has been
3640
+ # recently deleted. For example, my-other-app@appspot.gserviceaccount.com?uid=
3452
3641
  # 123456789012345678901. If the service account is undeleted, this value reverts
3453
3642
  # to serviceAccount:`emailid` and the undeleted service account retains the role
3454
3643
  # in the binding. deleted:group:`emailid`?uid=`uniqueid`: An email address (plus
@@ -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.13.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.9.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220818"
25
+ REVISION = "20221021"
26
26
  end
27
27
  end
28
28
  end
@@ -166,6 +166,24 @@ module Google
166
166
  include Google::Apis::Core::JsonObjectSupport
167
167
  end
168
168
 
169
+ class GoogleCloudDataplexV1DataScanEvent
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
175
+ class GoogleCloudDataplexV1DataScanEventDataProfileResult
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
181
+ class GoogleCloudDataplexV1DataScanEventDataQualityResult
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
169
187
  class GoogleCloudDataplexV1DiscoveryEvent
170
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
189
 
@@ -460,6 +478,12 @@ module Google
460
478
  include Google::Apis::Core::JsonObjectSupport
461
479
  end
462
480
 
481
+ class GoogleCloudDataplexV1TaskNotebookTaskConfig
482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
483
+
484
+ include Google::Apis::Core::JsonObjectSupport
485
+ end
486
+
463
487
  class GoogleCloudDataplexV1TaskSparkTaskConfig
464
488
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
489
 
@@ -832,6 +856,42 @@ module Google
832
856
  end
833
857
  end
834
858
 
859
+ class GoogleCloudDataplexV1DataScanEvent
860
+ # @private
861
+ class Representation < Google::Apis::Core::JsonRepresentation
862
+ property :data_profile, as: 'dataProfile', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult::Representation
863
+
864
+ property :data_quality, as: 'dataQuality', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataQualityResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataQualityResult::Representation
865
+
866
+ property :data_source, as: 'dataSource'
867
+ property :end_time, as: 'endTime'
868
+ property :job_id, as: 'jobId'
869
+ property :message, as: 'message'
870
+ property :scope, as: 'scope'
871
+ property :spec_version, as: 'specVersion'
872
+ property :start_time, as: 'startTime'
873
+ property :state, as: 'state'
874
+ property :trigger, as: 'trigger'
875
+ property :type, as: 'type'
876
+ end
877
+ end
878
+
879
+ class GoogleCloudDataplexV1DataScanEventDataProfileResult
880
+ # @private
881
+ class Representation < Google::Apis::Core::JsonRepresentation
882
+ property :row_count, :numeric_string => true, as: 'rowCount'
883
+ end
884
+ end
885
+
886
+ class GoogleCloudDataplexV1DataScanEventDataQualityResult
887
+ # @private
888
+ class Representation < Google::Apis::Core::JsonRepresentation
889
+ hash :dimension_passed, as: 'dimensionPassed'
890
+ property :passed, as: 'passed'
891
+ property :row_count, :numeric_string => true, as: 'rowCount'
892
+ end
893
+ end
894
+
835
895
  class GoogleCloudDataplexV1DiscoveryEvent
836
896
  # @private
837
897
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1239,6 +1299,7 @@ module Google
1239
1299
  # @private
1240
1300
  class Representation < Google::Apis::Core::JsonRepresentation
1241
1301
  property :event_succeeded, as: 'eventSucceeded'
1302
+ property :fast_startup_enabled, as: 'fastStartupEnabled'
1242
1303
  property :message, as: 'message'
1243
1304
  property :query, as: 'query', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail::Representation
1244
1305
 
@@ -1246,7 +1307,6 @@ module Google
1246
1307
  property :type, as: 'type'
1247
1308
  property :unassigned_duration, as: 'unassignedDuration'
1248
1309
  property :user_id, as: 'userId'
1249
- property :warm_pool_enabled, as: 'warmPoolEnabled'
1250
1310
  end
1251
1311
  end
1252
1312
 
@@ -1304,6 +1364,8 @@ module Google
1304
1364
 
1305
1365
  hash :labels, as: 'labels'
1306
1366
  property :name, as: 'name'
1367
+ property :notebook, as: 'notebook', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskNotebookTaskConfig, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskNotebookTaskConfig::Representation
1368
+
1307
1369
  property :spark, as: 'spark', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig::Representation
1308
1370
 
1309
1371
  property :state, as: 'state'
@@ -1373,6 +1435,17 @@ module Google
1373
1435
  end
1374
1436
  end
1375
1437
 
1438
+ class GoogleCloudDataplexV1TaskNotebookTaskConfig
1439
+ # @private
1440
+ class Representation < Google::Apis::Core::JsonRepresentation
1441
+ collection :archive_uris, as: 'archiveUris'
1442
+ collection :file_uris, as: 'fileUris'
1443
+ property :infrastructure_spec, as: 'infrastructureSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec::Representation
1444
+
1445
+ property :notebook, as: 'notebook'
1446
+ end
1447
+ end
1448
+
1376
1449
  class GoogleCloudDataplexV1TaskSparkTaskConfig
1377
1450
  # @private
1378
1451
  class Representation < Google::Apis::Core::JsonRepresentation
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.13.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: 2022-09-19 00:00:00.000000000 Z
11
+ date: 2022-10-31 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.7.2
19
+ version: 0.9.1
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.7.2
29
+ version: 0.9.1
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/main/generated/google-apis-dataplex_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.15.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: []