google-apis-dataplex_v1 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: a156c23c2e72613c1f78504cedae5038d140fcc296376da5434ce9ff5b45ecb4
4
- data.tar.gz: '04935fb92de9736332a171cc035e31d2644c3691bb34b14245ac4b3544b7c905'
3
+ metadata.gz: 48d0de7e830b7f69671ea96d16b8e893d77e3887492db93b47d87df2e129aa57
4
+ data.tar.gz: 73ff067ac0082e562d1b863158dc4140c5656e1bdbcf32ad41c5e1af24d58191
5
5
  SHA512:
6
- metadata.gz: 7401894a6d9b0167927aac45e3173b2191aad4729e1fb3f4ebba2ab5c017dedbc31615844972e05a07c4b199b379bae97c2cec4cd247c6c5dc16844b6d8688cb
7
- data.tar.gz: ea2384e501adb0c50a37cc4c53586c4d105e6438d6f66792787820fbc0bcb6e3c27206c850df6e36b113a1b31c35cfba735320f040f7530c3a27dea0c690b29f
6
+ metadata.gz: e7db3f692f910c17cdfdf74f03cb12505c9822f439b7b2221e7a3300b36f5b273b0c69208e51f4690e26d12b275ba8fedb437c85e08dcbbcdc042df35401bea8
7
+ data.tar.gz: bc28f39e758c0098f802e8668e0a3fe5f8dbd0f5add49fcef57cd5e9000c6aa4c28520244c95e81ae5dc6d86e68786920ad4613656d1f3ae9706ffc33c97b573
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.14.0 (2022-09-24)
4
9
 
5
10
  * Regenerated from discovery document revision 20220920
@@ -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
 
@@ -2906,14 +3046,15 @@ module Google
2906
3046
  class GoogleCloudDataplexV1TaskNotebookTaskConfig
2907
3047
  include Google::Apis::Core::Hashable
2908
3048
 
2909
- # Optional. GCS URIs of archives to be extracted into the working directory of
2910
- # each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
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.
2911
3052
  # Corresponds to the JSON property `archiveUris`
2912
3053
  # @return [Array<String>]
2913
3054
  attr_accessor :archive_uris
2914
3055
 
2915
- # Optional. GCS URIs of files to be placed in the working directory of each
2916
- # executor.
3056
+ # Optional. Cloud Storage URIs of files to be placed in the working directory of
3057
+ # each executor.
2917
3058
  # Corresponds to the JSON property `fileUris`
2918
3059
  # @return [Array<String>]
2919
3060
  attr_accessor :file_uris
@@ -2923,9 +3064,9 @@ module Google
2923
3064
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec]
2924
3065
  attr_accessor :infrastructure_spec
2925
3066
 
2926
- # Required. Path to input notebook. This can be the GCS URI of the notebook file
2927
- # or the path to a Notebook Content. The execution args are accessible as
2928
- # environment variables (TASK_key=value).
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).
2929
3070
  # Corresponds to the JSON property `notebook`
2930
3071
  # @return [String]
2931
3072
  attr_accessor :notebook
@@ -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.14.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.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220920"
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
 
@@ -838,6 +856,42 @@ module Google
838
856
  end
839
857
  end
840
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
+
841
895
  class GoogleCloudDataplexV1DiscoveryEvent
842
896
  # @private
843
897
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1245,6 +1299,7 @@ module Google
1245
1299
  # @private
1246
1300
  class Representation < Google::Apis::Core::JsonRepresentation
1247
1301
  property :event_succeeded, as: 'eventSucceeded'
1302
+ property :fast_startup_enabled, as: 'fastStartupEnabled'
1248
1303
  property :message, as: 'message'
1249
1304
  property :query, as: 'query', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail::Representation
1250
1305
 
@@ -1252,7 +1307,6 @@ module Google
1252
1307
  property :type, as: 'type'
1253
1308
  property :unassigned_duration, as: 'unassignedDuration'
1254
1309
  property :user_id, as: 'userId'
1255
- property :warm_pool_enabled, as: 'warmPoolEnabled'
1256
1310
  end
1257
1311
  end
1258
1312
 
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.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: 2022-09-26 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.9.0
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.9.0
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.14.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: []