google-apis-bigqueryconnection_v1 0.4.0 → 0.6.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: bcc0b3ff2ac049a3817b2080d5390f278b3ee6dd71f807188fa8b1f6bdb9f71a
4
- data.tar.gz: 944a5ed3fafbdf43ef3ebeb97818310a1eba7b57a86c2aed648c848d53e2bd7b
3
+ metadata.gz: 35d54f1f7d3575e65c2f4e36d6e625d34fc76acfd97f97c3da80695a76c8eb8e
4
+ data.tar.gz: 4716b9b1352e79297cf54e752357826a5507d85157e70e74d221ee6599a2bf28
5
5
  SHA512:
6
- metadata.gz: 336ac3219267994cc8daec6ec724d3a4217ba0de6318de4070131d83bd08275b0259a12a6dbcd07b7808203dfa4ee2eca8d9a0baf92d187491ec68c2351fffd8
7
- data.tar.gz: ff5bad48a7be51623377c7aced615d0f35e80b5087f4f7ee3be09edeba20228771a96570aa6accf0b06a7bd9644632a03275987dcc370e955ed85b797d511dc0
6
+ metadata.gz: 4e6d6e6d7ee1d0be213b2003720fd92e2b7e25e16d897a2d15fbba1be1ac0e882059e77b2de44a202aefd4149068f9fb827f03180c7c3190162c67f575a21593
7
+ data.tar.gz: 93e362fa83b7a675e88046b819f6f1a4f286aeaa984915b194202720843387d48fa327ccd044d0077ba60e0c97df2ebcb08e3e2786376237303f96c08573ec69
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigqueryconnection_v1
2
2
 
3
+ ### v0.6.0 (2024-05-19)
4
+
5
+ * Regenerated using generator version 0.15.0
6
+
7
+ ### v0.5.0 (2024-04-28)
8
+
9
+ * Regenerated from discovery document revision 20240418
10
+
3
11
  ### v0.4.0 (2024-03-31)
4
12
 
5
13
  * Regenerated from discovery document revision 20240323
@@ -573,6 +573,12 @@ module Google
573
573
  class ConnectorConfiguration
574
574
  include Google::Apis::Core::Hashable
575
575
 
576
+ # Data Asset - a resource within instance of the system, reachable under
577
+ # specified endpoint. For example a database name in a SQL DB.
578
+ # Corresponds to the JSON property `asset`
579
+ # @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAsset]
580
+ attr_accessor :asset
581
+
576
582
  # Client authentication.
577
583
  # Corresponds to the JSON property `authentication`
578
584
  # @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication]
@@ -600,6 +606,7 @@ module Google
600
606
 
601
607
  # Update properties of this object
602
608
  def update!(**args)
609
+ @asset = args[:asset] if args.key?(:asset)
603
610
  @authentication = args[:authentication] if args.key?(:authentication)
604
611
  @connector_id = args[:connector_id] if args.key?(:connector_id)
605
612
  @endpoint = args[:endpoint] if args.key?(:endpoint)
@@ -607,6 +614,34 @@ module Google
607
614
  end
608
615
  end
609
616
 
617
+ # Data Asset - a resource within instance of the system, reachable under
618
+ # specified endpoint. For example a database name in a SQL DB.
619
+ class ConnectorConfigurationAsset
620
+ include Google::Apis::Core::Hashable
621
+
622
+ # Optional. Name of the database.
623
+ # Corresponds to the JSON property `database`
624
+ # @return [String]
625
+ attr_accessor :database
626
+
627
+ # Full Google Cloud resource name - https://cloud.google.com/apis/design/
628
+ # resource_names#full_resource_name. Example: `//library.googleapis.com/shelves/
629
+ # shelf1/books/book2`
630
+ # Corresponds to the JSON property `googleCloudResource`
631
+ # @return [String]
632
+ attr_accessor :google_cloud_resource
633
+
634
+ def initialize(**args)
635
+ update!(**args)
636
+ end
637
+
638
+ # Update properties of this object
639
+ def update!(**args)
640
+ @database = args[:database] if args.key?(:database)
641
+ @google_cloud_resource = args[:google_cloud_resource] if args.key?(:google_cloud_resource)
642
+ end
643
+ end
644
+
610
645
  # Client authentication.
611
646
  class ConnectorConfigurationAuthentication
612
647
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigqueryconnectionV1
18
18
  # Version of the google-apis-bigqueryconnection_v1 gem
19
- GEM_VERSION = "0.4.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240323"
25
+ REVISION = "20240418"
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 ConnectorConfigurationAsset
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class ConnectorConfigurationAuthentication
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -335,6 +341,8 @@ module Google
335
341
  class ConnectorConfiguration
336
342
  # @private
337
343
  class Representation < Google::Apis::Core::JsonRepresentation
344
+ property :asset, as: 'asset', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAsset, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAsset::Representation
345
+
338
346
  property :authentication, as: 'authentication', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication::Representation
339
347
 
340
348
  property :connector_id, as: 'connectorId'
@@ -345,6 +353,14 @@ module Google
345
353
  end
346
354
  end
347
355
 
356
+ class ConnectorConfigurationAsset
357
+ # @private
358
+ class Representation < Google::Apis::Core::JsonRepresentation
359
+ property :database, as: 'database'
360
+ property :google_cloud_resource, as: 'googleCloudResource'
361
+ end
362
+ end
363
+
348
364
  class ConnectorConfigurationAuthentication
349
365
  # @private
350
366
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigqueryconnection_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.6.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: 2024-03-31 00:00:00.000000000 Z
11
+ date: 2024-05-26 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.14.0
19
+ version: 0.15.0
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.14.0
29
+ version: 0.15.0
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-bigqueryconnection_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1/v0.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1/v0.6.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigqueryconnection_v1
63
63
  post_install_message:
64
64
  rdoc_options: []