google-apis-bigqueryconnection_v1 0.3.0 → 0.5.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: 7a601439ae1aa2801155b43ee950539693c80c43d385d8e7fc617e4d7dcfe68e
4
- data.tar.gz: 3b8db9105ae90bf644373ab2cf0c0131c8db96e687848ebb6e511e0891247688
3
+ metadata.gz: '065284fbbe77af1078e63e29e7d4eac4434fecf66dce604e65d8b2941c097c10'
4
+ data.tar.gz: 938242b817a159bcbb84c20fa96a0935ce4137a50f38e97ae23c41adc95a60ab
5
5
  SHA512:
6
- metadata.gz: 15632ebb8f2d739f889584dc43d0061e5291a7199f697cdfeb0e59faf397654a86cedd46c986007e62df386287ae5a770460aa8cc7c473d379dac2bba1453004
7
- data.tar.gz: 54bd9cd31799d90aa37ef887346eea3286bcf34c103d1c149a893e207926b963ea57d9d7f888047507658f5e9f136a4b0594e0720feef2a7ff23d180aaee9fdd
6
+ metadata.gz: 67f04f838f48d3c1e23846d24b2e8c666a157244acc4336b597e69b7ee12de941bdf5cfbf39e562b03290bc8b3b53916fafc3ebc9c7b63d2357fdb3e05bea0da
7
+ data.tar.gz: b107e0e7367fa807cc291395c77048e839f8ce81143ec26dab95dd8939fd04fbec44fd71fb391302a03988ca8ffa32d6f65389f0a9cdf85853ee30bd9940a4a5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigqueryconnection_v1
2
2
 
3
+ ### v0.5.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240418
6
+
7
+ ### v0.4.0 (2024-03-31)
8
+
9
+ * Regenerated from discovery document revision 20240323
10
+
3
11
  ### v0.3.0 (2024-02-23)
4
12
 
5
13
  * Regenerated using generator version 0.14.0
@@ -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]
@@ -589,15 +595,50 @@ module Google
589
595
  # @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationEndpoint]
590
596
  attr_accessor :endpoint
591
597
 
598
+ # Network related configuration.
599
+ # Corresponds to the JSON property `network`
600
+ # @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork]
601
+ attr_accessor :network
602
+
592
603
  def initialize(**args)
593
604
  update!(**args)
594
605
  end
595
606
 
596
607
  # Update properties of this object
597
608
  def update!(**args)
609
+ @asset = args[:asset] if args.key?(:asset)
598
610
  @authentication = args[:authentication] if args.key?(:authentication)
599
611
  @connector_id = args[:connector_id] if args.key?(:connector_id)
600
612
  @endpoint = args[:endpoint] if args.key?(:endpoint)
613
+ @network = args[:network] if args.key?(:network)
614
+ end
615
+ end
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)
601
642
  end
602
643
  end
603
644
 
@@ -641,6 +682,45 @@ module Google
641
682
  end
642
683
  end
643
684
 
685
+ # Network related configuration.
686
+ class ConnectorConfigurationNetwork
687
+ include Google::Apis::Core::Hashable
688
+
689
+ # Private Service Connect configuration.
690
+ # Corresponds to the JSON property `privateServiceConnect`
691
+ # @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationPrivateServiceConnect]
692
+ attr_accessor :private_service_connect
693
+
694
+ def initialize(**args)
695
+ update!(**args)
696
+ end
697
+
698
+ # Update properties of this object
699
+ def update!(**args)
700
+ @private_service_connect = args[:private_service_connect] if args.key?(:private_service_connect)
701
+ end
702
+ end
703
+
704
+ # Private Service Connect configuration.
705
+ class ConnectorConfigurationPrivateServiceConnect
706
+ include Google::Apis::Core::Hashable
707
+
708
+ # Required. Network Attachment name in the format of `projects/`project`/regions/
709
+ # `region`/networkAttachments/`networkattachment``.
710
+ # Corresponds to the JSON property `networkAttachment`
711
+ # @return [String]
712
+ attr_accessor :network_attachment
713
+
714
+ def initialize(**args)
715
+ update!(**args)
716
+ end
717
+
718
+ # Update properties of this object
719
+ def update!(**args)
720
+ @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
721
+ end
722
+ end
723
+
644
724
  # Secret value parameter.
645
725
  class ConnectorConfigurationSecret
646
726
  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.3.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240124"
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
 
@@ -106,6 +112,18 @@ module Google
106
112
  include Google::Apis::Core::JsonObjectSupport
107
113
  end
108
114
 
115
+ class ConnectorConfigurationNetwork
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
121
+ class ConnectorConfigurationPrivateServiceConnect
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
109
127
  class ConnectorConfigurationSecret
110
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
129
 
@@ -323,11 +341,23 @@ module Google
323
341
  class ConnectorConfiguration
324
342
  # @private
325
343
  class Representation < Google::Apis::Core::JsonRepresentation
344
+ property :asset, as: 'asset', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAsset, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAsset::Representation
345
+
326
346
  property :authentication, as: 'authentication', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication::Representation
327
347
 
328
348
  property :connector_id, as: 'connectorId'
329
349
  property :endpoint, as: 'endpoint', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationEndpoint, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationEndpoint::Representation
330
350
 
351
+ property :network, as: 'network', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork::Representation
352
+
353
+ end
354
+ end
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'
331
361
  end
332
362
  end
333
363
 
@@ -346,6 +376,21 @@ module Google
346
376
  end
347
377
  end
348
378
 
379
+ class ConnectorConfigurationNetwork
380
+ # @private
381
+ class Representation < Google::Apis::Core::JsonRepresentation
382
+ property :private_service_connect, as: 'privateServiceConnect', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationPrivateServiceConnect, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationPrivateServiceConnect::Representation
383
+
384
+ end
385
+ end
386
+
387
+ class ConnectorConfigurationPrivateServiceConnect
388
+ # @private
389
+ class Representation < Google::Apis::Core::JsonRepresentation
390
+ property :network_attachment, as: 'networkAttachment'
391
+ end
392
+ end
393
+
349
394
  class ConnectorConfigurationSecret
350
395
  # @private
351
396
  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.3.0
4
+ version: 0.5.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-02-25 00:00:00.000000000 Z
11
+ date: 2024-04-28 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-bigqueryconnection_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1/v0.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1/v0.5.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: []