google-apis-datacatalog_v1 0.11.0 → 0.12.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: '09a9eb97d51162943ecf6b8bca6b37353af87ef1f3abbff5dd188f0424eb34eb'
4
- data.tar.gz: a60f09a1da0be99968641cd8fba498f4e8c6bea0dfdb5fd51cb1f4f9db813120
3
+ metadata.gz: 1b82c0aa97feacaca0fae27c918a507fcb05130994b0fcb585ed16b6caf52353
4
+ data.tar.gz: f13d32a8c1e07b6880c5bb590d835ed8137b7fcd8bd91746e4d46beb8fc4c61a
5
5
  SHA512:
6
- metadata.gz: 7e9a73ec21b05174d8fc5962c96f69fa47597e1d57dd9a76df7185b655c89ec4cd2557734600d37c220b27c3cb7331e754c94d5e9a4dca8c711b4359669c0c01
7
- data.tar.gz: a95cc59c843eeeba8ca28ca3b224f60f06315ca0233b78d9f83ed0a3aa3a984c76745393130f1d6009ae36514f2046659813ae81c78c486e1ea693edf7080ec4
6
+ metadata.gz: 1b7bc44dc55e0b71f0b00fd412b692ca0d94eee91614607a62a713add15429abfc698973cf2926ac6cbf45278ba6a728dd9506aadf91db9658a3bad1ea829d27
7
+ data.tar.gz: be3f974fcd0a2dd651cb2eda9333f787c795da5c6b57b665f6e32509d36b77197bda5c9b013746dc286d56edc3431cbfd975f7eeeaa7c244690ebc4537008586
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.12.0 (2022-01-05)
4
+
5
+ * Regenerated from discovery document revision 20211230
6
+ * Unspecified changes
7
+
3
8
  ### v0.11.0 (2021-12-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20211201
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/datacatalog_v1"
51
51
  client = Google::Apis::DatacatalogV1::DataCatalogService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -338,6 +338,31 @@ module Google
338
338
  end
339
339
  end
340
340
 
341
+ # Business Context of the entry.
342
+ class GoogleCloudDatacatalogV1BusinessContext
343
+ include Google::Apis::Core::Hashable
344
+
345
+ # Contact people for the entry.
346
+ # Corresponds to the JSON property `contacts`
347
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts]
348
+ attr_accessor :contacts
349
+
350
+ # Entry overview fields for rich text descriptions of entries.
351
+ # Corresponds to the JSON property `entryOverview`
352
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview]
353
+ attr_accessor :entry_overview
354
+
355
+ def initialize(**args)
356
+ update!(**args)
357
+ end
358
+
359
+ # Update properties of this object
360
+ def update!(**args)
361
+ @contacts = args[:contacts] if args.key?(:contacts)
362
+ @entry_overview = args[:entry_overview] if args.key?(:entry_overview)
363
+ end
364
+ end
365
+
341
366
  # Specification for the BigQuery connection to a Cloud SQL instance.
342
367
  class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
343
368
  include Google::Apis::Core::Hashable
@@ -417,6 +442,50 @@ module Google
417
442
  end
418
443
  end
419
444
 
445
+ # Contact people for the entry.
446
+ class GoogleCloudDatacatalogV1Contacts
447
+ include Google::Apis::Core::Hashable
448
+
449
+ # The list of contact people for the entry.
450
+ # Corresponds to the JSON property `people`
451
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ContactsPerson>]
452
+ attr_accessor :people
453
+
454
+ def initialize(**args)
455
+ update!(**args)
456
+ end
457
+
458
+ # Update properties of this object
459
+ def update!(**args)
460
+ @people = args[:people] if args.key?(:people)
461
+ end
462
+ end
463
+
464
+ # A contact person for the entry.
465
+ class GoogleCloudDatacatalogV1ContactsPerson
466
+ include Google::Apis::Core::Hashable
467
+
468
+ # Designation of the person, for example, Data Steward.
469
+ # Corresponds to the JSON property `designation`
470
+ # @return [String]
471
+ attr_accessor :designation
472
+
473
+ # Email of the person in the format of `john.doe@xyz`, ``, or `John Doe`.
474
+ # Corresponds to the JSON property `email`
475
+ # @return [String]
476
+ attr_accessor :email
477
+
478
+ def initialize(**args)
479
+ update!(**args)
480
+ end
481
+
482
+ # Update properties of this object
483
+ def update!(**args)
484
+ @designation = args[:designation] if args.key?(:designation)
485
+ @email = args[:email] if args.key?(:email)
486
+ end
487
+ end
488
+
420
489
  # Cross-regional source used to import an existing taxonomy into a different
421
490
  # region.
422
491
  class GoogleCloudDatacatalogV1CrossRegionalSource
@@ -526,6 +595,11 @@ module Google
526
595
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryTableSpec]
527
596
  attr_accessor :bigquery_table_spec
528
597
 
598
+ # Business Context of the entry.
599
+ # Corresponds to the JSON property `businessContext`
600
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BusinessContext]
601
+ attr_accessor :business_context
602
+
529
603
  # Physical location of an entry.
530
604
  # Corresponds to the JSON property `dataSource`
531
605
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource]
@@ -675,6 +749,7 @@ module Google
675
749
  def update!(**args)
676
750
  @bigquery_date_sharded_spec = args[:bigquery_date_sharded_spec] if args.key?(:bigquery_date_sharded_spec)
677
751
  @bigquery_table_spec = args[:bigquery_table_spec] if args.key?(:bigquery_table_spec)
752
+ @business_context = args[:business_context] if args.key?(:business_context)
678
753
  @data_source = args[:data_source] if args.key?(:data_source)
679
754
  @data_source_connection_spec = args[:data_source_connection_spec] if args.key?(:data_source_connection_spec)
680
755
  @database_table_spec = args[:database_table_spec] if args.key?(:database_table_spec)
@@ -739,6 +814,28 @@ module Google
739
814
  end
740
815
  end
741
816
 
817
+ # Entry overview fields for rich text descriptions of entries.
818
+ class GoogleCloudDatacatalogV1EntryOverview
819
+ include Google::Apis::Core::Hashable
820
+
821
+ # Entry overview with support for rich text. The overview must only contain
822
+ # Unicode characters, and should be formatted using HTML. The maximum length is
823
+ # 10 MiB as this value holds HTML descriptions including encoded images. The
824
+ # maximum length of the text without images is 100 KiB.
825
+ # Corresponds to the JSON property `overview`
826
+ # @return [String]
827
+ attr_accessor :overview
828
+
829
+ def initialize(**args)
830
+ update!(**args)
831
+ end
832
+
833
+ # Update properties of this object
834
+ def update!(**args)
835
+ @overview = args[:overview] if args.key?(:overview)
836
+ end
837
+ end
838
+
742
839
  # Response message for ExportTaxonomies.
743
840
  class GoogleCloudDatacatalogV1ExportTaxonomiesResponse
744
841
  include Google::Apis::Core::Hashable
@@ -1095,6 +1192,44 @@ module Google
1095
1192
  end
1096
1193
  end
1097
1194
 
1195
+ # Request message for ModifyEntryContacts.
1196
+ class GoogleCloudDatacatalogV1ModifyEntryContactsRequest
1197
+ include Google::Apis::Core::Hashable
1198
+
1199
+ # Contact people for the entry.
1200
+ # Corresponds to the JSON property `contacts`
1201
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts]
1202
+ attr_accessor :contacts
1203
+
1204
+ def initialize(**args)
1205
+ update!(**args)
1206
+ end
1207
+
1208
+ # Update properties of this object
1209
+ def update!(**args)
1210
+ @contacts = args[:contacts] if args.key?(:contacts)
1211
+ end
1212
+ end
1213
+
1214
+ # Request message for ModifyEntryOverview.
1215
+ class GoogleCloudDatacatalogV1ModifyEntryOverviewRequest
1216
+ include Google::Apis::Core::Hashable
1217
+
1218
+ # Entry overview fields for rich text descriptions of entries.
1219
+ # Corresponds to the JSON property `entryOverview`
1220
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview]
1221
+ attr_accessor :entry_overview
1222
+
1223
+ def initialize(**args)
1224
+ update!(**args)
1225
+ end
1226
+
1227
+ # Update properties of this object
1228
+ def update!(**args)
1229
+ @entry_overview = args[:entry_overview] if args.key?(:entry_overview)
1230
+ end
1231
+ end
1232
+
1098
1233
  # Entry metadata relevant only to the user and private to them.
1099
1234
  class GoogleCloudDatacatalogV1PersonalDetails
1100
1235
  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.11.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211201"
25
+ REVISION = "20211230"
26
26
  end
27
27
  end
28
28
  end
@@ -76,6 +76,12 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
+ class GoogleCloudDatacatalogV1BusinessContext
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
79
85
  class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
80
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
87
 
@@ -88,6 +94,18 @@ module Google
88
94
  include Google::Apis::Core::JsonObjectSupport
89
95
  end
90
96
 
97
+ class GoogleCloudDatacatalogV1Contacts
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
103
+ class GoogleCloudDatacatalogV1ContactsPerson
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
91
109
  class GoogleCloudDatacatalogV1CrossRegionalSource
92
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
111
 
@@ -124,6 +142,12 @@ module Google
124
142
  include Google::Apis::Core::JsonObjectSupport
125
143
  end
126
144
 
145
+ class GoogleCloudDatacatalogV1EntryOverview
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
127
151
  class GoogleCloudDatacatalogV1ExportTaxonomiesResponse
128
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
153
 
@@ -208,6 +232,18 @@ module Google
208
232
  include Google::Apis::Core::JsonObjectSupport
209
233
  end
210
234
 
235
+ class GoogleCloudDatacatalogV1ModifyEntryContactsRequest
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
241
+ class GoogleCloudDatacatalogV1ModifyEntryOverviewRequest
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
211
247
  class GoogleCloudDatacatalogV1PersonalDetails
212
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
249
 
@@ -485,6 +521,16 @@ module Google
485
521
  end
486
522
  end
487
523
 
524
+ class GoogleCloudDatacatalogV1BusinessContext
525
+ # @private
526
+ class Representation < Google::Apis::Core::JsonRepresentation
527
+ property :contacts, as: 'contacts', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts::Representation
528
+
529
+ property :entry_overview, as: 'entryOverview', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview::Representation
530
+
531
+ end
532
+ end
533
+
488
534
  class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
489
535
  # @private
490
536
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -506,6 +552,22 @@ module Google
506
552
  end
507
553
  end
508
554
 
555
+ class GoogleCloudDatacatalogV1Contacts
556
+ # @private
557
+ class Representation < Google::Apis::Core::JsonRepresentation
558
+ collection :people, as: 'people', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ContactsPerson, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ContactsPerson::Representation
559
+
560
+ end
561
+ end
562
+
563
+ class GoogleCloudDatacatalogV1ContactsPerson
564
+ # @private
565
+ class Representation < Google::Apis::Core::JsonRepresentation
566
+ property :designation, as: 'designation'
567
+ property :email, as: 'email'
568
+ end
569
+ end
570
+
509
571
  class GoogleCloudDatacatalogV1CrossRegionalSource
510
572
  # @private
511
573
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -543,6 +605,8 @@ module Google
543
605
 
544
606
  property :bigquery_table_spec, as: 'bigqueryTableSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryTableSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryTableSpec::Representation
545
607
 
608
+ property :business_context, as: 'businessContext', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BusinessContext, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BusinessContext::Representation
609
+
546
610
  property :data_source, as: 'dataSource', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource::Representation
547
611
 
548
612
  property :data_source_connection_spec, as: 'dataSourceConnectionSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSourceConnectionSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSourceConnectionSpec::Representation
@@ -585,6 +649,13 @@ module Google
585
649
  end
586
650
  end
587
651
 
652
+ class GoogleCloudDatacatalogV1EntryOverview
653
+ # @private
654
+ class Representation < Google::Apis::Core::JsonRepresentation
655
+ property :overview, as: 'overview'
656
+ end
657
+ end
658
+
588
659
  class GoogleCloudDatacatalogV1ExportTaxonomiesResponse
589
660
  # @private
590
661
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -707,6 +778,22 @@ module Google
707
778
  end
708
779
  end
709
780
 
781
+ class GoogleCloudDatacatalogV1ModifyEntryContactsRequest
782
+ # @private
783
+ class Representation < Google::Apis::Core::JsonRepresentation
784
+ property :contacts, as: 'contacts', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts::Representation
785
+
786
+ end
787
+ end
788
+
789
+ class GoogleCloudDatacatalogV1ModifyEntryOverviewRequest
790
+ # @private
791
+ class Representation < Google::Apis::Core::JsonRepresentation
792
+ property :entry_overview, as: 'entryOverview', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview::Representation
793
+
794
+ end
795
+ end
796
+
710
797
  class GoogleCloudDatacatalogV1PersonalDetails
711
798
  # @private
712
799
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -666,6 +666,76 @@ module Google
666
666
  execute_or_queue_command(command, &block)
667
667
  end
668
668
 
669
+ # Modifies contacts, part of the business context of an Entry. To call this
670
+ # method, you must have the `datacatalog.entries.updateContacts` IAM permission
671
+ # on the corresponding project.
672
+ # @param [String] name
673
+ # Required. The full resource name of the entry.
674
+ # @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModifyEntryContactsRequest] google_cloud_datacatalog_v1_modify_entry_contacts_request_object
675
+ # @param [String] fields
676
+ # Selector specifying which fields to include in a partial response.
677
+ # @param [String] quota_user
678
+ # Available to use for quota purposes for server-side applications. Can be any
679
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
680
+ # @param [Google::Apis::RequestOptions] options
681
+ # Request-specific options
682
+ #
683
+ # @yield [result, err] Result & error if block supplied
684
+ # @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts] parsed result object
685
+ # @yieldparam err [StandardError] error object if request failed
686
+ #
687
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts]
688
+ #
689
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
690
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
691
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
692
+ def modify_project_location_entry_group_entry_entry_contacts(name, google_cloud_datacatalog_v1_modify_entry_contacts_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
693
+ command = make_simple_command(:post, 'v1/{+name}:modifyEntryContacts', options)
694
+ command.request_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModifyEntryContactsRequest::Representation
695
+ command.request_object = google_cloud_datacatalog_v1_modify_entry_contacts_request_object
696
+ command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts::Representation
697
+ command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts
698
+ command.params['name'] = name unless name.nil?
699
+ command.query['fields'] = fields unless fields.nil?
700
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
701
+ execute_or_queue_command(command, &block)
702
+ end
703
+
704
+ # Modifies entry overview, part of the business context of an Entry. To call
705
+ # this method, you must have the `datacatalog.entries.updateOverview` IAM
706
+ # permission on the corresponding project.
707
+ # @param [String] name
708
+ # Required. The full resource name of the entry.
709
+ # @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModifyEntryOverviewRequest] google_cloud_datacatalog_v1_modify_entry_overview_request_object
710
+ # @param [String] fields
711
+ # Selector specifying which fields to include in a partial response.
712
+ # @param [String] quota_user
713
+ # Available to use for quota purposes for server-side applications. Can be any
714
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
715
+ # @param [Google::Apis::RequestOptions] options
716
+ # Request-specific options
717
+ #
718
+ # @yield [result, err] Result & error if block supplied
719
+ # @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview] parsed result object
720
+ # @yieldparam err [StandardError] error object if request failed
721
+ #
722
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview]
723
+ #
724
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
725
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
726
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
727
+ def modify_project_location_entry_group_entry_entry_overview(name, google_cloud_datacatalog_v1_modify_entry_overview_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
728
+ command = make_simple_command(:post, 'v1/{+name}:modifyEntryOverview', options)
729
+ command.request_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModifyEntryOverviewRequest::Representation
730
+ command.request_object = google_cloud_datacatalog_v1_modify_entry_overview_request_object
731
+ command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview::Representation
732
+ command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview
733
+ command.params['name'] = name unless name.nil?
734
+ command.query['fields'] = fields unless fields.nil?
735
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
736
+ execute_or_queue_command(command, &block)
737
+ end
738
+
669
739
  # Updates an existing entry. You must enable the Data Catalog API in the project
670
740
  # identified by the `entry.name` parameter. For more information, see [Data
671
741
  # Catalog resource project](https://cloud.google.com/data-catalog/docs/concepts/
@@ -895,7 +965,7 @@ module Google
895
965
  execute_or_queue_command(command, &block)
896
966
  end
897
967
 
898
- # Lists tags assigned to an Entry.
968
+ # Lists tags assigned to an Entry. The columns in the response are lowercased.
899
969
  # @param [String] parent
900
970
  # Required. The name of the Data Catalog resource to list the tags of. The
901
971
  # resource can be an Entry or an EntryGroup (without `/entries/`entries`` at the
@@ -1048,7 +1118,7 @@ module Google
1048
1118
  execute_or_queue_command(command, &block)
1049
1119
  end
1050
1120
 
1051
- # Lists tags assigned to an Entry.
1121
+ # Lists tags assigned to an Entry. The columns in the response are lowercased.
1052
1122
  # @param [String] parent
1053
1123
  # Required. The name of the Data Catalog resource to list the tags of. The
1054
1124
  # resource can be an Entry or an EntryGroup (without `/entries/`entries`` at the
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.11.0
4
+ version: 0.12.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: 2021-12-13 00:00:00.000000000 Z
11
+ date: 2022-01-10 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.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.12.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.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Cloud Data Catalog API V1