google-apis-datacatalog_v1 0.33.0 → 0.34.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: 5e3489bf5cd5e58ab38338081dc0efa37e6f849ecd9396c78a7a641f4ff079e3
4
- data.tar.gz: daf5def7b792ef062c7704a962cf4f7d4b790ed09d91c352ec87e00059b5cb3d
3
+ metadata.gz: 95ce27ac2ec7b13a6e76feed87dbd0792150dab8586f040f0500dc7cb33a5a16
4
+ data.tar.gz: 180590e9d21559a39f578746a7ebe883ac3304acb2d84684adf50f655bc24101
5
5
  SHA512:
6
- metadata.gz: 6719ad6340160c1c63364a16191ab92d034f9a542ebce6b99a3de0927327d988afa41e88baac750b9c2bf92c7c0bb7117e361a24d03a546db41ec36f88477e0d
7
- data.tar.gz: a06f04702bf690ce4858714932b2a6618c84a2129ad41407d305728981dfb03745961796c73da6859f12456adbb5f06f233d034dbffe69d8e268ae2483d96fbe
6
+ metadata.gz: 21b89c5342e97307de4f507603c2d64187dc29f08b4512e82ad3af9e21e02909395adb55657ab940a06dc82958af88193dd7c0b9ba66cd1513a02d29350f168d
7
+ data.tar.gz: 77a75abc98c8cc07ffde9cc771121a6fe2c01922e871b36e726afacb1d398565a20e23eb7240c35c672f5777eee93c269a0aa40fcf27050448dc70f7f296a0cd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.34.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230317
6
+
3
7
  ### v0.33.0 (2023-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230221
@@ -367,6 +367,84 @@ module Google
367
367
  end
368
368
  end
369
369
 
370
+ # Specification that applies to Instance entries that are part of `
371
+ # CLOUD_BIGTABLE` system. (user_specified_type)
372
+ class GoogleCloudDatacatalogV1CloudBigtableInstanceSpec
373
+ include Google::Apis::Core::Hashable
374
+
375
+ # The list of clusters for the Instance.
376
+ # Corresponds to the JSON property `cloudBigtableClusterSpecs`
377
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec>]
378
+ attr_accessor :cloud_bigtable_cluster_specs
379
+
380
+ def initialize(**args)
381
+ update!(**args)
382
+ end
383
+
384
+ # Update properties of this object
385
+ def update!(**args)
386
+ @cloud_bigtable_cluster_specs = args[:cloud_bigtable_cluster_specs] if args.key?(:cloud_bigtable_cluster_specs)
387
+ end
388
+ end
389
+
390
+ # Spec that applies to clusters of an Instance of Cloud Bigtable.
391
+ class GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec
392
+ include Google::Apis::Core::Hashable
393
+
394
+ # Name of the cluster.
395
+ # Corresponds to the JSON property `displayName`
396
+ # @return [String]
397
+ attr_accessor :display_name
398
+
399
+ # A link back to the parent resource, in this case Instance.
400
+ # Corresponds to the JSON property `linkedResource`
401
+ # @return [String]
402
+ attr_accessor :linked_resource
403
+
404
+ # Location of the cluster, typically a Cloud zone.
405
+ # Corresponds to the JSON property `location`
406
+ # @return [String]
407
+ attr_accessor :location
408
+
409
+ # Type of the resource. For a cluster this would be "CLUSTER".
410
+ # Corresponds to the JSON property `type`
411
+ # @return [String]
412
+ attr_accessor :type
413
+
414
+ def initialize(**args)
415
+ update!(**args)
416
+ end
417
+
418
+ # Update properties of this object
419
+ def update!(**args)
420
+ @display_name = args[:display_name] if args.key?(:display_name)
421
+ @linked_resource = args[:linked_resource] if args.key?(:linked_resource)
422
+ @location = args[:location] if args.key?(:location)
423
+ @type = args[:type] if args.key?(:type)
424
+ end
425
+ end
426
+
427
+ # Specification that applies to all entries that are part of `CLOUD_BIGTABLE`
428
+ # system (user_specified_type)
429
+ class GoogleCloudDatacatalogV1CloudBigtableSystemSpec
430
+ include Google::Apis::Core::Hashable
431
+
432
+ # Display name of the Instance. This is user specified and different from the
433
+ # resource name.
434
+ # Corresponds to the JSON property `instanceDisplayName`
435
+ # @return [String]
436
+ attr_accessor :instance_display_name
437
+
438
+ def initialize(**args)
439
+ update!(**args)
440
+ end
441
+
442
+ # Update properties of this object
443
+ def update!(**args)
444
+ @instance_display_name = args[:instance_display_name] if args.key?(:instance_display_name)
445
+ end
446
+ end
447
+
370
448
  # Specification for the BigQuery connection to a Cloud SQL instance.
371
449
  class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
372
450
  include Google::Apis::Core::Hashable
@@ -838,6 +916,26 @@ module Google
838
916
  end
839
917
  end
840
918
 
919
+ # Wrapper for any item that can be contained in the dump.
920
+ class GoogleCloudDatacatalogV1DumpItem
921
+ include Google::Apis::Core::Hashable
922
+
923
+ # Wrapper containing Entry and information about Tags that should and should not
924
+ # be attached to it.
925
+ # Corresponds to the JSON property `taggedEntry`
926
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TaggedEntry]
927
+ attr_accessor :tagged_entry
928
+
929
+ def initialize(**args)
930
+ update!(**args)
931
+ end
932
+
933
+ # Update properties of this object
934
+ def update!(**args)
935
+ @tagged_entry = args[:tagged_entry] if args.key?(:tagged_entry)
936
+ end
937
+ end
938
+
841
939
  # Entry metadata. A Data Catalog entry represents another resource in Google
842
940
  # Cloud Platform (such as a BigQuery dataset or a Pub/Sub topic) or outside of
843
941
  # it. You can use the `linked_resource` field in the entry resource to refer to
@@ -865,6 +963,12 @@ module Google
865
963
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BusinessContext]
866
964
  attr_accessor :business_context
867
965
 
966
+ # Specification that applies to all entries that are part of `CLOUD_BIGTABLE`
967
+ # system (user_specified_type)
968
+ # Corresponds to the JSON property `cloudBigtableSystemSpec`
969
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudBigtableSystemSpec]
970
+ attr_accessor :cloud_bigtable_system_spec
971
+
868
972
  # Physical location of an entry.
869
973
  # Corresponds to the JSON property `dataSource`
870
974
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource]
@@ -977,6 +1081,12 @@ module Google
977
1081
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Schema]
978
1082
  attr_accessor :schema
979
1083
 
1084
+ # Specification that applies to a Service resource. Valid only for entries with
1085
+ # the `SERVICE` type.
1086
+ # Corresponds to the JSON property `serviceSpec`
1087
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ServiceSpec]
1088
+ attr_accessor :service_spec
1089
+
980
1090
  # Timestamps associated with this resource in a particular system.
981
1091
  # Corresponds to the JSON property `sourceSystemTimestamps`
982
1092
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps]
@@ -1032,6 +1142,7 @@ module Google
1032
1142
  @bigquery_date_sharded_spec = args[:bigquery_date_sharded_spec] if args.key?(:bigquery_date_sharded_spec)
1033
1143
  @bigquery_table_spec = args[:bigquery_table_spec] if args.key?(:bigquery_table_spec)
1034
1144
  @business_context = args[:business_context] if args.key?(:business_context)
1145
+ @cloud_bigtable_system_spec = args[:cloud_bigtable_system_spec] if args.key?(:cloud_bigtable_system_spec)
1035
1146
  @data_source = args[:data_source] if args.key?(:data_source)
1036
1147
  @data_source_connection_spec = args[:data_source_connection_spec] if args.key?(:data_source_connection_spec)
1037
1148
  @database_table_spec = args[:database_table_spec] if args.key?(:database_table_spec)
@@ -1048,6 +1159,7 @@ module Google
1048
1159
  @personal_details = args[:personal_details] if args.key?(:personal_details)
1049
1160
  @routine_spec = args[:routine_spec] if args.key?(:routine_spec)
1050
1161
  @schema = args[:schema] if args.key?(:schema)
1162
+ @service_spec = args[:service_spec] if args.key?(:service_spec)
1051
1163
  @source_system_timestamps = args[:source_system_timestamps] if args.key?(:source_system_timestamps)
1052
1164
  @sql_database_system_spec = args[:sql_database_system_spec] if args.key?(:sql_database_system_spec)
1053
1165
  @type = args[:type] if args.key?(:type)
@@ -2467,6 +2579,27 @@ module Google
2467
2579
  end
2468
2580
  end
2469
2581
 
2582
+ # Specification that applies to a Service resource. Valid only for entries with
2583
+ # the `SERVICE` type.
2584
+ class GoogleCloudDatacatalogV1ServiceSpec
2585
+ include Google::Apis::Core::Hashable
2586
+
2587
+ # Specification that applies to Instance entries that are part of `
2588
+ # CLOUD_BIGTABLE` system. (user_specified_type)
2589
+ # Corresponds to the JSON property `cloudBigtableInstanceSpec`
2590
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpec]
2591
+ attr_accessor :cloud_bigtable_instance_spec
2592
+
2593
+ def initialize(**args)
2594
+ update!(**args)
2595
+ end
2596
+
2597
+ # Update properties of this object
2598
+ def update!(**args)
2599
+ @cloud_bigtable_instance_spec = args[:cloud_bigtable_instance_spec] if args.key?(:cloud_bigtable_instance_spec)
2600
+ end
2601
+ end
2602
+
2470
2603
  # Specification that applies to entries that are part `SQL_DATABASE` system (
2471
2604
  # user_specified_type)
2472
2605
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
@@ -2883,6 +3016,45 @@ module Google
2883
3016
  end
2884
3017
  end
2885
3018
 
3019
+ # Wrapper containing Entry and information about Tags that should and should not
3020
+ # be attached to it.
3021
+ class GoogleCloudDatacatalogV1TaggedEntry
3022
+ include Google::Apis::Core::Hashable
3023
+
3024
+ # Tags that should be deleted from the Data Catalog. Caller should populate
3025
+ # template name and column only.
3026
+ # Corresponds to the JSON property `absentTags`
3027
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Tag>]
3028
+ attr_accessor :absent_tags
3029
+
3030
+ # Tags that should be ingested into the Data Catalog. Caller should populate
3031
+ # template name, column and fields.
3032
+ # Corresponds to the JSON property `presentTags`
3033
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Tag>]
3034
+ attr_accessor :present_tags
3035
+
3036
+ # Entry metadata. A Data Catalog entry represents another resource in Google
3037
+ # Cloud Platform (such as a BigQuery dataset or a Pub/Sub topic) or outside of
3038
+ # it. You can use the `linked_resource` field in the entry resource to refer to
3039
+ # the original resource ID of the source system. An entry resource contains
3040
+ # resource details, for example, its schema. Additionally, you can attach
3041
+ # flexible metadata to an entry in the form of a Tag.
3042
+ # Corresponds to the JSON property `v1Entry`
3043
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Entry]
3044
+ attr_accessor :v1_entry
3045
+
3046
+ def initialize(**args)
3047
+ update!(**args)
3048
+ end
3049
+
3050
+ # Update properties of this object
3051
+ def update!(**args)
3052
+ @absent_tags = args[:absent_tags] if args.key?(:absent_tags)
3053
+ @present_tags = args[:present_tags] if args.key?(:present_tags)
3054
+ @v1_entry = args[:v1_entry] if args.key?(:v1_entry)
3055
+ end
3056
+ end
3057
+
2886
3058
  # A taxonomy is a collection of hierarchical policy tags that classify data
2887
3059
  # along a common axis. For example, a "data sensitivity" taxonomy might contain
2888
3060
  # the following policy tags: ``` + PII + Account number + Age + SSN + Zipcode +
@@ -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.33.0"
19
+ GEM_VERSION = "0.34.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 = "20230221"
25
+ REVISION = "20230317"
26
26
  end
27
27
  end
28
28
  end
@@ -82,6 +82,24 @@ module Google
82
82
  include Google::Apis::Core::JsonObjectSupport
83
83
  end
84
84
 
85
+ class GoogleCloudDatacatalogV1CloudBigtableInstanceSpec
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
91
+ class GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
97
+ class GoogleCloudDatacatalogV1CloudBigtableSystemSpec
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
85
103
  class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
86
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
105
 
@@ -172,6 +190,12 @@ module Google
172
190
  include Google::Apis::Core::JsonObjectSupport
173
191
  end
174
192
 
193
+ class GoogleCloudDatacatalogV1DumpItem
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
175
199
  class GoogleCloudDatacatalogV1Entry
176
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
201
 
@@ -460,6 +484,12 @@ module Google
460
484
  include Google::Apis::Core::JsonObjectSupport
461
485
  end
462
486
 
487
+ class GoogleCloudDatacatalogV1ServiceSpec
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
463
493
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
464
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
495
 
@@ -526,6 +556,12 @@ module Google
526
556
  include Google::Apis::Core::JsonObjectSupport
527
557
  end
528
558
 
559
+ class GoogleCloudDatacatalogV1TaggedEntry
560
+ class Representation < Google::Apis::Core::JsonRepresentation; end
561
+
562
+ include Google::Apis::Core::JsonObjectSupport
563
+ end
564
+
529
565
  class GoogleCloudDatacatalogV1Taxonomy
530
566
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
567
 
@@ -699,6 +735,31 @@ module Google
699
735
  end
700
736
  end
701
737
 
738
+ class GoogleCloudDatacatalogV1CloudBigtableInstanceSpec
739
+ # @private
740
+ class Representation < Google::Apis::Core::JsonRepresentation
741
+ collection :cloud_bigtable_cluster_specs, as: 'cloudBigtableClusterSpecs', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec::Representation
742
+
743
+ end
744
+ end
745
+
746
+ class GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec
747
+ # @private
748
+ class Representation < Google::Apis::Core::JsonRepresentation
749
+ property :display_name, as: 'displayName'
750
+ property :linked_resource, as: 'linkedResource'
751
+ property :location, as: 'location'
752
+ property :type, as: 'type'
753
+ end
754
+ end
755
+
756
+ class GoogleCloudDatacatalogV1CloudBigtableSystemSpec
757
+ # @private
758
+ class Representation < Google::Apis::Core::JsonRepresentation
759
+ property :instance_display_name, as: 'instanceDisplayName'
760
+ end
761
+ end
762
+
702
763
  class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
703
764
  # @private
704
765
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -842,6 +903,14 @@ module Google
842
903
  end
843
904
  end
844
905
 
906
+ class GoogleCloudDatacatalogV1DumpItem
907
+ # @private
908
+ class Representation < Google::Apis::Core::JsonRepresentation
909
+ property :tagged_entry, as: 'taggedEntry', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TaggedEntry, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TaggedEntry::Representation
910
+
911
+ end
912
+ end
913
+
845
914
  class GoogleCloudDatacatalogV1Entry
846
915
  # @private
847
916
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -851,6 +920,8 @@ module Google
851
920
 
852
921
  property :business_context, as: 'businessContext', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BusinessContext, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BusinessContext::Representation
853
922
 
923
+ property :cloud_bigtable_system_spec, as: 'cloudBigtableSystemSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudBigtableSystemSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudBigtableSystemSpec::Representation
924
+
854
925
  property :data_source, as: 'dataSource', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource::Representation
855
926
 
856
927
  property :data_source_connection_spec, as: 'dataSourceConnectionSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSourceConnectionSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSourceConnectionSpec::Representation
@@ -876,6 +947,8 @@ module Google
876
947
 
877
948
  property :schema, as: 'schema', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Schema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Schema::Representation
878
949
 
950
+ property :service_spec, as: 'serviceSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ServiceSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ServiceSpec::Representation
951
+
879
952
  property :source_system_timestamps, as: 'sourceSystemTimestamps', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps::Representation
880
953
 
881
954
  property :sql_database_system_spec, as: 'sqlDatabaseSystemSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SqlDatabaseSystemSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SqlDatabaseSystemSpec::Representation
@@ -1317,6 +1390,14 @@ module Google
1317
1390
  end
1318
1391
  end
1319
1392
 
1393
+ class GoogleCloudDatacatalogV1ServiceSpec
1394
+ # @private
1395
+ class Representation < Google::Apis::Core::JsonRepresentation
1396
+ property :cloud_bigtable_instance_spec, as: 'cloudBigtableInstanceSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpec::Representation
1397
+
1398
+ end
1399
+ end
1400
+
1320
1401
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
1321
1402
  # @private
1322
1403
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1420,6 +1501,18 @@ module Google
1420
1501
  end
1421
1502
  end
1422
1503
 
1504
+ class GoogleCloudDatacatalogV1TaggedEntry
1505
+ # @private
1506
+ class Representation < Google::Apis::Core::JsonRepresentation
1507
+ collection :absent_tags, as: 'absentTags', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Tag, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Tag::Representation
1508
+
1509
+ collection :present_tags, as: 'presentTags', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Tag, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Tag::Representation
1510
+
1511
+ property :v1_entry, as: 'v1Entry', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Entry, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Entry::Representation
1512
+
1513
+ end
1514
+ end
1515
+
1423
1516
  class GoogleCloudDatacatalogV1Taxonomy
1424
1517
  # @private
1425
1518
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1384,13 +1384,7 @@ module Google
1384
1384
  end
1385
1385
 
1386
1386
  # Lists operations that match the specified filter in the request. If the server
1387
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
1388
- # binding allows API services to override the binding to use different resource
1389
- # name schemes, such as `users/*/operations`. To override the binding, API
1390
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
1391
- # service configuration. For backwards compatibility, the default name includes
1392
- # the operations collection id, however overriding users must ensure the name
1393
- # binding is the parent resource, without the operations collection id.
1387
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
1394
1388
  # @param [String] name
1395
1389
  # The name of the operation's parent resource.
1396
1390
  # @param [String] filter
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.33.0
4
+ version: 0.34.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-02-26 00:00:00.000000000 Z
11
+ date: 2023-03-26 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.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.34.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: []