google-apis-dataform_v1beta1 0.6.0 → 0.8.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: f6dae08fe461bbafbf62d4cd9ff7c9de1dc4a7fa68f4f4f7c050c03a464ae642
4
- data.tar.gz: 85533fa0db431c5af98e79a82492de0cd40776adb7cb597c88d5db9b6f13d7f9
3
+ metadata.gz: ca9eba13b1058a52acda0bfcf81a1011b4abb90bf771ed244c53ed14bce20309
4
+ data.tar.gz: 58539554cf3f98a9d09c15fb85d3c5e1b310beb716e2f16745d018d43e8c726b
5
5
  SHA512:
6
- metadata.gz: 9147ba3d677e223c032f46b385a2c99a3b9776cff8dd6b3b4b01bb6db55e78ff6a81421dce4c7d352531b611d373075d01298ec8644952c9b552560026309ce3
7
- data.tar.gz: 542f17087e8ac0a0e59f870b3843264348593fdeccbf86487ab7104e8ad3f19d73a4275d1583e0862fc5cb7f09703796fc06cbe69f687a76beff50061b279f4b
6
+ metadata.gz: 26318a83fa31e32f78d1c463d344173d414283a1cb17645c93a4bdee8960d213d0a96e0449a0b77f5678dc0e1b2715797a80ea39b1f4ea5b3c6deadc95b697f2
7
+ data.tar.gz: 3826e3cfa07d59dfbca4dba4b86f842d6c13c9da61414fe40f302746a93d3bb73a511f9fc68da42afe506a5833faff81c3bc6074cae4594cafa29f05651cc767
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.8.0 (2023-04-16)
4
+
5
+ * Regenerated from discovery document revision 20230408
6
+
7
+ ### v0.7.0 (2023-03-19)
8
+
9
+ * Regenerated from discovery document revision 20230311
10
+
3
11
  ### v0.6.0 (2023-03-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20230304
@@ -305,94 +305,6 @@ module Google
305
305
  end
306
306
  end
307
307
 
308
- # Represents a single commit log.
309
- class CommitLogEntry
310
- include Google::Apis::Core::Hashable
311
-
312
- # Represents the author of a Git commit.
313
- # Corresponds to the JSON property `author`
314
- # @return [Google::Apis::DataformV1beta1::CommitAuthor]
315
- attr_accessor :author
316
-
317
- # The commit message for this commit log entry.
318
- # Corresponds to the JSON property `commitMessage`
319
- # @return [String]
320
- attr_accessor :commit_message
321
-
322
- # The commit SHA for this commit log entry.
323
- # Corresponds to the JSON property `commitSha`
324
- # @return [String]
325
- attr_accessor :commit_sha
326
-
327
- # Commit timestamp.
328
- # Corresponds to the JSON property `commitTime`
329
- # @return [String]
330
- attr_accessor :commit_time
331
-
332
- def initialize(**args)
333
- update!(**args)
334
- end
335
-
336
- # Update properties of this object
337
- def update!(**args)
338
- @author = args[:author] if args.key?(:author)
339
- @commit_message = args[:commit_message] if args.key?(:commit_message)
340
- @commit_sha = args[:commit_sha] if args.key?(:commit_sha)
341
- @commit_time = args[:commit_time] if args.key?(:commit_time)
342
- end
343
- end
344
-
345
- # Represents a Dataform Git commit.
346
- class CommitMetadata
347
- include Google::Apis::Core::Hashable
348
-
349
- # Represents the author of a Git commit.
350
- # Corresponds to the JSON property `author`
351
- # @return [Google::Apis::DataformV1beta1::CommitAuthor]
352
- attr_accessor :author
353
-
354
- # Optional. The commit's message.
355
- # Corresponds to the JSON property `commitMessage`
356
- # @return [String]
357
- attr_accessor :commit_message
358
-
359
- def initialize(**args)
360
- update!(**args)
361
- end
362
-
363
- # Update properties of this object
364
- def update!(**args)
365
- @author = args[:author] if args.key?(:author)
366
- @commit_message = args[:commit_message] if args.key?(:commit_message)
367
- end
368
- end
369
-
370
- # `CommitRepositoryChanges` request message.
371
- class CommitRepositoryChangesRequest
372
- include Google::Apis::Core::Hashable
373
-
374
- # Represents a Dataform Git commit.
375
- # Corresponds to the JSON property `commitMetadata`
376
- # @return [Google::Apis::DataformV1beta1::CommitMetadata]
377
- attr_accessor :commit_metadata
378
-
379
- # A map to the path of the file to the operation. The path is the ull file path
380
- # including filename, from repository root.
381
- # Corresponds to the JSON property `fileOperations`
382
- # @return [Hash<String,Google::Apis::DataformV1beta1::FileOperation>]
383
- attr_accessor :file_operations
384
-
385
- def initialize(**args)
386
- update!(**args)
387
- end
388
-
389
- # Update properties of this object
390
- def update!(**args)
391
- @commit_metadata = args[:commit_metadata] if args.key?(:commit_metadata)
392
- @file_operations = args[:file_operations] if args.key?(:file_operations)
393
- end
394
- end
395
-
396
308
  # `CommitWorkspaceChanges` request message.
397
309
  class CommitWorkspaceChangesRequest
398
310
  include Google::Apis::Core::Hashable
@@ -610,19 +522,6 @@ module Google
610
522
  end
611
523
  end
612
524
 
613
- # Represents the delete file operation.
614
- class DeleteFile
615
- include Google::Apis::Core::Hashable
616
-
617
- def initialize(**args)
618
- update!(**args)
619
- end
620
-
621
- # Update properties of this object
622
- def update!(**args)
623
- end
624
- end
625
-
626
525
  # Represents a single entry in a directory.
627
526
  class DirectoryEntry
628
527
  include Google::Apis::Core::Hashable
@@ -801,57 +700,6 @@ module Google
801
700
  end
802
701
  end
803
702
 
804
- # `FetchRepositoryHistory` response message.
805
- class FetchRepositoryHistoryResponse
806
- include Google::Apis::Core::Hashable
807
-
808
- # A list of commit logs, ordered by 'git log' default order.
809
- # Corresponds to the JSON property `commits`
810
- # @return [Array<Google::Apis::DataformV1beta1::CommitLogEntry>]
811
- attr_accessor :commits
812
-
813
- # A token, which can be sent as `page_token` to retrieve the next page. If this
814
- # field is omitted, there are no subsequent pages.
815
- # Corresponds to the JSON property `nextPageToken`
816
- # @return [String]
817
- attr_accessor :next_page_token
818
-
819
- def initialize(**args)
820
- update!(**args)
821
- end
822
-
823
- # Update properties of this object
824
- def update!(**args)
825
- @commits = args[:commits] if args.key?(:commits)
826
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
827
- end
828
- end
829
-
830
- # Represents a single file operation to the repository.
831
- class FileOperation
832
- include Google::Apis::Core::Hashable
833
-
834
- # Represents the delete file operation.
835
- # Corresponds to the JSON property `deleteFile`
836
- # @return [Google::Apis::DataformV1beta1::DeleteFile]
837
- attr_accessor :delete_file
838
-
839
- # Represents the write file operation (for files added or modified).
840
- # Corresponds to the JSON property `writeFile`
841
- # @return [Google::Apis::DataformV1beta1::WriteFile]
842
- attr_accessor :write_file
843
-
844
- def initialize(**args)
845
- update!(**args)
846
- end
847
-
848
- # Update properties of this object
849
- def update!(**args)
850
- @delete_file = args[:delete_file] if args.key?(:delete_file)
851
- @write_file = args[:write_file] if args.key?(:write_file)
852
- end
853
- end
854
-
855
703
  # Controls Git remote configuration for a repository.
856
704
  class GitRemoteSettings
857
705
  include Google::Apis::Core::Hashable
@@ -1725,32 +1573,6 @@ module Google
1725
1573
  end
1726
1574
  end
1727
1575
 
1728
- # `QueryRepositoryDirectoryContents` response message.
1729
- class QueryRepositoryDirectoryContentsResponse
1730
- include Google::Apis::Core::Hashable
1731
-
1732
- # List of entries in the directory.
1733
- # Corresponds to the JSON property `directoryEntries`
1734
- # @return [Array<Google::Apis::DataformV1beta1::DirectoryEntry>]
1735
- attr_accessor :directory_entries
1736
-
1737
- # A token, which can be sent as `page_token` to retrieve the next page. If this
1738
- # field is omitted, there are no subsequent pages.
1739
- # Corresponds to the JSON property `nextPageToken`
1740
- # @return [String]
1741
- attr_accessor :next_page_token
1742
-
1743
- def initialize(**args)
1744
- update!(**args)
1745
- end
1746
-
1747
- # Update properties of this object
1748
- def update!(**args)
1749
- @directory_entries = args[:directory_entries] if args.key?(:directory_entries)
1750
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1751
- end
1752
- end
1753
-
1754
1576
  # `QueryWorkflowInvocationActions` response message.
1755
1577
  class QueryWorkflowInvocationActionsResponse
1756
1578
  include Google::Apis::Core::Hashable
@@ -1797,26 +1619,6 @@ module Google
1797
1619
  end
1798
1620
  end
1799
1621
 
1800
- # `ReadRepositoryFile` response message.
1801
- class ReadRepositoryFileResponse
1802
- include Google::Apis::Core::Hashable
1803
-
1804
- # The file's contents.
1805
- # Corresponds to the JSON property `contents`
1806
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
1807
- # @return [String]
1808
- attr_accessor :contents
1809
-
1810
- def initialize(**args)
1811
- update!(**args)
1812
- end
1813
-
1814
- # Update properties of this object
1815
- def update!(**args)
1816
- @contents = args[:contents] if args.key?(:contents)
1817
- end
1818
- end
1819
-
1820
1622
  # Represents a database relation.
1821
1623
  class Relation
1822
1624
  include Google::Apis::Core::Hashable
@@ -1978,9 +1780,9 @@ module Google
1978
1780
  # @return [String]
1979
1781
  attr_accessor :name
1980
1782
 
1981
- # Output only. Records of the 10 most recent scheduled release attempts. Updated
1982
- # whenever automatic creation of a compilation result is triggered by
1983
- # cron_schedule.
1783
+ # Output only. Records of the 10 most recent scheduled release attempts, ordered
1784
+ # in in descending order of `release_time`. Updated whenever automatic creation
1785
+ # of a compilation result is triggered by cron_schedule.
1984
1786
  # Corresponds to the JSON property `recentScheduledReleaseRecords`
1985
1787
  # @return [Array<Google::Apis::DataformV1beta1::ScheduledReleaseRecord>]
1986
1788
  attr_accessor :recent_scheduled_release_records
@@ -2067,23 +1869,6 @@ module Google
2067
1869
  # @return [Google::Apis::DataformV1beta1::GitRemoteSettings]
2068
1870
  attr_accessor :git_remote_settings
2069
1871
 
2070
- # Optional. Input only. The initial commit file contents. Represented as map
2071
- # from file path to contents. The path is the full file path to commit including
2072
- # filename, from repository root.
2073
- # Corresponds to the JSON property `initialCommitFileContents`
2074
- # @return [Hash<String,String>]
2075
- attr_accessor :initial_commit_file_contents
2076
-
2077
- # Represents a Dataform Git commit.
2078
- # Corresponds to the JSON property `initialCommitMetadata`
2079
- # @return [Google::Apis::DataformV1beta1::CommitMetadata]
2080
- attr_accessor :initial_commit_metadata
2081
-
2082
- # Optional. Repository user labels.
2083
- # Corresponds to the JSON property `labels`
2084
- # @return [Hash<String,String>]
2085
- attr_accessor :labels
2086
-
2087
1872
  # Output only. The repository's name.
2088
1873
  # Corresponds to the JSON property `name`
2089
1874
  # @return [String]
@@ -2116,9 +1901,6 @@ module Google
2116
1901
  # Update properties of this object
2117
1902
  def update!(**args)
2118
1903
  @git_remote_settings = args[:git_remote_settings] if args.key?(:git_remote_settings)
2119
- @initial_commit_file_contents = args[:initial_commit_file_contents] if args.key?(:initial_commit_file_contents)
2120
- @initial_commit_metadata = args[:initial_commit_metadata] if args.key?(:initial_commit_metadata)
2121
- @labels = args[:labels] if args.key?(:labels)
2122
1904
  @name = args[:name] if args.key?(:name)
2123
1905
  @npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
2124
1906
  @workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
@@ -2431,9 +2213,9 @@ module Google
2431
2213
  # @return [String]
2432
2214
  attr_accessor :name
2433
2215
 
2434
- # Output only. Records of the 10 most recent scheduled execution attempts.
2435
- # Updated whenever automatic creation of a compilation result is triggered by
2436
- # cron_schedule.
2216
+ # Output only. Records of the 10 most recent scheduled execution attempts,
2217
+ # ordered in in descending order of `execution_time`. Updated whenever automatic
2218
+ # creation of a workflow invocation is triggered by cron_schedule.
2437
2219
  # Corresponds to the JSON property `recentScheduledExecutionRecords`
2438
2220
  # @return [Array<Google::Apis::DataformV1beta1::ScheduledExecutionRecord>]
2439
2221
  attr_accessor :recent_scheduled_execution_records
@@ -2634,26 +2416,6 @@ module Google
2634
2416
  end
2635
2417
  end
2636
2418
 
2637
- # Represents the write file operation (for files added or modified).
2638
- class WriteFile
2639
- include Google::Apis::Core::Hashable
2640
-
2641
- # The file's contents.
2642
- # Corresponds to the JSON property `contents`
2643
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
2644
- # @return [String]
2645
- attr_accessor :contents
2646
-
2647
- def initialize(**args)
2648
- update!(**args)
2649
- end
2650
-
2651
- # Update properties of this object
2652
- def update!(**args)
2653
- @contents = args[:contents] if args.key?(:contents)
2654
- end
2655
- end
2656
-
2657
2419
  # `WriteFile` request message.
2658
2420
  class WriteFileRequest
2659
2421
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataformV1beta1
18
18
  # Version of the google-apis-dataform_v1beta1 gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.8.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 = "20230304"
25
+ REVISION = "20230408"
26
26
  end
27
27
  end
28
28
  end
@@ -64,24 +64,6 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
- class CommitLogEntry
68
- class Representation < Google::Apis::Core::JsonRepresentation; end
69
-
70
- include Google::Apis::Core::JsonObjectSupport
71
- end
72
-
73
- class CommitMetadata
74
- class Representation < Google::Apis::Core::JsonRepresentation; end
75
-
76
- include Google::Apis::Core::JsonObjectSupport
77
- end
78
-
79
- class CommitRepositoryChangesRequest
80
- class Representation < Google::Apis::Core::JsonRepresentation; end
81
-
82
- include Google::Apis::Core::JsonObjectSupport
83
- end
84
-
85
67
  class CommitWorkspaceChangesRequest
86
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
69
 
@@ -112,12 +94,6 @@ module Google
112
94
  include Google::Apis::Core::JsonObjectSupport
113
95
  end
114
96
 
115
- class DeleteFile
116
- class Representation < Google::Apis::Core::JsonRepresentation; end
117
-
118
- include Google::Apis::Core::JsonObjectSupport
119
- end
120
-
121
97
  class DirectoryEntry
122
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
99
 
@@ -160,18 +136,6 @@ module Google
160
136
  include Google::Apis::Core::JsonObjectSupport
161
137
  end
162
138
 
163
- class FetchRepositoryHistoryResponse
164
- class Representation < Google::Apis::Core::JsonRepresentation; end
165
-
166
- include Google::Apis::Core::JsonObjectSupport
167
- end
168
-
169
- class FileOperation
170
- class Representation < Google::Apis::Core::JsonRepresentation; end
171
-
172
- include Google::Apis::Core::JsonObjectSupport
173
- end
174
-
175
139
  class GitRemoteSettings
176
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
141
 
@@ -334,12 +298,6 @@ module Google
334
298
  include Google::Apis::Core::JsonObjectSupport
335
299
  end
336
300
 
337
- class QueryRepositoryDirectoryContentsResponse
338
- class Representation < Google::Apis::Core::JsonRepresentation; end
339
-
340
- include Google::Apis::Core::JsonObjectSupport
341
- end
342
-
343
301
  class QueryWorkflowInvocationActionsResponse
344
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
345
303
 
@@ -352,12 +310,6 @@ module Google
352
310
  include Google::Apis::Core::JsonObjectSupport
353
311
  end
354
312
 
355
- class ReadRepositoryFileResponse
356
- class Representation < Google::Apis::Core::JsonRepresentation; end
357
-
358
- include Google::Apis::Core::JsonObjectSupport
359
- end
360
-
361
313
  class Relation
362
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
315
 
@@ -478,12 +430,6 @@ module Google
478
430
  include Google::Apis::Core::JsonObjectSupport
479
431
  end
480
432
 
481
- class WriteFile
482
- class Representation < Google::Apis::Core::JsonRepresentation; end
483
-
484
- include Google::Apis::Core::JsonObjectSupport
485
- end
486
-
487
433
  class WriteFileRequest
488
434
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
435
 
@@ -565,36 +511,6 @@ module Google
565
511
  end
566
512
  end
567
513
 
568
- class CommitLogEntry
569
- # @private
570
- class Representation < Google::Apis::Core::JsonRepresentation
571
- property :author, as: 'author', class: Google::Apis::DataformV1beta1::CommitAuthor, decorator: Google::Apis::DataformV1beta1::CommitAuthor::Representation
572
-
573
- property :commit_message, as: 'commitMessage'
574
- property :commit_sha, as: 'commitSha'
575
- property :commit_time, as: 'commitTime'
576
- end
577
- end
578
-
579
- class CommitMetadata
580
- # @private
581
- class Representation < Google::Apis::Core::JsonRepresentation
582
- property :author, as: 'author', class: Google::Apis::DataformV1beta1::CommitAuthor, decorator: Google::Apis::DataformV1beta1::CommitAuthor::Representation
583
-
584
- property :commit_message, as: 'commitMessage'
585
- end
586
- end
587
-
588
- class CommitRepositoryChangesRequest
589
- # @private
590
- class Representation < Google::Apis::Core::JsonRepresentation
591
- property :commit_metadata, as: 'commitMetadata', class: Google::Apis::DataformV1beta1::CommitMetadata, decorator: Google::Apis::DataformV1beta1::CommitMetadata::Representation
592
-
593
- hash :file_operations, as: 'fileOperations', class: Google::Apis::DataformV1beta1::FileOperation, decorator: Google::Apis::DataformV1beta1::FileOperation::Representation
594
-
595
- end
596
- end
597
-
598
514
  class CommitWorkspaceChangesRequest
599
515
  # @private
600
516
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -659,12 +575,6 @@ module Google
659
575
  end
660
576
  end
661
577
 
662
- class DeleteFile
663
- # @private
664
- class Representation < Google::Apis::Core::JsonRepresentation
665
- end
666
- end
667
-
668
578
  class DirectoryEntry
669
579
  # @private
670
580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -719,25 +629,6 @@ module Google
719
629
  end
720
630
  end
721
631
 
722
- class FetchRepositoryHistoryResponse
723
- # @private
724
- class Representation < Google::Apis::Core::JsonRepresentation
725
- collection :commits, as: 'commits', class: Google::Apis::DataformV1beta1::CommitLogEntry, decorator: Google::Apis::DataformV1beta1::CommitLogEntry::Representation
726
-
727
- property :next_page_token, as: 'nextPageToken'
728
- end
729
- end
730
-
731
- class FileOperation
732
- # @private
733
- class Representation < Google::Apis::Core::JsonRepresentation
734
- property :delete_file, as: 'deleteFile', class: Google::Apis::DataformV1beta1::DeleteFile, decorator: Google::Apis::DataformV1beta1::DeleteFile::Representation
735
-
736
- property :write_file, as: 'writeFile', class: Google::Apis::DataformV1beta1::WriteFile, decorator: Google::Apis::DataformV1beta1::WriteFile::Representation
737
-
738
- end
739
- end
740
-
741
632
  class GitRemoteSettings
742
633
  # @private
743
634
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -984,15 +875,6 @@ module Google
984
875
  end
985
876
  end
986
877
 
987
- class QueryRepositoryDirectoryContentsResponse
988
- # @private
989
- class Representation < Google::Apis::Core::JsonRepresentation
990
- collection :directory_entries, as: 'directoryEntries', class: Google::Apis::DataformV1beta1::DirectoryEntry, decorator: Google::Apis::DataformV1beta1::DirectoryEntry::Representation
991
-
992
- property :next_page_token, as: 'nextPageToken'
993
- end
994
- end
995
-
996
878
  class QueryWorkflowInvocationActionsResponse
997
879
  # @private
998
880
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1009,13 +891,6 @@ module Google
1009
891
  end
1010
892
  end
1011
893
 
1012
- class ReadRepositoryFileResponse
1013
- # @private
1014
- class Representation < Google::Apis::Core::JsonRepresentation
1015
- property :contents, :base64 => true, as: 'contents'
1016
- end
1017
- end
1018
-
1019
894
  class Relation
1020
895
  # @private
1021
896
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1083,10 +958,6 @@ module Google
1083
958
  class Representation < Google::Apis::Core::JsonRepresentation
1084
959
  property :git_remote_settings, as: 'gitRemoteSettings', class: Google::Apis::DataformV1beta1::GitRemoteSettings, decorator: Google::Apis::DataformV1beta1::GitRemoteSettings::Representation
1085
960
 
1086
- hash :initial_commit_file_contents, as: 'initialCommitFileContents'
1087
- property :initial_commit_metadata, as: 'initialCommitMetadata', class: Google::Apis::DataformV1beta1::CommitMetadata, decorator: Google::Apis::DataformV1beta1::CommitMetadata::Representation
1088
-
1089
- hash :labels, as: 'labels'
1090
961
  property :name, as: 'name'
1091
962
  property :npmrc_environment_variables_secret_version, as: 'npmrcEnvironmentVariablesSecretVersion'
1092
963
  property :workspace_compilation_overrides, as: 'workspaceCompilationOverrides', class: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides, decorator: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides::Representation
@@ -1230,13 +1101,6 @@ module Google
1230
1101
  end
1231
1102
  end
1232
1103
 
1233
- class WriteFile
1234
- # @private
1235
- class Representation < Google::Apis::Core::JsonRepresentation
1236
- property :contents, :base64 => true, as: 'contents'
1237
- end
1238
- end
1239
-
1240
1104
  class WriteFileRequest
1241
1105
  # @private
1242
1106
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -86,8 +86,6 @@ module Google
86
86
  # A filter to narrow down results to a preferred subset. The filtering language
87
87
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
88
88
  # in [AIP-160](https://google.aip.dev/160).
89
- # @param [Boolean] include_unrevealed_locations
90
- # If true, the returned list will include locations which are not yet revealed.
91
89
  # @param [Fixnum] page_size
92
90
  # The maximum number of results to return. If not set, the service selects a
93
91
  # default.
@@ -111,13 +109,12 @@ module Google
111
109
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
112
110
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
113
111
  # @raise [Google::Apis::AuthorizationError] Authorization is required
114
- def list_project_locations(name, filter: nil, include_unrevealed_locations: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
112
+ def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
115
113
  command = make_simple_command(:get, 'v1beta1/{+name}/locations', options)
116
114
  command.response_representation = Google::Apis::DataformV1beta1::ListLocationsResponse::Representation
117
115
  command.response_class = Google::Apis::DataformV1beta1::ListLocationsResponse
118
116
  command.params['name'] = name unless name.nil?
119
117
  command.query['filter'] = filter unless filter.nil?
120
- command.query['includeUnrevealedLocations'] = include_unrevealed_locations unless include_unrevealed_locations.nil?
121
118
  command.query['pageSize'] = page_size unless page_size.nil?
122
119
  command.query['pageToken'] = page_token unless page_token.nil?
123
120
  command.query['fields'] = fields unless fields.nil?
@@ -125,40 +122,6 @@ module Google
125
122
  execute_or_queue_command(command, &block)
126
123
  end
127
124
 
128
- # Applies a Git commit to a Repository. The Repository must not have a value for
129
- # `git_remote_settings.url`.
130
- # @param [String] name
131
- # Required. The repository's name.
132
- # @param [Google::Apis::DataformV1beta1::CommitRepositoryChangesRequest] commit_repository_changes_request_object
133
- # @param [String] fields
134
- # Selector specifying which fields to include in a partial response.
135
- # @param [String] quota_user
136
- # Available to use for quota purposes for server-side applications. Can be any
137
- # arbitrary string assigned to a user, but should not exceed 40 characters.
138
- # @param [Google::Apis::RequestOptions] options
139
- # Request-specific options
140
- #
141
- # @yield [result, err] Result & error if block supplied
142
- # @yieldparam result [Google::Apis::DataformV1beta1::Empty] parsed result object
143
- # @yieldparam err [StandardError] error object if request failed
144
- #
145
- # @return [Google::Apis::DataformV1beta1::Empty]
146
- #
147
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
148
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
149
- # @raise [Google::Apis::AuthorizationError] Authorization is required
150
- def commit_repository_changes(name, commit_repository_changes_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
151
- command = make_simple_command(:post, 'v1beta1/{+name}:commit', options)
152
- command.request_representation = Google::Apis::DataformV1beta1::CommitRepositoryChangesRequest::Representation
153
- command.request_object = commit_repository_changes_request_object
154
- command.response_representation = Google::Apis::DataformV1beta1::Empty::Representation
155
- command.response_class = Google::Apis::DataformV1beta1::Empty
156
- command.params['name'] = name unless name.nil?
157
- command.query['fields'] = fields unless fields.nil?
158
- command.query['quotaUser'] = quota_user unless quota_user.nil?
159
- execute_or_queue_command(command, &block)
160
- end
161
-
162
125
  # Creates a new Repository in a given project and location.
163
126
  # @param [String] parent
164
127
  # Required. The location in which to create the repository. Must be in the
@@ -232,47 +195,6 @@ module Google
232
195
  execute_or_queue_command(command, &block)
233
196
  end
234
197
 
235
- # Fetches a Repository's history of changes. The Repository must not have a
236
- # value for `git_remote_settings.url`.
237
- # @param [String] name
238
- # Required. The repository's name.
239
- # @param [Fixnum] page_size
240
- # Optional. Maximum number of paths to return. The server may return fewer items
241
- # than requested. If unspecified, the server will pick an appropriate default.
242
- # @param [String] page_token
243
- # Optional. Page token received from a previous `FetchRepositoryHistory` call.
244
- # Provide this to retrieve the subsequent page. When paginating, all other
245
- # parameters provided to `FetchRepositoryHistory` must match the call that
246
- # provided the page token.
247
- # @param [String] fields
248
- # Selector specifying which fields to include in a partial response.
249
- # @param [String] quota_user
250
- # Available to use for quota purposes for server-side applications. Can be any
251
- # arbitrary string assigned to a user, but should not exceed 40 characters.
252
- # @param [Google::Apis::RequestOptions] options
253
- # Request-specific options
254
- #
255
- # @yield [result, err] Result & error if block supplied
256
- # @yieldparam result [Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse] parsed result object
257
- # @yieldparam err [StandardError] error object if request failed
258
- #
259
- # @return [Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse]
260
- #
261
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
262
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
263
- # @raise [Google::Apis::AuthorizationError] Authorization is required
264
- def fetch_project_location_repository_history(name, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
265
- command = make_simple_command(:get, 'v1beta1/{+name}:fetchHistory', options)
266
- command.response_representation = Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse::Representation
267
- command.response_class = Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse
268
- command.params['name'] = name unless name.nil?
269
- command.query['pageSize'] = page_size unless page_size.nil?
270
- command.query['pageToken'] = page_token unless page_token.nil?
271
- command.query['fields'] = fields unless fields.nil?
272
- command.query['quotaUser'] = quota_user unless quota_user.nil?
273
- execute_or_queue_command(command, &block)
274
- end
275
-
276
198
  # Fetches a Repository's remote branches.
277
199
  # @param [String] name
278
200
  # Required. The repository's name.
@@ -465,94 +387,6 @@ module Google
465
387
  execute_or_queue_command(command, &block)
466
388
  end
467
389
 
468
- # Returns the contents of a given Repository directory. The Repository must not
469
- # have a value for `git_remote_settings.url`.
470
- # @param [String] name
471
- # Required. The repository's name.
472
- # @param [String] commit_sha
473
- # Optional. The Commit SHA for the commit to query from. If unset, the directory
474
- # will be queried from HEAD.
475
- # @param [Fixnum] page_size
476
- # Optional. Maximum number of paths to return. The server may return fewer items
477
- # than requested. If unspecified, the server will pick an appropriate default.
478
- # @param [String] page_token
479
- # Optional. Page token received from a previous `
480
- # QueryRepositoryDirectoryContents` call. Provide this to retrieve the
481
- # subsequent page. When paginating, all other parameters provided to `
482
- # QueryRepositoryDirectoryContents` must match the call that provided the page
483
- # token.
484
- # @param [String] path
485
- # Optional. The directory's full path including directory name, relative to root.
486
- # If left unset, the root is used.
487
- # @param [String] fields
488
- # Selector specifying which fields to include in a partial response.
489
- # @param [String] quota_user
490
- # Available to use for quota purposes for server-side applications. Can be any
491
- # arbitrary string assigned to a user, but should not exceed 40 characters.
492
- # @param [Google::Apis::RequestOptions] options
493
- # Request-specific options
494
- #
495
- # @yield [result, err] Result & error if block supplied
496
- # @yieldparam result [Google::Apis::DataformV1beta1::QueryRepositoryDirectoryContentsResponse] parsed result object
497
- # @yieldparam err [StandardError] error object if request failed
498
- #
499
- # @return [Google::Apis::DataformV1beta1::QueryRepositoryDirectoryContentsResponse]
500
- #
501
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
502
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
503
- # @raise [Google::Apis::AuthorizationError] Authorization is required
504
- def query_project_location_repository_directory_contents(name, commit_sha: nil, page_size: nil, page_token: nil, path: nil, fields: nil, quota_user: nil, options: nil, &block)
505
- command = make_simple_command(:get, 'v1beta1/{+name}:queryDirectoryContents', options)
506
- command.response_representation = Google::Apis::DataformV1beta1::QueryRepositoryDirectoryContentsResponse::Representation
507
- command.response_class = Google::Apis::DataformV1beta1::QueryRepositoryDirectoryContentsResponse
508
- command.params['name'] = name unless name.nil?
509
- command.query['commitSha'] = commit_sha unless commit_sha.nil?
510
- command.query['pageSize'] = page_size unless page_size.nil?
511
- command.query['pageToken'] = page_token unless page_token.nil?
512
- command.query['path'] = path unless path.nil?
513
- command.query['fields'] = fields unless fields.nil?
514
- command.query['quotaUser'] = quota_user unless quota_user.nil?
515
- execute_or_queue_command(command, &block)
516
- end
517
-
518
- # Returns the contents of a file (inside a Repository). The Repository must not
519
- # have a value for `git_remote_settings.url`.
520
- # @param [String] name
521
- # Required. The repository's name.
522
- # @param [String] commit_sha
523
- # Optional. The commit SHA for the commit to read from. If unset, the file will
524
- # be read from HEAD.
525
- # @param [String] path
526
- # Required. Full file path to read including filename, from repository root.
527
- # @param [String] fields
528
- # Selector specifying which fields to include in a partial response.
529
- # @param [String] quota_user
530
- # Available to use for quota purposes for server-side applications. Can be any
531
- # arbitrary string assigned to a user, but should not exceed 40 characters.
532
- # @param [Google::Apis::RequestOptions] options
533
- # Request-specific options
534
- #
535
- # @yield [result, err] Result & error if block supplied
536
- # @yieldparam result [Google::Apis::DataformV1beta1::ReadRepositoryFileResponse] parsed result object
537
- # @yieldparam err [StandardError] error object if request failed
538
- #
539
- # @return [Google::Apis::DataformV1beta1::ReadRepositoryFileResponse]
540
- #
541
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
542
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
543
- # @raise [Google::Apis::AuthorizationError] Authorization is required
544
- def read_project_location_repository_file(name, commit_sha: nil, path: nil, fields: nil, quota_user: nil, options: nil, &block)
545
- command = make_simple_command(:get, 'v1beta1/{+name}:readFile', options)
546
- command.response_representation = Google::Apis::DataformV1beta1::ReadRepositoryFileResponse::Representation
547
- command.response_class = Google::Apis::DataformV1beta1::ReadRepositoryFileResponse
548
- command.params['name'] = name unless name.nil?
549
- command.query['commitSha'] = commit_sha unless commit_sha.nil?
550
- command.query['path'] = path unless path.nil?
551
- command.query['fields'] = fields unless fields.nil?
552
- command.query['quotaUser'] = quota_user unless quota_user.nil?
553
- execute_or_queue_command(command, &block)
554
- end
555
-
556
390
  # Sets the access control policy on the specified resource. Replaces any
557
391
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
558
392
  # PERMISSION_DENIED` errors.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.8.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-16 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-dataform_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.8.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []