google-apis-datacatalog_v1 0.19.0 → 0.22.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: fd23025deab7b4d57f06076db5de46670a485304ce8a785167e20bb1f632ecb4
4
- data.tar.gz: ff2553d7bc79691e89f12d2222c20f3f0e82dfb813f5f19d364a0a2b7e2f980b
3
+ metadata.gz: 5c12f865afeeb32deed6cdeda8a51ec53b3b3c19b397457276089c80cbc432d9
4
+ data.tar.gz: b7f7ecfae958463f0f6fcc5fc7b562c6a8b9c673e5085d06b35a111f1059a93d
5
5
  SHA512:
6
- metadata.gz: db703ccf24ab5b29d270299ae42f9385bfa65a1fefbb9b59a37c7f0aa9dfedb8d441f91153111effd0a1d49e1b6b0dfaef4370c6758c70cd5378f3b82c13060b
7
- data.tar.gz: 2a563719d9c09bae7828c3db3f52d8ede4a6348dd566fa27c46e8eac6f86199942ea885845e09945c939ffe8c310d3e52791b5a69f2ac414a56a35cf20877bfa
6
+ metadata.gz: 586fd789046f9d094c93adb7475727abcd7bff6c94fa6f3e0ac55227095d0810595b3b6c92c9867e174894683f717cc112f06a2b581682886202f12a5f1242b9
7
+ data.tar.gz: c0365d7106045522dbb312654e817f8e9844ce3f80ee361b936880e942348f8d36eaecd5b64a1bd5580abd4a34ad6261204e3b198c5be1bff345c52b5859e871
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.22.0 (2022-07-14)
4
+
5
+ * Regenerated from discovery document revision 20220707
6
+ * Regenerated using generator version 0.9.0
7
+
8
+ ### v0.21.0 (2022-06-30)
9
+
10
+ * Regenerated using generator version 0.8.0
11
+
12
+ ### v0.20.0 (2022-06-18)
13
+
14
+ * Regenerated from discovery document revision 20220530
15
+ * Regenerated using generator version 0.7.0
16
+
3
17
  ### v0.19.0 (2022-06-06)
4
18
 
5
19
  * Regenerated using generator version 0.5.0
@@ -409,6 +409,11 @@ module Google
409
409
  # @return [String]
410
410
  attr_accessor :description
411
411
 
412
+ # Column info specific to Looker System.
413
+ # Corresponds to the JSON property `lookerColumnSpec`
414
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec]
415
+ attr_accessor :looker_column_spec
416
+
412
417
  # Optional. A column's mode indicates whether values in this column are required,
413
418
  # nullable, or repeated. Only `NULLABLE`, `REQUIRED`, and `REPEATED` values are
414
419
  # supported. Default mode is `NULLABLE`.
@@ -435,12 +440,32 @@ module Google
435
440
  def update!(**args)
436
441
  @column = args[:column] if args.key?(:column)
437
442
  @description = args[:description] if args.key?(:description)
443
+ @looker_column_spec = args[:looker_column_spec] if args.key?(:looker_column_spec)
438
444
  @mode = args[:mode] if args.key?(:mode)
439
445
  @subcolumns = args[:subcolumns] if args.key?(:subcolumns)
440
446
  @type = args[:type] if args.key?(:type)
441
447
  end
442
448
  end
443
449
 
450
+ # Column info specific to Looker System.
451
+ class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
452
+ include Google::Apis::Core::Hashable
453
+
454
+ # Looker specific column type of this column.
455
+ # Corresponds to the JSON property `type`
456
+ # @return [String]
457
+ attr_accessor :type
458
+
459
+ def initialize(**args)
460
+ update!(**args)
461
+ end
462
+
463
+ # Update properties of this object
464
+ def update!(**args)
465
+ @type = args[:type] if args.key?(:type)
466
+ end
467
+ end
468
+
444
469
  # Contact people for the entry.
445
470
  class GoogleCloudDatacatalogV1Contacts
446
471
  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.19.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.5.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220505"
25
+ REVISION = "20220707"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class GoogleCloudDatacatalogV1Contacts
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -623,6 +629,8 @@ module Google
623
629
  class Representation < Google::Apis::Core::JsonRepresentation
624
630
  property :column, as: 'column'
625
631
  property :description, as: 'description'
632
+ property :looker_column_spec, as: 'lookerColumnSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec::Representation
633
+
626
634
  property :mode, as: 'mode'
627
635
  collection :subcolumns, as: 'subcolumns', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ColumnSchema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ColumnSchema::Representation
628
636
 
@@ -630,6 +638,13 @@ module Google
630
638
  end
631
639
  end
632
640
 
641
+ class GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec
642
+ # @private
643
+ class Representation < Google::Apis::Core::JsonRepresentation
644
+ property :type, as: 'type'
645
+ end
646
+ end
647
+
633
648
  class GoogleCloudDatacatalogV1Contacts
634
649
  # @private
635
650
  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.19.0
4
+ version: 0.22.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-06-13 00:00:00.000000000 Z
11
+ date: 2022-07-18 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.5'
19
+ version: '0.7'
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.5'
29
+ version: '0.7'
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-datacatalog_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.22.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: []