google-apis-dataform_v1 0.11.0 → 0.12.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6fe805f5ad1a74e6f38654c484af1c507ed1715f7e4a9e53933422e5c8d949de
|
|
4
|
+
data.tar.gz: aaae01ce193f0fff91d8f48bb27bedad44eb42e272c5c5c9ea24c8a5922ecf79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11964257315e085c5eb29ff4041aef9df587b89f297df3f07e9c21a73cd77ffec22e6a220d89e4f3df98035310364126f5ace1cfc5e0a88e61ee465b9e91d908
|
|
7
|
+
data.tar.gz: ec9b564d55160cf2606d1bee103d77e3916d845ea868858e96ddbf640a1b7a79a0372297bf6f234980ef800f7c3a81626732ae94dfe563f1e944ad4bd114c420
|
data/CHANGELOG.md
CHANGED
|
@@ -409,6 +409,11 @@ module Google
|
|
|
409
409
|
# @return [String]
|
|
410
410
|
attr_accessor :default_schema
|
|
411
411
|
|
|
412
|
+
# Defines the pipeline type and path within the Git repository.
|
|
413
|
+
# Corresponds to the JSON property `pipelineConfig`
|
|
414
|
+
# @return [Google::Apis::DataformV1::PipelineConfig]
|
|
415
|
+
attr_accessor :pipeline_config
|
|
416
|
+
|
|
412
417
|
# Optional. The suffix that should be appended to all schema (BigQuery dataset
|
|
413
418
|
# ID) names.
|
|
414
419
|
# Corresponds to the JSON property `schemaSuffix`
|
|
@@ -439,6 +444,7 @@ module Google
|
|
|
439
444
|
@default_location = args[:default_location] if args.key?(:default_location)
|
|
440
445
|
@default_notebook_runtime_options = args[:default_notebook_runtime_options] if args.key?(:default_notebook_runtime_options)
|
|
441
446
|
@default_schema = args[:default_schema] if args.key?(:default_schema)
|
|
447
|
+
@pipeline_config = args[:pipeline_config] if args.key?(:pipeline_config)
|
|
442
448
|
@schema_suffix = args[:schema_suffix] if args.key?(:schema_suffix)
|
|
443
449
|
@table_prefix = args[:table_prefix] if args.key?(:table_prefix)
|
|
444
450
|
@vars = args[:vars] if args.key?(:vars)
|
|
@@ -730,6 +736,11 @@ module Google
|
|
|
730
736
|
# @return [String]
|
|
731
737
|
attr_accessor :dataform_core_version
|
|
732
738
|
|
|
739
|
+
# Metadata about a repository snapshot stored in Google Cloud Storage.
|
|
740
|
+
# Corresponds to the JSON property `gcsRepositorySnapshotMetadata`
|
|
741
|
+
# @return [Google::Apis::DataformV1::GcsRepositorySnapshotMetadata]
|
|
742
|
+
attr_accessor :gcs_repository_snapshot_metadata
|
|
743
|
+
|
|
733
744
|
# Immutable. Git commit/tag/branch name at which the repository should be
|
|
734
745
|
# compiled. Must exist in the remote repository. Examples: - a commit SHA: `
|
|
735
746
|
# 12ade345` - a tag: `tag1` - a branch name: `branch1`
|
|
@@ -783,6 +794,7 @@ module Google
|
|
|
783
794
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
784
795
|
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
|
785
796
|
@dataform_core_version = args[:dataform_core_version] if args.key?(:dataform_core_version)
|
|
797
|
+
@gcs_repository_snapshot_metadata = args[:gcs_repository_snapshot_metadata] if args.key?(:gcs_repository_snapshot_metadata)
|
|
786
798
|
@git_commitish = args[:git_commitish] if args.key?(:git_commitish)
|
|
787
799
|
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
788
800
|
@name = args[:name] if args.key?(:name)
|
|
@@ -1532,6 +1544,59 @@ module Google
|
|
|
1532
1544
|
end
|
|
1533
1545
|
end
|
|
1534
1546
|
|
|
1547
|
+
# Configures the destination for a repository snapshot.
|
|
1548
|
+
class GcsRepositorySnapshotDestination
|
|
1549
|
+
include Google::Apis::Core::Hashable
|
|
1550
|
+
|
|
1551
|
+
# Optional. The Google Cloud Storage destination to upload the repository
|
|
1552
|
+
# snapshot to. Format: `gs://bucket-name/path/`.
|
|
1553
|
+
# Corresponds to the JSON property `repositorySnapshotUri`
|
|
1554
|
+
# @return [String]
|
|
1555
|
+
attr_accessor :repository_snapshot_uri
|
|
1556
|
+
|
|
1557
|
+
def initialize(**args)
|
|
1558
|
+
update!(**args)
|
|
1559
|
+
end
|
|
1560
|
+
|
|
1561
|
+
# Update properties of this object
|
|
1562
|
+
def update!(**args)
|
|
1563
|
+
@repository_snapshot_uri = args[:repository_snapshot_uri] if args.key?(:repository_snapshot_uri)
|
|
1564
|
+
end
|
|
1565
|
+
end
|
|
1566
|
+
|
|
1567
|
+
# Metadata about a repository snapshot stored in Google Cloud Storage.
|
|
1568
|
+
class GcsRepositorySnapshotMetadata
|
|
1569
|
+
include Google::Apis::Core::Hashable
|
|
1570
|
+
|
|
1571
|
+
# Output only. The crc32c checksum of the repository snapshot, big-endian base64
|
|
1572
|
+
# encoded.
|
|
1573
|
+
# Corresponds to the JSON property `crc32cChecksum`
|
|
1574
|
+
# @return [String]
|
|
1575
|
+
attr_accessor :crc32c_checksum
|
|
1576
|
+
|
|
1577
|
+
# Output only. The generation number of the Cloud Storage object. See https://
|
|
1578
|
+
# cloud.google.com/storage/docs/metadata#generation-number.
|
|
1579
|
+
# Corresponds to the JSON property `generation`
|
|
1580
|
+
# @return [Fixnum]
|
|
1581
|
+
attr_accessor :generation
|
|
1582
|
+
|
|
1583
|
+
# Output only. The Google Cloud Storage URI of the repository snapshot.
|
|
1584
|
+
# Corresponds to the JSON property `repositorySnapshotUri`
|
|
1585
|
+
# @return [String]
|
|
1586
|
+
attr_accessor :repository_snapshot_uri
|
|
1587
|
+
|
|
1588
|
+
def initialize(**args)
|
|
1589
|
+
update!(**args)
|
|
1590
|
+
end
|
|
1591
|
+
|
|
1592
|
+
# Update properties of this object
|
|
1593
|
+
def update!(**args)
|
|
1594
|
+
@crc32c_checksum = args[:crc32c_checksum] if args.key?(:crc32c_checksum)
|
|
1595
|
+
@generation = args[:generation] if args.key?(:generation)
|
|
1596
|
+
@repository_snapshot_uri = args[:repository_snapshot_uri] if args.key?(:repository_snapshot_uri)
|
|
1597
|
+
end
|
|
1598
|
+
end
|
|
1599
|
+
|
|
1535
1600
|
# Controls Git remote configuration for a repository.
|
|
1536
1601
|
class GitRemoteSettings
|
|
1537
1602
|
include Google::Apis::Core::Hashable
|
|
@@ -1703,12 +1768,18 @@ module Google
|
|
|
1703
1768
|
class InstallNpmPackagesRequest
|
|
1704
1769
|
include Google::Apis::Core::Hashable
|
|
1705
1770
|
|
|
1771
|
+
# Defines the pipeline type and path within the Git repository.
|
|
1772
|
+
# Corresponds to the JSON property `pipelineConfig`
|
|
1773
|
+
# @return [Google::Apis::DataformV1::PipelineConfig]
|
|
1774
|
+
attr_accessor :pipeline_config
|
|
1775
|
+
|
|
1706
1776
|
def initialize(**args)
|
|
1707
1777
|
update!(**args)
|
|
1708
1778
|
end
|
|
1709
1779
|
|
|
1710
1780
|
# Update properties of this object
|
|
1711
1781
|
def update!(**args)
|
|
1782
|
+
@pipeline_config = args[:pipeline_config] if args.key?(:pipeline_config)
|
|
1712
1783
|
end
|
|
1713
1784
|
end
|
|
1714
1785
|
|
|
@@ -2355,6 +2426,11 @@ module Google
|
|
|
2355
2426
|
# @return [String]
|
|
2356
2427
|
attr_accessor :contents
|
|
2357
2428
|
|
|
2429
|
+
# Output only. The path to the notebook file in the repository.
|
|
2430
|
+
# Corresponds to the JSON property `filePath`
|
|
2431
|
+
# @return [String]
|
|
2432
|
+
attr_accessor :file_path
|
|
2433
|
+
|
|
2358
2434
|
# Output only. The ID of the Gemini Enterprise Agent Platform job that executed
|
|
2359
2435
|
# the notebook in contents and also the ID used for the outputs created in
|
|
2360
2436
|
# Google Cloud Storage buckets. Only set once the job has started to run.
|
|
@@ -2369,6 +2445,7 @@ module Google
|
|
|
2369
2445
|
# Update properties of this object
|
|
2370
2446
|
def update!(**args)
|
|
2371
2447
|
@contents = args[:contents] if args.key?(:contents)
|
|
2448
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
2372
2449
|
@job_id = args[:job_id] if args.key?(:job_id)
|
|
2373
2450
|
end
|
|
2374
2451
|
end
|
|
@@ -2391,6 +2468,11 @@ module Google
|
|
|
2391
2468
|
# @return [String]
|
|
2392
2469
|
attr_accessor :gcs_output_bucket
|
|
2393
2470
|
|
|
2471
|
+
# Configures the destination for a repository snapshot.
|
|
2472
|
+
# Corresponds to the JSON property `gcsRepositorySnapshotDestination`
|
|
2473
|
+
# @return [Google::Apis::DataformV1::GcsRepositorySnapshotDestination]
|
|
2474
|
+
attr_accessor :gcs_repository_snapshot_destination
|
|
2475
|
+
|
|
2394
2476
|
def initialize(**args)
|
|
2395
2477
|
update!(**args)
|
|
2396
2478
|
end
|
|
@@ -2399,6 +2481,7 @@ module Google
|
|
|
2399
2481
|
def update!(**args)
|
|
2400
2482
|
@ai_platform_notebook_runtime_template = args[:ai_platform_notebook_runtime_template] if args.key?(:ai_platform_notebook_runtime_template)
|
|
2401
2483
|
@gcs_output_bucket = args[:gcs_output_bucket] if args.key?(:gcs_output_bucket)
|
|
2484
|
+
@gcs_repository_snapshot_destination = args[:gcs_repository_snapshot_destination] if args.key?(:gcs_repository_snapshot_destination)
|
|
2402
2485
|
end
|
|
2403
2486
|
end
|
|
2404
2487
|
|
|
@@ -2574,6 +2657,33 @@ module Google
|
|
|
2574
2657
|
end
|
|
2575
2658
|
end
|
|
2576
2659
|
|
|
2660
|
+
# Defines the pipeline type and path within the Git repository.
|
|
2661
|
+
class PipelineConfig
|
|
2662
|
+
include Google::Apis::Core::Hashable
|
|
2663
|
+
|
|
2664
|
+
# Required. The relative path within the Git repository where the pipeline is
|
|
2665
|
+
# defined. For example, for a Dataform pipeline, it is a path to the folder
|
|
2666
|
+
# where `workflow_settings.yaml` or `dataform.json` is located.
|
|
2667
|
+
# Corresponds to the JSON property `path`
|
|
2668
|
+
# @return [String]
|
|
2669
|
+
attr_accessor :path
|
|
2670
|
+
|
|
2671
|
+
# Required. The type of the pipeline.
|
|
2672
|
+
# Corresponds to the JSON property `pipelineType`
|
|
2673
|
+
# @return [String]
|
|
2674
|
+
attr_accessor :pipeline_type
|
|
2675
|
+
|
|
2676
|
+
def initialize(**args)
|
|
2677
|
+
update!(**args)
|
|
2678
|
+
end
|
|
2679
|
+
|
|
2680
|
+
# Update properties of this object
|
|
2681
|
+
def update!(**args)
|
|
2682
|
+
@path = args[:path] if args.key?(:path)
|
|
2683
|
+
@pipeline_type = args[:pipeline_type] if args.key?(:pipeline_type)
|
|
2684
|
+
end
|
|
2685
|
+
end
|
|
2686
|
+
|
|
2577
2687
|
# An Identity and Access Management (IAM) policy, which specifies access
|
|
2578
2688
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
|
2579
2689
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
|
@@ -3240,8 +3350,9 @@ module Google
|
|
|
3240
3350
|
attr_accessor :release_compilation_result
|
|
3241
3351
|
|
|
3242
3352
|
# Optional. Specifies the time zone to be used when interpreting cron_schedule.
|
|
3243
|
-
# Must be a time zone name from the time zone database
|
|
3244
|
-
# wiki/List_of_tz_database_time_zones). If left unspecified, the default is
|
|
3353
|
+
# Must be a time zone name from the [time zone database](https://en.wikipedia.
|
|
3354
|
+
# org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is `
|
|
3355
|
+
# UTC`.
|
|
3245
3356
|
# Corresponds to the JSON property `timeZone`
|
|
3246
3357
|
# @return [String]
|
|
3247
3358
|
attr_accessor :time_zone
|
|
@@ -4071,8 +4182,9 @@ module Google
|
|
|
4071
4182
|
attr_accessor :release_config
|
|
4072
4183
|
|
|
4073
4184
|
# Optional. Specifies the time zone to be used when interpreting cron_schedule.
|
|
4074
|
-
# Must be a time zone name from the time zone database
|
|
4075
|
-
# wiki/List_of_tz_database_time_zones). If left unspecified, the default is
|
|
4185
|
+
# Must be a time zone name from the [time zone database](https://en.wikipedia.
|
|
4186
|
+
# org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is `
|
|
4187
|
+
# UTC`.
|
|
4076
4188
|
# Corresponds to the JSON property `timeZone`
|
|
4077
4189
|
# @return [String]
|
|
4078
4190
|
attr_accessor :time_zone
|
|
@@ -4142,6 +4254,11 @@ module Google
|
|
|
4142
4254
|
# @return [String]
|
|
4143
4255
|
attr_accessor :name
|
|
4144
4256
|
|
|
4257
|
+
# Defines the pipeline type and path within the Git repository.
|
|
4258
|
+
# Corresponds to the JSON property `pipelineConfig`
|
|
4259
|
+
# @return [Google::Apis::DataformV1::PipelineConfig]
|
|
4260
|
+
attr_accessor :pipeline_config
|
|
4261
|
+
|
|
4145
4262
|
# Metadata used to identify if a resource is user scoped.
|
|
4146
4263
|
# Corresponds to the JSON property `privateResourceMetadata`
|
|
4147
4264
|
# @return [Google::Apis::DataformV1::PrivateResourceMetadata]
|
|
@@ -4177,6 +4294,7 @@ module Google
|
|
|
4177
4294
|
@invocation_config = args[:invocation_config] if args.key?(:invocation_config)
|
|
4178
4295
|
@invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
|
|
4179
4296
|
@name = args[:name] if args.key?(:name)
|
|
4297
|
+
@pipeline_config = args[:pipeline_config] if args.key?(:pipeline_config)
|
|
4180
4298
|
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
4181
4299
|
@resolved_compilation_result = args[:resolved_compilation_result] if args.key?(:resolved_compilation_result)
|
|
4182
4300
|
@state = args[:state] if args.key?(:state)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DataformV1
|
|
18
18
|
# Version of the google-apis-dataform_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260802"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -304,6 +304,18 @@ module Google
|
|
|
304
304
|
include Google::Apis::Core::JsonObjectSupport
|
|
305
305
|
end
|
|
306
306
|
|
|
307
|
+
class GcsRepositorySnapshotDestination
|
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
|
+
|
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
311
|
+
end
|
|
312
|
+
|
|
313
|
+
class GcsRepositorySnapshotMetadata
|
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
|
+
|
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
317
|
+
end
|
|
318
|
+
|
|
307
319
|
class GitRemoteSettings
|
|
308
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
321
|
|
|
@@ -496,6 +508,12 @@ module Google
|
|
|
496
508
|
include Google::Apis::Core::JsonObjectSupport
|
|
497
509
|
end
|
|
498
510
|
|
|
511
|
+
class PipelineConfig
|
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
513
|
+
|
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
515
|
+
end
|
|
516
|
+
|
|
499
517
|
class Policy
|
|
500
518
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
501
519
|
|
|
@@ -917,6 +935,8 @@ module Google
|
|
|
917
935
|
property :default_notebook_runtime_options, as: 'defaultNotebookRuntimeOptions', class: Google::Apis::DataformV1::NotebookRuntimeOptions, decorator: Google::Apis::DataformV1::NotebookRuntimeOptions::Representation
|
|
918
936
|
|
|
919
937
|
property :default_schema, as: 'defaultSchema'
|
|
938
|
+
property :pipeline_config, as: 'pipelineConfig', class: Google::Apis::DataformV1::PipelineConfig, decorator: Google::Apis::DataformV1::PipelineConfig::Representation
|
|
939
|
+
|
|
920
940
|
property :schema_suffix, as: 'schemaSuffix'
|
|
921
941
|
property :table_prefix, as: 'tablePrefix'
|
|
922
942
|
hash :vars, as: 'vars'
|
|
@@ -1016,6 +1036,8 @@ module Google
|
|
|
1016
1036
|
property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1::DataEncryptionState, decorator: Google::Apis::DataformV1::DataEncryptionState::Representation
|
|
1017
1037
|
|
|
1018
1038
|
property :dataform_core_version, as: 'dataformCoreVersion'
|
|
1039
|
+
property :gcs_repository_snapshot_metadata, as: 'gcsRepositorySnapshotMetadata', class: Google::Apis::DataformV1::GcsRepositorySnapshotMetadata, decorator: Google::Apis::DataformV1::GcsRepositorySnapshotMetadata::Representation
|
|
1040
|
+
|
|
1019
1041
|
property :git_commitish, as: 'gitCommitish'
|
|
1020
1042
|
property :internal_metadata, as: 'internalMetadata'
|
|
1021
1043
|
property :name, as: 'name'
|
|
@@ -1256,6 +1278,22 @@ module Google
|
|
|
1256
1278
|
end
|
|
1257
1279
|
end
|
|
1258
1280
|
|
|
1281
|
+
class GcsRepositorySnapshotDestination
|
|
1282
|
+
# @private
|
|
1283
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1284
|
+
property :repository_snapshot_uri, as: 'repositorySnapshotUri'
|
|
1285
|
+
end
|
|
1286
|
+
end
|
|
1287
|
+
|
|
1288
|
+
class GcsRepositorySnapshotMetadata
|
|
1289
|
+
# @private
|
|
1290
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1291
|
+
property :crc32c_checksum, as: 'crc32cChecksum'
|
|
1292
|
+
property :generation, :numeric_string => true, as: 'generation'
|
|
1293
|
+
property :repository_snapshot_uri, as: 'repositorySnapshotUri'
|
|
1294
|
+
end
|
|
1295
|
+
end
|
|
1296
|
+
|
|
1259
1297
|
class GitRemoteSettings
|
|
1260
1298
|
# @private
|
|
1261
1299
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1301,6 +1339,8 @@ module Google
|
|
|
1301
1339
|
class InstallNpmPackagesRequest
|
|
1302
1340
|
# @private
|
|
1303
1341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1342
|
+
property :pipeline_config, as: 'pipelineConfig', class: Google::Apis::DataformV1::PipelineConfig, decorator: Google::Apis::DataformV1::PipelineConfig::Representation
|
|
1343
|
+
|
|
1304
1344
|
end
|
|
1305
1345
|
end
|
|
1306
1346
|
|
|
@@ -1506,6 +1546,7 @@ module Google
|
|
|
1506
1546
|
# @private
|
|
1507
1547
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1508
1548
|
property :contents, as: 'contents'
|
|
1549
|
+
property :file_path, as: 'filePath'
|
|
1509
1550
|
property :job_id, as: 'jobId'
|
|
1510
1551
|
end
|
|
1511
1552
|
end
|
|
@@ -1515,6 +1556,8 @@ module Google
|
|
|
1515
1556
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1516
1557
|
property :ai_platform_notebook_runtime_template, as: 'aiPlatformNotebookRuntimeTemplate'
|
|
1517
1558
|
property :gcs_output_bucket, as: 'gcsOutputBucket'
|
|
1559
|
+
property :gcs_repository_snapshot_destination, as: 'gcsRepositorySnapshotDestination', class: Google::Apis::DataformV1::GcsRepositorySnapshotDestination, decorator: Google::Apis::DataformV1::GcsRepositorySnapshotDestination::Representation
|
|
1560
|
+
|
|
1518
1561
|
end
|
|
1519
1562
|
end
|
|
1520
1563
|
|
|
@@ -1557,6 +1600,14 @@ module Google
|
|
|
1557
1600
|
end
|
|
1558
1601
|
end
|
|
1559
1602
|
|
|
1603
|
+
class PipelineConfig
|
|
1604
|
+
# @private
|
|
1605
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1606
|
+
property :path, as: 'path'
|
|
1607
|
+
property :pipeline_type, as: 'pipelineType'
|
|
1608
|
+
end
|
|
1609
|
+
end
|
|
1610
|
+
|
|
1560
1611
|
class Policy
|
|
1561
1612
|
# @private
|
|
1562
1613
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1996,6 +2047,8 @@ module Google
|
|
|
1996
2047
|
property :invocation_timing, as: 'invocationTiming', class: Google::Apis::DataformV1::Interval, decorator: Google::Apis::DataformV1::Interval::Representation
|
|
1997
2048
|
|
|
1998
2049
|
property :name, as: 'name'
|
|
2050
|
+
property :pipeline_config, as: 'pipelineConfig', class: Google::Apis::DataformV1::PipelineConfig, decorator: Google::Apis::DataformV1::PipelineConfig::Representation
|
|
2051
|
+
|
|
1999
2052
|
property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1::PrivateResourceMetadata::Representation
|
|
2000
2053
|
|
|
2001
2054
|
property :resolved_compilation_result, as: 'resolvedCompilationResult'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dataform_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1/v0.12.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|