google-apis-metastore_v1beta 0.44.0 → 0.46.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: 44d153ee0f5176beca7e9c9cee819a58fb726fa66a9300a05cfc951cfd1be864
4
- data.tar.gz: fc79bd7bc555801ab3e7670d3852a6bfaba0ca6d7325242385cbe01052b2e156
3
+ metadata.gz: ec844e2a75ad1d43d588549e95e3f0053c2603884f8bf15a7f4410286aa611e2
4
+ data.tar.gz: ce5c4c3369d5cf34cf615b4a59bc249b91f09b6139d843d2e2dfae060ba42fc3
5
5
  SHA512:
6
- metadata.gz: 990a64dded044fad22ebee1d2f696ce308f12807b33f02acc837776167b308e0d5d0e9006d0da023cf1727c5d631e9ca28e3d632a42d6bb1a72178bb26d65783
7
- data.tar.gz: 71e1465488038b3c34a4cb987f7a12e4c550313f33432dc7acf72faa4d032bfd38b46f5051fba74eae7fa458361454fd2aa6ea83350f581481c3febc02584ea4
6
+ metadata.gz: 489fde3d547220fcaf70f4c76fd3ae167476c5f9f9df72a21a2097a04d0f81969dd6e626c878ab6e51ead2f6214385c99a280b752b729722713973dd58201c4c
7
+ data.tar.gz: 305c9aee949b333468e59f9f9a14ab76580ef11459dd0dae4aa0585119559cbd8b0f266ead72bd7f40eafceaf07307ed2be689cf6b887065862c83498f35a108
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-metastore_v1beta
2
2
 
3
+ ### v0.46.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230425
6
+
7
+ ### v0.45.0 (2023-03-26)
8
+
9
+ * Regenerated from discovery document revision 20230317
10
+
3
11
  ### v0.44.0 (2023-03-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20230305
@@ -492,6 +492,26 @@ module Google
492
492
  end
493
493
  end
494
494
 
495
+ # Error details in public error message for DataprocMetastore.QueryMetadata.
496
+ class ErrorDetails
497
+ include Google::Apis::Core::Hashable
498
+
499
+ # Additional structured details about this error.Keys define the failure items.
500
+ # Value describes the exception or details of the item.
501
+ # Corresponds to the JSON property `details`
502
+ # @return [Hash<String,String>]
503
+ attr_accessor :details
504
+
505
+ def initialize(**args)
506
+ update!(**args)
507
+ end
508
+
509
+ # Update properties of this object
510
+ def update!(**args)
511
+ @details = args[:details] if args.key?(:details)
512
+ end
513
+ end
514
+
495
515
  # Request message for DataprocMetastore.ExportMetadata.
496
516
  class ExportMetadataRequest
497
517
  include Google::Apis::Core::Hashable
@@ -982,7 +1002,7 @@ module Google
982
1002
  end
983
1003
  end
984
1004
 
985
- # A resource that represents Google Cloud Platform location.
1005
+ # A resource that represents a Google Cloud location.
986
1006
  class Location
987
1007
  include Google::Apis::Core::Hashable
988
1008
 
@@ -1284,6 +1304,13 @@ module Google
1284
1304
  # @return [Array<Google::Apis::MetastoreV1beta::Consumer>]
1285
1305
  attr_accessor :consumers
1286
1306
 
1307
+ # Enables custom routes to be imported and exported for the Dataproc Metastore
1308
+ # service's peered VPC network.
1309
+ # Corresponds to the JSON property `customRoutesEnabled`
1310
+ # @return [Boolean]
1311
+ attr_accessor :custom_routes_enabled
1312
+ alias_method :custom_routes_enabled?, :custom_routes_enabled
1313
+
1287
1314
  def initialize(**args)
1288
1315
  update!(**args)
1289
1316
  end
@@ -1291,6 +1318,7 @@ module Google
1291
1318
  # Update properties of this object
1292
1319
  def update!(**args)
1293
1320
  @consumers = args[:consumers] if args.key?(:consumers)
1321
+ @custom_routes_enabled = args[:custom_routes_enabled] if args.key?(:custom_routes_enabled)
1294
1322
  end
1295
1323
  end
1296
1324
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MetastoreV1beta
18
18
  # Version of the google-apis-metastore_v1beta gem
19
- GEM_VERSION = "0.44.0"
19
+ GEM_VERSION = "0.46.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 = "20230305"
25
+ REVISION = "20230425"
26
26
  end
27
27
  end
28
28
  end
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class ErrorDetails
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class ExportMetadataRequest
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -477,6 +483,13 @@ module Google
477
483
  end
478
484
  end
479
485
 
486
+ class ErrorDetails
487
+ # @private
488
+ class Representation < Google::Apis::Core::JsonRepresentation
489
+ hash :details, as: 'details'
490
+ end
491
+ end
492
+
480
493
  class ExportMetadataRequest
481
494
  # @private
482
495
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -701,6 +714,7 @@ module Google
701
714
  class Representation < Google::Apis::Core::JsonRepresentation
702
715
  collection :consumers, as: 'consumers', class: Google::Apis::MetastoreV1beta::Consumer, decorator: Google::Apis::MetastoreV1beta::Consumer::Representation
703
716
 
717
+ property :custom_routes_enabled, as: 'customRoutesEnabled'
704
718
  end
705
719
  end
706
720
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-metastore_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.44.0
4
+ version: 0.46.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-03-12 00:00:00.000000000 Z
11
+ date: 2023-04-30 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-metastore_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.44.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.46.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []