google-apis-datacatalog_v1 0.42.0 → 0.43.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: 4363814e05dda2276bfdf4a438ab239b90e27888ce8f1b585e2202470ca0c2b8
4
- data.tar.gz: 3433955bbde436921c7ff5bc69f6dd0a3ec51345037fbd280d773672e7ab5eb2
3
+ metadata.gz: 4f5fd486ef5dfbcd2d292a26fceff844f0fd2d5cc11676dcd7a9701ecb76abdc
4
+ data.tar.gz: d53c2d639ece6e018642e9a4b67378e373fcb74f6e58fe0e28810a09910b6bcb
5
5
  SHA512:
6
- metadata.gz: 751443f9a385d7cb5578c79bc2d8548a0e009ba0a43dbbe0858514012ace1579c15074ff60a24296c3a9a45fdbff49cff8534ebda965fdc22f3ead35a975968d
7
- data.tar.gz: 54ae54a875d7e0b3677a76bacb4828c0363bded2db45eba4ebc291273339b1e416554ce69e992e187f1162ee6f65faa71a0b1f9cf5caa9288e64959a6ad12242
6
+ metadata.gz: '014663173479e67464177f662732901b6de928e1d272fe9098aa3c910815fbf115164ef3fab4730682c498225e92bf4a6f9f614a5279c50b7b740be2e460522d'
7
+ data.tar.gz: 7462dc4188e0c057512f2ea0c3f1f3c123d60eab17e1f05f5ed2a9f701fe022c772e756d33363236ba28b428182e7215e43ed2fa07e9bca5c09a6ff3ddab61d2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.43.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230811
6
+
3
7
  ### v0.42.0 (2023-08-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20230804
@@ -916,6 +916,26 @@ module Google
916
916
  end
917
917
  end
918
918
 
919
+ # Specification that applies to a dataset. Valid only for entries with the `
920
+ # DATASET` type.
921
+ class GoogleCloudDatacatalogV1DatasetSpec
922
+ include Google::Apis::Core::Hashable
923
+
924
+ # Specification for vertex dataset resources.
925
+ # Corresponds to the JSON property `vertexDatasetSpec`
926
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1VertexDatasetSpec]
927
+ attr_accessor :vertex_dataset_spec
928
+
929
+ def initialize(**args)
930
+ update!(**args)
931
+ end
932
+
933
+ # Update properties of this object
934
+ def update!(**args)
935
+ @vertex_dataset_spec = args[:vertex_dataset_spec] if args.key?(:vertex_dataset_spec)
936
+ end
937
+ end
938
+
919
939
  # Wrapper for any item that can be contained in the dump.
920
940
  class GoogleCloudDatacatalogV1DumpItem
921
941
  include Google::Apis::Core::Hashable
@@ -987,6 +1007,12 @@ module Google
987
1007
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DatabaseTableSpec]
988
1008
  attr_accessor :database_table_spec
989
1009
 
1010
+ # Specification that applies to a dataset. Valid only for entries with the `
1011
+ # DATASET` type.
1012
+ # Corresponds to the JSON property `datasetSpec`
1013
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DatasetSpec]
1014
+ attr_accessor :dataset_spec
1015
+
990
1016
  # Entry description that can consist of several sentences or paragraphs that
991
1017
  # describe entry contents. The description must not contain Unicode non-
992
1018
  # characters as well as C0 and C1 control codes except tabs (HT), new lines (LF),
@@ -1054,6 +1080,12 @@ module Google
1054
1080
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1LookerSystemSpec]
1055
1081
  attr_accessor :looker_system_spec
1056
1082
 
1083
+ # Specification that applies to a model. Valid only for entries with the `MODEL`
1084
+ # type.
1085
+ # Corresponds to the JSON property `modelSpec`
1086
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModelSpec]
1087
+ attr_accessor :model_spec
1088
+
1057
1089
  # Output only. The resource name of an entry in URL format. Note: The entry
1058
1090
  # itself and its child resources might not be stored in the location specified
1059
1091
  # in its name.
@@ -1140,6 +1172,7 @@ module Google
1140
1172
  @data_source = args[:data_source] if args.key?(:data_source)
1141
1173
  @data_source_connection_spec = args[:data_source_connection_spec] if args.key?(:data_source_connection_spec)
1142
1174
  @database_table_spec = args[:database_table_spec] if args.key?(:database_table_spec)
1175
+ @dataset_spec = args[:dataset_spec] if args.key?(:dataset_spec)
1143
1176
  @description = args[:description] if args.key?(:description)
1144
1177
  @display_name = args[:display_name] if args.key?(:display_name)
1145
1178
  @fileset_spec = args[:fileset_spec] if args.key?(:fileset_spec)
@@ -1149,6 +1182,7 @@ module Google
1149
1182
  @labels = args[:labels] if args.key?(:labels)
1150
1183
  @linked_resource = args[:linked_resource] if args.key?(:linked_resource)
1151
1184
  @looker_system_spec = args[:looker_system_spec] if args.key?(:looker_system_spec)
1185
+ @model_spec = args[:model_spec] if args.key?(:model_spec)
1152
1186
  @name = args[:name] if args.key?(:name)
1153
1187
  @personal_details = args[:personal_details] if args.key?(:personal_details)
1154
1188
  @routine_spec = args[:routine_spec] if args.key?(:routine_spec)
@@ -1733,6 +1767,26 @@ module Google
1733
1767
  end
1734
1768
  end
1735
1769
 
1770
+ # Specification that applies to a model. Valid only for entries with the `MODEL`
1771
+ # type.
1772
+ class GoogleCloudDatacatalogV1ModelSpec
1773
+ include Google::Apis::Core::Hashable
1774
+
1775
+ # Specification for vertex model resources.
1776
+ # Corresponds to the JSON property `vertexModelSpec`
1777
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1VertexModelSpec]
1778
+ attr_accessor :vertex_model_spec
1779
+
1780
+ def initialize(**args)
1781
+ update!(**args)
1782
+ end
1783
+
1784
+ # Update properties of this object
1785
+ def update!(**args)
1786
+ @vertex_model_spec = args[:vertex_model_spec] if args.key?(:vertex_model_spec)
1787
+ end
1788
+ end
1789
+
1736
1790
  # Request message for ModifyEntryContacts.
1737
1791
  class GoogleCloudDatacatalogV1ModifyEntryContactsRequest
1738
1792
  include Google::Apis::Core::Hashable
@@ -3278,6 +3332,103 @@ module Google
3278
3332
  end
3279
3333
  end
3280
3334
 
3335
+ # Specification for vertex dataset resources.
3336
+ class GoogleCloudDatacatalogV1VertexDatasetSpec
3337
+ include Google::Apis::Core::Hashable
3338
+
3339
+ # The number of DataItems in this Dataset. Only apply for non-structured Dataset.
3340
+ # Corresponds to the JSON property `dataItemCount`
3341
+ # @return [Fixnum]
3342
+ attr_accessor :data_item_count
3343
+
3344
+ # Type of the dataset.
3345
+ # Corresponds to the JSON property `dataType`
3346
+ # @return [String]
3347
+ attr_accessor :data_type
3348
+
3349
+ def initialize(**args)
3350
+ update!(**args)
3351
+ end
3352
+
3353
+ # Update properties of this object
3354
+ def update!(**args)
3355
+ @data_item_count = args[:data_item_count] if args.key?(:data_item_count)
3356
+ @data_type = args[:data_type] if args.key?(:data_type)
3357
+ end
3358
+ end
3359
+
3360
+ # Detail description of the source information of a Vertex model.
3361
+ class GoogleCloudDatacatalogV1VertexModelSourceInfo
3362
+ include Google::Apis::Core::Hashable
3363
+
3364
+ # If this Model is copy of another Model. If true then source_type pertains to
3365
+ # the original.
3366
+ # Corresponds to the JSON property `copy`
3367
+ # @return [Boolean]
3368
+ attr_accessor :copy
3369
+ alias_method :copy?, :copy
3370
+
3371
+ # Type of the model source.
3372
+ # Corresponds to the JSON property `sourceType`
3373
+ # @return [String]
3374
+ attr_accessor :source_type
3375
+
3376
+ def initialize(**args)
3377
+ update!(**args)
3378
+ end
3379
+
3380
+ # Update properties of this object
3381
+ def update!(**args)
3382
+ @copy = args[:copy] if args.key?(:copy)
3383
+ @source_type = args[:source_type] if args.key?(:source_type)
3384
+ end
3385
+ end
3386
+
3387
+ # Specification for vertex model resources.
3388
+ class GoogleCloudDatacatalogV1VertexModelSpec
3389
+ include Google::Apis::Core::Hashable
3390
+
3391
+ # URI of the Docker image to be used as the custom container for serving
3392
+ # predictions.
3393
+ # Corresponds to the JSON property `containerImageUri`
3394
+ # @return [String]
3395
+ attr_accessor :container_image_uri
3396
+
3397
+ # User provided version aliases so that a model version can be referenced via
3398
+ # alias
3399
+ # Corresponds to the JSON property `versionAliases`
3400
+ # @return [Array<String>]
3401
+ attr_accessor :version_aliases
3402
+
3403
+ # The description of this version.
3404
+ # Corresponds to the JSON property `versionDescription`
3405
+ # @return [String]
3406
+ attr_accessor :version_description
3407
+
3408
+ # The version ID of the model.
3409
+ # Corresponds to the JSON property `versionId`
3410
+ # @return [String]
3411
+ attr_accessor :version_id
3412
+
3413
+ # Detail description of the source information of a Vertex model.
3414
+ # Corresponds to the JSON property `vertexModelSourceInfo`
3415
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1VertexModelSourceInfo]
3416
+ attr_accessor :vertex_model_source_info
3417
+
3418
+ def initialize(**args)
3419
+ update!(**args)
3420
+ end
3421
+
3422
+ # Update properties of this object
3423
+ def update!(**args)
3424
+ @container_image_uri = args[:container_image_uri] if args.key?(:container_image_uri)
3425
+ @version_aliases = args[:version_aliases] if args.key?(:version_aliases)
3426
+ @version_description = args[:version_description] if args.key?(:version_description)
3427
+ @version_id = args[:version_id] if args.key?(:version_id)
3428
+ @vertex_model_source_info = args[:vertex_model_source_info] if args.key?(:vertex_model_source_info)
3429
+ end
3430
+ end
3431
+
3281
3432
  # Table view specification.
3282
3433
  class GoogleCloudDatacatalogV1ViewSpec
3283
3434
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatacatalogV1
18
18
  # Version of the google-apis-datacatalog_v1 gem
19
- GEM_VERSION = "0.42.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230804"
25
+ REVISION = "20230811"
26
26
  end
27
27
  end
28
28
  end
@@ -190,6 +190,12 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
+ class GoogleCloudDatacatalogV1DatasetSpec
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
193
199
  class GoogleCloudDatacatalogV1DumpItem
194
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
201
 
@@ -328,6 +334,12 @@ module Google
328
334
  include Google::Apis::Core::JsonObjectSupport
329
335
  end
330
336
 
337
+ class GoogleCloudDatacatalogV1ModelSpec
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
331
343
  class GoogleCloudDatacatalogV1ModifyEntryContactsRequest
332
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
345
 
@@ -598,6 +610,24 @@ module Google
598
610
  include Google::Apis::Core::JsonObjectSupport
599
611
  end
600
612
 
613
+ class GoogleCloudDatacatalogV1VertexDatasetSpec
614
+ class Representation < Google::Apis::Core::JsonRepresentation; end
615
+
616
+ include Google::Apis::Core::JsonObjectSupport
617
+ end
618
+
619
+ class GoogleCloudDatacatalogV1VertexModelSourceInfo
620
+ class Representation < Google::Apis::Core::JsonRepresentation; end
621
+
622
+ include Google::Apis::Core::JsonObjectSupport
623
+ end
624
+
625
+ class GoogleCloudDatacatalogV1VertexModelSpec
626
+ class Representation < Google::Apis::Core::JsonRepresentation; end
627
+
628
+ include Google::Apis::Core::JsonObjectSupport
629
+ end
630
+
601
631
  class GoogleCloudDatacatalogV1ViewSpec
602
632
  class Representation < Google::Apis::Core::JsonRepresentation; end
603
633
 
@@ -903,6 +933,14 @@ module Google
903
933
  end
904
934
  end
905
935
 
936
+ class GoogleCloudDatacatalogV1DatasetSpec
937
+ # @private
938
+ class Representation < Google::Apis::Core::JsonRepresentation
939
+ property :vertex_dataset_spec, as: 'vertexDatasetSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1VertexDatasetSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1VertexDatasetSpec::Representation
940
+
941
+ end
942
+ end
943
+
906
944
  class GoogleCloudDatacatalogV1DumpItem
907
945
  # @private
908
946
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -928,6 +966,8 @@ module Google
928
966
 
929
967
  property :database_table_spec, as: 'databaseTableSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DatabaseTableSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DatabaseTableSpec::Representation
930
968
 
969
+ property :dataset_spec, as: 'datasetSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DatasetSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DatasetSpec::Representation
970
+
931
971
  property :description, as: 'description'
932
972
  property :display_name, as: 'displayName'
933
973
  property :fileset_spec, as: 'filesetSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1FilesetSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1FilesetSpec::Representation
@@ -940,6 +980,8 @@ module Google
940
980
  property :linked_resource, as: 'linkedResource'
941
981
  property :looker_system_spec, as: 'lookerSystemSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1LookerSystemSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1LookerSystemSpec::Representation
942
982
 
983
+ property :model_spec, as: 'modelSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModelSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModelSpec::Representation
984
+
943
985
  property :name, as: 'name'
944
986
  property :personal_details, as: 'personalDetails', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PersonalDetails, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PersonalDetails::Representation
945
987
 
@@ -1146,6 +1188,14 @@ module Google
1146
1188
  end
1147
1189
  end
1148
1190
 
1191
+ class GoogleCloudDatacatalogV1ModelSpec
1192
+ # @private
1193
+ class Representation < Google::Apis::Core::JsonRepresentation
1194
+ property :vertex_model_spec, as: 'vertexModelSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1VertexModelSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1VertexModelSpec::Representation
1195
+
1196
+ end
1197
+ end
1198
+
1149
1199
  class GoogleCloudDatacatalogV1ModifyEntryContactsRequest
1150
1200
  # @private
1151
1201
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1573,6 +1623,34 @@ module Google
1573
1623
  end
1574
1624
  end
1575
1625
 
1626
+ class GoogleCloudDatacatalogV1VertexDatasetSpec
1627
+ # @private
1628
+ class Representation < Google::Apis::Core::JsonRepresentation
1629
+ property :data_item_count, :numeric_string => true, as: 'dataItemCount'
1630
+ property :data_type, as: 'dataType'
1631
+ end
1632
+ end
1633
+
1634
+ class GoogleCloudDatacatalogV1VertexModelSourceInfo
1635
+ # @private
1636
+ class Representation < Google::Apis::Core::JsonRepresentation
1637
+ property :copy, as: 'copy'
1638
+ property :source_type, as: 'sourceType'
1639
+ end
1640
+ end
1641
+
1642
+ class GoogleCloudDatacatalogV1VertexModelSpec
1643
+ # @private
1644
+ class Representation < Google::Apis::Core::JsonRepresentation
1645
+ property :container_image_uri, as: 'containerImageUri'
1646
+ collection :version_aliases, as: 'versionAliases'
1647
+ property :version_description, as: 'versionDescription'
1648
+ property :version_id, as: 'versionId'
1649
+ property :vertex_model_source_info, as: 'vertexModelSourceInfo', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1VertexModelSourceInfo, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1VertexModelSourceInfo::Representation
1650
+
1651
+ end
1652
+ end
1653
+
1576
1654
  class GoogleCloudDatacatalogV1ViewSpec
1577
1655
  # @private
1578
1656
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datacatalog_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.43.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: 2023-08-20 00:00:00.000000000 Z
11
+ date: 2023-09-03 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-datacatalog_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.43.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Cloud Data Catalog API V1