google-cloud-dataform-v1beta1 0.7.1 → 0.9.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.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Dataform
23
23
  module V1beta1
24
- VERSION = "0.7.1"
24
+ VERSION = "0.9.0"
25
25
  end
26
26
  end
27
27
  end
@@ -28,6 +28,9 @@ module Google
28
28
  # @!attribute [rw] destinations
29
29
  # @return [::Array<::Google::Api::ClientLibraryDestination>]
30
30
  # The destination where API teams want this client library to be published.
31
+ # @!attribute [rw] selective_gapic_generation
32
+ # @return [::Google::Api::SelectiveGapicGeneration]
33
+ # Configuration for which RPCs should be generated in the GAPIC client.
31
34
  class CommonLanguageSettings
32
35
  include ::Google::Protobuf::MessageExts
33
36
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -212,6 +215,12 @@ module Google
212
215
  # enabled. By default, asynchronous REST clients will not be generated.
213
216
  # This feature will be enabled by default 1 month after launching the
214
217
  # feature in preview packages.
218
+ # @!attribute [rw] protobuf_pythonic_types_enabled
219
+ # @return [::Boolean]
220
+ # Enables generation of protobuf code using new types that are more
221
+ # Pythonic which are included in `protobuf>=5.29.x`. This feature will be
222
+ # enabled by default 1 month after launching the feature in preview
223
+ # packages.
215
224
  class ExperimentalFeatures
216
225
  include ::Google::Protobuf::MessageExts
217
226
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -297,9 +306,28 @@ module Google
297
306
  # @!attribute [rw] common
298
307
  # @return [::Google::Api::CommonLanguageSettings]
299
308
  # Some settings.
309
+ # @!attribute [rw] renamed_services
310
+ # @return [::Google::Protobuf::Map{::String => ::String}]
311
+ # Map of service names to renamed services. Keys are the package relative
312
+ # service names and values are the name to be used for the service client
313
+ # and call options.
314
+ #
315
+ # publishing:
316
+ # go_settings:
317
+ # renamed_services:
318
+ # Publisher: TopicAdmin
300
319
  class GoSettings
301
320
  include ::Google::Protobuf::MessageExts
302
321
  extend ::Google::Protobuf::MessageExts::ClassMethods
322
+
323
+ # @!attribute [rw] key
324
+ # @return [::String]
325
+ # @!attribute [rw] value
326
+ # @return [::String]
327
+ class RenamedServicesEntry
328
+ include ::Google::Protobuf::MessageExts
329
+ extend ::Google::Protobuf::MessageExts::ClassMethods
330
+ end
303
331
  end
304
332
 
305
333
  # Describes the generator configuration for a method.
@@ -375,6 +403,17 @@ module Google
375
403
  end
376
404
  end
377
405
 
406
+ # This message is used to configure the generation of a subset of the RPCs in
407
+ # a service for client libraries.
408
+ # @!attribute [rw] methods
409
+ # @return [::Array<::String>]
410
+ # An allowlist of the fully qualified names of RPCs that should be included
411
+ # on public client surfaces.
412
+ class SelectiveGapicGeneration
413
+ include ::Google::Protobuf::MessageExts
414
+ extend ::Google::Protobuf::MessageExts::ClassMethods
415
+ end
416
+
378
417
  # The organization for which the client libraries are being published.
379
418
  # Affects the url where generated docs are published, etc.
380
419
  module ClientLibraryOrganization
@@ -272,9 +272,13 @@ module Google
272
272
  # @!attribute [rw] write_file
273
273
  # @return [::Google::Cloud::Dataform::V1beta1::CommitRepositoryChangesRequest::FileOperation::WriteFile]
274
274
  # Represents the write operation.
275
+ #
276
+ # Note: The following fields are mutually exclusive: `write_file`, `delete_file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
275
277
  # @!attribute [rw] delete_file
276
278
  # @return [::Google::Cloud::Dataform::V1beta1::CommitRepositoryChangesRequest::FileOperation::DeleteFile]
277
279
  # Represents the delete operation.
280
+ #
281
+ # Note: The following fields are mutually exclusive: `delete_file`, `write_file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
278
282
  class FileOperation
279
283
  include ::Google::Protobuf::MessageExts
280
284
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -798,9 +802,13 @@ module Google
798
802
  # @!attribute [rw] file
799
803
  # @return [::String]
800
804
  # A file in the directory.
805
+ #
806
+ # Note: The following fields are mutually exclusive: `file`, `directory`. If a field in that set is populated, all other fields in the set will automatically be cleared.
801
807
  # @!attribute [rw] directory
802
808
  # @return [::String]
803
809
  # A child directory in the directory.
810
+ #
811
+ # Note: The following fields are mutually exclusive: `directory`, `file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
804
812
  class DirectoryEntry
805
813
  include ::Google::Protobuf::MessageExts
806
814
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1007,10 +1015,14 @@ module Google
1007
1015
  # The name of the created compilation result, if one was successfully
1008
1016
  # created. Must be in the format
1009
1017
  # `projects/*/locations/*/repositories/*/compilationResults/*`.
1018
+ #
1019
+ # Note: The following fields are mutually exclusive: `compilation_result`, `error_status`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1010
1020
  # @!attribute [rw] error_status
1011
1021
  # @return [::Google::Rpc::Status]
1012
1022
  # The error status encountered upon this attempt to create the
1013
1023
  # compilation result, if the attempt was unsuccessful.
1024
+ #
1025
+ # Note: The following fields are mutually exclusive: `error_status`, `compilation_result`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1014
1026
  class ScheduledReleaseRecord
1015
1027
  include ::Google::Protobuf::MessageExts
1016
1028
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1114,16 +1126,22 @@ module Google
1114
1126
  # - a commit SHA: `12ade345`
1115
1127
  # - a tag: `tag1`
1116
1128
  # - a branch name: `branch1`
1129
+ #
1130
+ # Note: The following fields are mutually exclusive: `git_commitish`, `workspace`, `release_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1117
1131
  # @!attribute [rw] workspace
1118
1132
  # @return [::String]
1119
1133
  # Immutable. The name of the workspace to compile. Must be in the format
1120
1134
  # `projects/*/locations/*/repositories/*/workspaces/*`.
1135
+ #
1136
+ # Note: The following fields are mutually exclusive: `workspace`, `git_commitish`, `release_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1121
1137
  # @!attribute [rw] release_config
1122
1138
  # @return [::String]
1123
1139
  # Immutable. The name of the release config to compile. The release
1124
1140
  # config's 'current_compilation_result' field will be updated to this
1125
1141
  # compilation result. Must be in the format
1126
1142
  # `projects/*/locations/*/repositories/*/releaseConfigs/*`.
1143
+ #
1144
+ # Note: The following fields are mutually exclusive: `release_config`, `git_commitish`, `workspace`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1127
1145
  # @!attribute [rw] code_compilation_config
1128
1146
  # @return [::Google::Cloud::Dataform::V1beta1::CodeCompilationConfig]
1129
1147
  # Immutable. If set, fields of `code_compilation_config` override the default
@@ -1338,15 +1356,23 @@ module Google
1338
1356
  # @!attribute [rw] relation
1339
1357
  # @return [::Google::Cloud::Dataform::V1beta1::CompilationResultAction::Relation]
1340
1358
  # The database relation created/updated by this action.
1359
+ #
1360
+ # Note: The following fields are mutually exclusive: `relation`, `operations`, `assertion`, `declaration`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1341
1361
  # @!attribute [rw] operations
1342
1362
  # @return [::Google::Cloud::Dataform::V1beta1::CompilationResultAction::Operations]
1343
1363
  # The database operations executed by this action.
1364
+ #
1365
+ # Note: The following fields are mutually exclusive: `operations`, `relation`, `assertion`, `declaration`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1344
1366
  # @!attribute [rw] assertion
1345
1367
  # @return [::Google::Cloud::Dataform::V1beta1::CompilationResultAction::Assertion]
1346
1368
  # The assertion executed by this action.
1369
+ #
1370
+ # Note: The following fields are mutually exclusive: `assertion`, `relation`, `operations`, `declaration`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1347
1371
  # @!attribute [rw] declaration
1348
1372
  # @return [::Google::Cloud::Dataform::V1beta1::CompilationResultAction::Declaration]
1349
1373
  # The declaration declared by this action.
1374
+ #
1375
+ # Note: The following fields are mutually exclusive: `declaration`, `relation`, `operations`, `assertion`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1350
1376
  class CompilationResultAction
1351
1377
  include ::Google::Protobuf::MessageExts
1352
1378
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1610,10 +1636,14 @@ module Google
1610
1636
  # The name of the created workflow invocation, if one was successfully
1611
1637
  # created. Must be in the format
1612
1638
  # `projects/*/locations/*/repositories/*/workflowInvocations/*`.
1639
+ #
1640
+ # Note: The following fields are mutually exclusive: `workflow_invocation`, `error_status`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1613
1641
  # @!attribute [rw] error_status
1614
1642
  # @return [::Google::Rpc::Status]
1615
1643
  # The error status encountered upon this attempt to create the
1616
1644
  # workflow invocation, if the attempt was unsuccessful.
1645
+ #
1646
+ # Note: The following fields are mutually exclusive: `error_status`, `workflow_invocation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1617
1647
  class ScheduledExecutionRecord
1618
1648
  include ::Google::Protobuf::MessageExts
1619
1649
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1743,10 +1773,14 @@ module Google
1743
1773
  # Immutable. The name of the compilation result to use for this invocation.
1744
1774
  # Must be in the format
1745
1775
  # `projects/*/locations/*/repositories/*/compilationResults/*`.
1776
+ #
1777
+ # Note: The following fields are mutually exclusive: `compilation_result`, `workflow_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1746
1778
  # @!attribute [rw] workflow_config
1747
1779
  # @return [::String]
1748
1780
  # Immutable. The name of the workflow config to invoke. Must be in the
1749
1781
  # format `projects/*/locations/*/repositories/*/workflowConfigs/*`.
1782
+ #
1783
+ # Note: The following fields are mutually exclusive: `workflow_config`, `compilation_result`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1750
1784
  # @!attribute [rw] invocation_config
1751
1785
  # @return [::Google::Cloud::Dataform::V1beta1::InvocationConfig]
1752
1786
  # Immutable. If left unset, a default InvocationConfig will be used.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dataform-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-08-30 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.21.1
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.21.1
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -130,7 +129,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
130
129
  licenses:
131
130
  - Apache-2.0
132
131
  metadata: {}
133
- post_install_message:
134
132
  rdoc_options: []
135
133
  require_paths:
136
134
  - lib
@@ -138,15 +136,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
138
136
  requirements:
139
137
  - - ">="
140
138
  - !ruby/object:Gem::Version
141
- version: '2.7'
139
+ version: '3.0'
142
140
  required_rubygems_version: !ruby/object:Gem::Requirement
143
141
  requirements:
144
142
  - - ">="
145
143
  - !ruby/object:Gem::Version
146
144
  version: '0'
147
145
  requirements: []
148
- rubygems_version: 3.5.6
149
- signing_key:
146
+ rubygems_version: 3.6.2
150
147
  specification_version: 4
151
148
  summary: Service to develop, version control, and operationalize SQL pipelines in
152
149
  BigQuery.