google-apis-dataform_v1beta1 0.7.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: a95e137c2aba00a4cfff2a94e1f2216c5e75d8d3bfe5009b3ba3176757012417
4
- data.tar.gz: 66d4a42ae0aa47ad0813736c3dfeb951ff85f985076fabde82e1f46e985d13c4
3
+ metadata.gz: ca9eba13b1058a52acda0bfcf81a1011b4abb90bf771ed244c53ed14bce20309
4
+ data.tar.gz: 58539554cf3f98a9d09c15fb85d3c5e1b310beb716e2f16745d018d43e8c726b
5
5
  SHA512:
6
- metadata.gz: ea90eda4d2a3735996d4fb5d8b80645449b1c2d05bacb2d48d8e24e08cd870c3e1cf677b472a529d8e86275dc6446f37ff71a1996fb86a0f14c94dbb18bf670a
7
- data.tar.gz: 814b64b97c90594f2ad8376704c109fca6f5da15d870027cd43f3e36e4c1d69f5c81f82c3b2d08c9f00894159e3e06d7f8c5ca2851c6d209dd129a63f8a5f581
6
+ metadata.gz: 26318a83fa31e32f78d1c463d344173d414283a1cb17645c93a4bdee8960d213d0a96e0449a0b77f5678dc0e1b2715797a80ea39b1f4ea5b3c6deadc95b697f2
7
+ data.tar.gz: 3826e3cfa07d59dfbca4dba4b86f842d6c13c9da61414fe40f302746a93d3bb73a511f9fc68da42afe506a5833faff81c3bc6074cae4594cafa29f05651cc767
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.7.0 (2023-03-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20230311
@@ -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
@@ -590,25 +502,6 @@ module Google
590
502
  end
591
503
  end
592
504
 
593
- # `ComputeRepositoryAccessTokenStatus` response message.
594
- class ComputeRepositoryAccessTokenStatusResponse
595
- include Google::Apis::Core::Hashable
596
-
597
- # Indicates the status of the Git access token.
598
- # Corresponds to the JSON property `tokenStatus`
599
- # @return [String]
600
- attr_accessor :token_status
601
-
602
- def initialize(**args)
603
- update!(**args)
604
- end
605
-
606
- # Update properties of this object
607
- def update!(**args)
608
- @token_status = args[:token_status] if args.key?(:token_status)
609
- end
610
- end
611
-
612
505
  # Represents a relation which is not managed by Dataform but which may be
613
506
  # referenced by Dataform actions.
614
507
  class Declaration
@@ -629,19 +522,6 @@ module Google
629
522
  end
630
523
  end
631
524
 
632
- # Represents the delete file operation.
633
- class DeleteFile
634
- include Google::Apis::Core::Hashable
635
-
636
- def initialize(**args)
637
- update!(**args)
638
- end
639
-
640
- # Update properties of this object
641
- def update!(**args)
642
- end
643
- end
644
-
645
525
  # Represents a single entry in a directory.
646
526
  class DirectoryEntry
647
527
  include Google::Apis::Core::Hashable
@@ -820,57 +700,6 @@ module Google
820
700
  end
821
701
  end
822
702
 
823
- # `FetchRepositoryHistory` response message.
824
- class FetchRepositoryHistoryResponse
825
- include Google::Apis::Core::Hashable
826
-
827
- # A list of commit logs, ordered by 'git log' default order.
828
- # Corresponds to the JSON property `commits`
829
- # @return [Array<Google::Apis::DataformV1beta1::CommitLogEntry>]
830
- attr_accessor :commits
831
-
832
- # A token, which can be sent as `page_token` to retrieve the next page. If this
833
- # field is omitted, there are no subsequent pages.
834
- # Corresponds to the JSON property `nextPageToken`
835
- # @return [String]
836
- attr_accessor :next_page_token
837
-
838
- def initialize(**args)
839
- update!(**args)
840
- end
841
-
842
- # Update properties of this object
843
- def update!(**args)
844
- @commits = args[:commits] if args.key?(:commits)
845
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
846
- end
847
- end
848
-
849
- # Represents a single file operation to the repository.
850
- class FileOperation
851
- include Google::Apis::Core::Hashable
852
-
853
- # Represents the delete file operation.
854
- # Corresponds to the JSON property `deleteFile`
855
- # @return [Google::Apis::DataformV1beta1::DeleteFile]
856
- attr_accessor :delete_file
857
-
858
- # Represents the write file operation (for files added or modified).
859
- # Corresponds to the JSON property `writeFile`
860
- # @return [Google::Apis::DataformV1beta1::WriteFile]
861
- attr_accessor :write_file
862
-
863
- def initialize(**args)
864
- update!(**args)
865
- end
866
-
867
- # Update properties of this object
868
- def update!(**args)
869
- @delete_file = args[:delete_file] if args.key?(:delete_file)
870
- @write_file = args[:write_file] if args.key?(:write_file)
871
- end
872
- end
873
-
874
703
  # Controls Git remote configuration for a repository.
875
704
  class GitRemoteSettings
876
705
  include Google::Apis::Core::Hashable
@@ -1744,32 +1573,6 @@ module Google
1744
1573
  end
1745
1574
  end
1746
1575
 
1747
- # `QueryRepositoryDirectoryContents` response message.
1748
- class QueryRepositoryDirectoryContentsResponse
1749
- include Google::Apis::Core::Hashable
1750
-
1751
- # List of entries in the directory.
1752
- # Corresponds to the JSON property `directoryEntries`
1753
- # @return [Array<Google::Apis::DataformV1beta1::DirectoryEntry>]
1754
- attr_accessor :directory_entries
1755
-
1756
- # A token, which can be sent as `page_token` to retrieve the next page. If this
1757
- # field is omitted, there are no subsequent pages.
1758
- # Corresponds to the JSON property `nextPageToken`
1759
- # @return [String]
1760
- attr_accessor :next_page_token
1761
-
1762
- def initialize(**args)
1763
- update!(**args)
1764
- end
1765
-
1766
- # Update properties of this object
1767
- def update!(**args)
1768
- @directory_entries = args[:directory_entries] if args.key?(:directory_entries)
1769
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1770
- end
1771
- end
1772
-
1773
1576
  # `QueryWorkflowInvocationActions` response message.
1774
1577
  class QueryWorkflowInvocationActionsResponse
1775
1578
  include Google::Apis::Core::Hashable
@@ -1816,26 +1619,6 @@ module Google
1816
1619
  end
1817
1620
  end
1818
1621
 
1819
- # `ReadRepositoryFile` response message.
1820
- class ReadRepositoryFileResponse
1821
- include Google::Apis::Core::Hashable
1822
-
1823
- # The file's contents.
1824
- # Corresponds to the JSON property `contents`
1825
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
1826
- # @return [String]
1827
- attr_accessor :contents
1828
-
1829
- def initialize(**args)
1830
- update!(**args)
1831
- end
1832
-
1833
- # Update properties of this object
1834
- def update!(**args)
1835
- @contents = args[:contents] if args.key?(:contents)
1836
- end
1837
- end
1838
-
1839
1622
  # Represents a database relation.
1840
1623
  class Relation
1841
1624
  include Google::Apis::Core::Hashable
@@ -1997,9 +1780,9 @@ module Google
1997
1780
  # @return [String]
1998
1781
  attr_accessor :name
1999
1782
 
2000
- # Output only. Records of the 10 most recent scheduled release attempts. Updated
2001
- # whenever automatic creation of a compilation result is triggered by
2002
- # 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.
2003
1786
  # Corresponds to the JSON property `recentScheduledReleaseRecords`
2004
1787
  # @return [Array<Google::Apis::DataformV1beta1::ScheduledReleaseRecord>]
2005
1788
  attr_accessor :recent_scheduled_release_records
@@ -2086,23 +1869,6 @@ module Google
2086
1869
  # @return [Google::Apis::DataformV1beta1::GitRemoteSettings]
2087
1870
  attr_accessor :git_remote_settings
2088
1871
 
2089
- # Optional. Input only. The initial commit file contents. Represented as map
2090
- # from file path to contents. The path is the full file path to commit including
2091
- # filename, from repository root.
2092
- # Corresponds to the JSON property `initialCommitFileContents`
2093
- # @return [Hash<String,String>]
2094
- attr_accessor :initial_commit_file_contents
2095
-
2096
- # Represents a Dataform Git commit.
2097
- # Corresponds to the JSON property `initialCommitMetadata`
2098
- # @return [Google::Apis::DataformV1beta1::CommitMetadata]
2099
- attr_accessor :initial_commit_metadata
2100
-
2101
- # Optional. Repository user labels.
2102
- # Corresponds to the JSON property `labels`
2103
- # @return [Hash<String,String>]
2104
- attr_accessor :labels
2105
-
2106
1872
  # Output only. The repository's name.
2107
1873
  # Corresponds to the JSON property `name`
2108
1874
  # @return [String]
@@ -2135,9 +1901,6 @@ module Google
2135
1901
  # Update properties of this object
2136
1902
  def update!(**args)
2137
1903
  @git_remote_settings = args[:git_remote_settings] if args.key?(:git_remote_settings)
2138
- @initial_commit_file_contents = args[:initial_commit_file_contents] if args.key?(:initial_commit_file_contents)
2139
- @initial_commit_metadata = args[:initial_commit_metadata] if args.key?(:initial_commit_metadata)
2140
- @labels = args[:labels] if args.key?(:labels)
2141
1904
  @name = args[:name] if args.key?(:name)
2142
1905
  @npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
2143
1906
  @workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
@@ -2450,9 +2213,9 @@ module Google
2450
2213
  # @return [String]
2451
2214
  attr_accessor :name
2452
2215
 
2453
- # Output only. Records of the 10 most recent scheduled execution attempts.
2454
- # Updated whenever automatic creation of a compilation result is triggered by
2455
- # 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.
2456
2219
  # Corresponds to the JSON property `recentScheduledExecutionRecords`
2457
2220
  # @return [Array<Google::Apis::DataformV1beta1::ScheduledExecutionRecord>]
2458
2221
  attr_accessor :recent_scheduled_execution_records
@@ -2653,26 +2416,6 @@ module Google
2653
2416
  end
2654
2417
  end
2655
2418
 
2656
- # Represents the write file operation (for files added or modified).
2657
- class WriteFile
2658
- include Google::Apis::Core::Hashable
2659
-
2660
- # The file's contents.
2661
- # Corresponds to the JSON property `contents`
2662
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
2663
- # @return [String]
2664
- attr_accessor :contents
2665
-
2666
- def initialize(**args)
2667
- update!(**args)
2668
- end
2669
-
2670
- # Update properties of this object
2671
- def update!(**args)
2672
- @contents = args[:contents] if args.key?(:contents)
2673
- end
2674
- end
2675
-
2676
2419
  # `WriteFile` request message.
2677
2420
  class WriteFileRequest
2678
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.7.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 = "20230311"
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
 
@@ -106,24 +88,12 @@ module Google
106
88
  include Google::Apis::Core::JsonObjectSupport
107
89
  end
108
90
 
109
- class ComputeRepositoryAccessTokenStatusResponse
110
- class Representation < Google::Apis::Core::JsonRepresentation; end
111
-
112
- include Google::Apis::Core::JsonObjectSupport
113
- end
114
-
115
91
  class Declaration
116
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
93
 
118
94
  include Google::Apis::Core::JsonObjectSupport
119
95
  end
120
96
 
121
- class DeleteFile
122
- class Representation < Google::Apis::Core::JsonRepresentation; end
123
-
124
- include Google::Apis::Core::JsonObjectSupport
125
- end
126
-
127
97
  class DirectoryEntry
128
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
99
 
@@ -166,18 +136,6 @@ module Google
166
136
  include Google::Apis::Core::JsonObjectSupport
167
137
  end
168
138
 
169
- class FetchRepositoryHistoryResponse
170
- class Representation < Google::Apis::Core::JsonRepresentation; end
171
-
172
- include Google::Apis::Core::JsonObjectSupport
173
- end
174
-
175
- class FileOperation
176
- class Representation < Google::Apis::Core::JsonRepresentation; end
177
-
178
- include Google::Apis::Core::JsonObjectSupport
179
- end
180
-
181
139
  class GitRemoteSettings
182
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
141
 
@@ -340,12 +298,6 @@ module Google
340
298
  include Google::Apis::Core::JsonObjectSupport
341
299
  end
342
300
 
343
- class QueryRepositoryDirectoryContentsResponse
344
- class Representation < Google::Apis::Core::JsonRepresentation; end
345
-
346
- include Google::Apis::Core::JsonObjectSupport
347
- end
348
-
349
301
  class QueryWorkflowInvocationActionsResponse
350
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
351
303
 
@@ -358,12 +310,6 @@ module Google
358
310
  include Google::Apis::Core::JsonObjectSupport
359
311
  end
360
312
 
361
- class ReadRepositoryFileResponse
362
- class Representation < Google::Apis::Core::JsonRepresentation; end
363
-
364
- include Google::Apis::Core::JsonObjectSupport
365
- end
366
-
367
313
  class Relation
368
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
315
 
@@ -484,12 +430,6 @@ module Google
484
430
  include Google::Apis::Core::JsonObjectSupport
485
431
  end
486
432
 
487
- class WriteFile
488
- class Representation < Google::Apis::Core::JsonRepresentation; end
489
-
490
- include Google::Apis::Core::JsonObjectSupport
491
- end
492
-
493
433
  class WriteFileRequest
494
434
  class Representation < Google::Apis::Core::JsonRepresentation; end
495
435
 
@@ -571,36 +511,6 @@ module Google
571
511
  end
572
512
  end
573
513
 
574
- class CommitLogEntry
575
- # @private
576
- class Representation < Google::Apis::Core::JsonRepresentation
577
- property :author, as: 'author', class: Google::Apis::DataformV1beta1::CommitAuthor, decorator: Google::Apis::DataformV1beta1::CommitAuthor::Representation
578
-
579
- property :commit_message, as: 'commitMessage'
580
- property :commit_sha, as: 'commitSha'
581
- property :commit_time, as: 'commitTime'
582
- end
583
- end
584
-
585
- class CommitMetadata
586
- # @private
587
- class Representation < Google::Apis::Core::JsonRepresentation
588
- property :author, as: 'author', class: Google::Apis::DataformV1beta1::CommitAuthor, decorator: Google::Apis::DataformV1beta1::CommitAuthor::Representation
589
-
590
- property :commit_message, as: 'commitMessage'
591
- end
592
- end
593
-
594
- class CommitRepositoryChangesRequest
595
- # @private
596
- class Representation < Google::Apis::Core::JsonRepresentation
597
- property :commit_metadata, as: 'commitMetadata', class: Google::Apis::DataformV1beta1::CommitMetadata, decorator: Google::Apis::DataformV1beta1::CommitMetadata::Representation
598
-
599
- hash :file_operations, as: 'fileOperations', class: Google::Apis::DataformV1beta1::FileOperation, decorator: Google::Apis::DataformV1beta1::FileOperation::Representation
600
-
601
- end
602
- end
603
-
604
514
  class CommitWorkspaceChangesRequest
605
515
  # @private
606
516
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -657,13 +567,6 @@ module Google
657
567
  end
658
568
  end
659
569
 
660
- class ComputeRepositoryAccessTokenStatusResponse
661
- # @private
662
- class Representation < Google::Apis::Core::JsonRepresentation
663
- property :token_status, as: 'tokenStatus'
664
- end
665
- end
666
-
667
570
  class Declaration
668
571
  # @private
669
572
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -672,12 +575,6 @@ module Google
672
575
  end
673
576
  end
674
577
 
675
- class DeleteFile
676
- # @private
677
- class Representation < Google::Apis::Core::JsonRepresentation
678
- end
679
- end
680
-
681
578
  class DirectoryEntry
682
579
  # @private
683
580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -732,25 +629,6 @@ module Google
732
629
  end
733
630
  end
734
631
 
735
- class FetchRepositoryHistoryResponse
736
- # @private
737
- class Representation < Google::Apis::Core::JsonRepresentation
738
- collection :commits, as: 'commits', class: Google::Apis::DataformV1beta1::CommitLogEntry, decorator: Google::Apis::DataformV1beta1::CommitLogEntry::Representation
739
-
740
- property :next_page_token, as: 'nextPageToken'
741
- end
742
- end
743
-
744
- class FileOperation
745
- # @private
746
- class Representation < Google::Apis::Core::JsonRepresentation
747
- property :delete_file, as: 'deleteFile', class: Google::Apis::DataformV1beta1::DeleteFile, decorator: Google::Apis::DataformV1beta1::DeleteFile::Representation
748
-
749
- property :write_file, as: 'writeFile', class: Google::Apis::DataformV1beta1::WriteFile, decorator: Google::Apis::DataformV1beta1::WriteFile::Representation
750
-
751
- end
752
- end
753
-
754
632
  class GitRemoteSettings
755
633
  # @private
756
634
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -997,15 +875,6 @@ module Google
997
875
  end
998
876
  end
999
877
 
1000
- class QueryRepositoryDirectoryContentsResponse
1001
- # @private
1002
- class Representation < Google::Apis::Core::JsonRepresentation
1003
- collection :directory_entries, as: 'directoryEntries', class: Google::Apis::DataformV1beta1::DirectoryEntry, decorator: Google::Apis::DataformV1beta1::DirectoryEntry::Representation
1004
-
1005
- property :next_page_token, as: 'nextPageToken'
1006
- end
1007
- end
1008
-
1009
878
  class QueryWorkflowInvocationActionsResponse
1010
879
  # @private
1011
880
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1022,13 +891,6 @@ module Google
1022
891
  end
1023
892
  end
1024
893
 
1025
- class ReadRepositoryFileResponse
1026
- # @private
1027
- class Representation < Google::Apis::Core::JsonRepresentation
1028
- property :contents, :base64 => true, as: 'contents'
1029
- end
1030
- end
1031
-
1032
894
  class Relation
1033
895
  # @private
1034
896
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1096,10 +958,6 @@ module Google
1096
958
  class Representation < Google::Apis::Core::JsonRepresentation
1097
959
  property :git_remote_settings, as: 'gitRemoteSettings', class: Google::Apis::DataformV1beta1::GitRemoteSettings, decorator: Google::Apis::DataformV1beta1::GitRemoteSettings::Representation
1098
960
 
1099
- hash :initial_commit_file_contents, as: 'initialCommitFileContents'
1100
- property :initial_commit_metadata, as: 'initialCommitMetadata', class: Google::Apis::DataformV1beta1::CommitMetadata, decorator: Google::Apis::DataformV1beta1::CommitMetadata::Representation
1101
-
1102
- hash :labels, as: 'labels'
1103
961
  property :name, as: 'name'
1104
962
  property :npmrc_environment_variables_secret_version, as: 'npmrcEnvironmentVariablesSecretVersion'
1105
963
  property :workspace_compilation_overrides, as: 'workspaceCompilationOverrides', class: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides, decorator: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides::Representation
@@ -1243,13 +1101,6 @@ module Google
1243
1101
  end
1244
1102
  end
1245
1103
 
1246
- class WriteFile
1247
- # @private
1248
- class Representation < Google::Apis::Core::JsonRepresentation
1249
- property :contents, :base64 => true, as: 'contents'
1250
- end
1251
- end
1252
-
1253
1104
  class WriteFileRequest
1254
1105
  # @private
1255
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,70 +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
- # Computes a Repository's Git access token status.
163
- # @param [String] name
164
- # Required. The repository's name.
165
- # @param [String] fields
166
- # Selector specifying which fields to include in a partial response.
167
- # @param [String] quota_user
168
- # Available to use for quota purposes for server-side applications. Can be any
169
- # arbitrary string assigned to a user, but should not exceed 40 characters.
170
- # @param [Google::Apis::RequestOptions] options
171
- # Request-specific options
172
- #
173
- # @yield [result, err] Result & error if block supplied
174
- # @yieldparam result [Google::Apis::DataformV1beta1::ComputeRepositoryAccessTokenStatusResponse] parsed result object
175
- # @yieldparam err [StandardError] error object if request failed
176
- #
177
- # @return [Google::Apis::DataformV1beta1::ComputeRepositoryAccessTokenStatusResponse]
178
- #
179
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
180
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
181
- # @raise [Google::Apis::AuthorizationError] Authorization is required
182
- def compute_project_location_repository_access_token_status(name, fields: nil, quota_user: nil, options: nil, &block)
183
- command = make_simple_command(:get, 'v1beta1/{+name}:computeAccessTokenStatus', options)
184
- command.response_representation = Google::Apis::DataformV1beta1::ComputeRepositoryAccessTokenStatusResponse::Representation
185
- command.response_class = Google::Apis::DataformV1beta1::ComputeRepositoryAccessTokenStatusResponse
186
- command.params['name'] = name unless name.nil?
187
- command.query['fields'] = fields unless fields.nil?
188
- command.query['quotaUser'] = quota_user unless quota_user.nil?
189
- execute_or_queue_command(command, &block)
190
- end
191
-
192
125
  # Creates a new Repository in a given project and location.
193
126
  # @param [String] parent
194
127
  # Required. The location in which to create the repository. Must be in the
@@ -262,48 +195,6 @@ module Google
262
195
  execute_or_queue_command(command, &block)
263
196
  end
264
197
 
265
- # Fetches a Repository's history of commits. The Repository must not have a
266
- # value for `git_remote_settings.url`.
267
- # @param [String] name
268
- # Required. The repository's name.
269
- # @param [Fixnum] page_size
270
- # Optional. Maximum number of commits to return. The server may return fewer
271
- # items than requested. If unspecified, the server will pick an appropriate
272
- # default.
273
- # @param [String] page_token
274
- # Optional. Page token received from a previous `FetchRepositoryHistory` call.
275
- # Provide this to retrieve the subsequent page. When paginating, all other
276
- # parameters provided to `FetchRepositoryHistory` must match the call that
277
- # provided the page token.
278
- # @param [String] fields
279
- # Selector specifying which fields to include in a partial response.
280
- # @param [String] quota_user
281
- # Available to use for quota purposes for server-side applications. Can be any
282
- # arbitrary string assigned to a user, but should not exceed 40 characters.
283
- # @param [Google::Apis::RequestOptions] options
284
- # Request-specific options
285
- #
286
- # @yield [result, err] Result & error if block supplied
287
- # @yieldparam result [Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse] parsed result object
288
- # @yieldparam err [StandardError] error object if request failed
289
- #
290
- # @return [Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse]
291
- #
292
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
293
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
294
- # @raise [Google::Apis::AuthorizationError] Authorization is required
295
- def fetch_project_location_repository_history(name, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
296
- command = make_simple_command(:get, 'v1beta1/{+name}:fetchHistory', options)
297
- command.response_representation = Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse::Representation
298
- command.response_class = Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse
299
- command.params['name'] = name unless name.nil?
300
- command.query['pageSize'] = page_size unless page_size.nil?
301
- command.query['pageToken'] = page_token unless page_token.nil?
302
- command.query['fields'] = fields unless fields.nil?
303
- command.query['quotaUser'] = quota_user unless quota_user.nil?
304
- execute_or_queue_command(command, &block)
305
- end
306
-
307
198
  # Fetches a Repository's remote branches.
308
199
  # @param [String] name
309
200
  # Required. The repository's name.
@@ -496,94 +387,6 @@ module Google
496
387
  execute_or_queue_command(command, &block)
497
388
  end
498
389
 
499
- # Returns the contents of a given Repository directory. The Repository must not
500
- # have a value for `git_remote_settings.url`.
501
- # @param [String] name
502
- # Required. The repository's name.
503
- # @param [String] commit_sha
504
- # Optional. The Commit SHA for the commit to query from. If unset, the directory
505
- # will be queried from HEAD.
506
- # @param [Fixnum] page_size
507
- # Optional. Maximum number of paths to return. The server may return fewer items
508
- # than requested. If unspecified, the server will pick an appropriate default.
509
- # @param [String] page_token
510
- # Optional. Page token received from a previous `
511
- # QueryRepositoryDirectoryContents` call. Provide this to retrieve the
512
- # subsequent page. When paginating, all other parameters provided to `
513
- # QueryRepositoryDirectoryContents` must match the call that provided the page
514
- # token.
515
- # @param [String] path
516
- # Optional. The directory's full path including directory name, relative to root.
517
- # If left unset, the root is used.
518
- # @param [String] fields
519
- # Selector specifying which fields to include in a partial response.
520
- # @param [String] quota_user
521
- # Available to use for quota purposes for server-side applications. Can be any
522
- # arbitrary string assigned to a user, but should not exceed 40 characters.
523
- # @param [Google::Apis::RequestOptions] options
524
- # Request-specific options
525
- #
526
- # @yield [result, err] Result & error if block supplied
527
- # @yieldparam result [Google::Apis::DataformV1beta1::QueryRepositoryDirectoryContentsResponse] parsed result object
528
- # @yieldparam err [StandardError] error object if request failed
529
- #
530
- # @return [Google::Apis::DataformV1beta1::QueryRepositoryDirectoryContentsResponse]
531
- #
532
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
533
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
534
- # @raise [Google::Apis::AuthorizationError] Authorization is required
535
- 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)
536
- command = make_simple_command(:get, 'v1beta1/{+name}:queryDirectoryContents', options)
537
- command.response_representation = Google::Apis::DataformV1beta1::QueryRepositoryDirectoryContentsResponse::Representation
538
- command.response_class = Google::Apis::DataformV1beta1::QueryRepositoryDirectoryContentsResponse
539
- command.params['name'] = name unless name.nil?
540
- command.query['commitSha'] = commit_sha unless commit_sha.nil?
541
- command.query['pageSize'] = page_size unless page_size.nil?
542
- command.query['pageToken'] = page_token unless page_token.nil?
543
- command.query['path'] = path unless path.nil?
544
- command.query['fields'] = fields unless fields.nil?
545
- command.query['quotaUser'] = quota_user unless quota_user.nil?
546
- execute_or_queue_command(command, &block)
547
- end
548
-
549
- # Returns the contents of a file (inside a Repository). The Repository must not
550
- # have a value for `git_remote_settings.url`.
551
- # @param [String] name
552
- # Required. The repository's name.
553
- # @param [String] commit_sha
554
- # Optional. The commit SHA for the commit to read from. If unset, the file will
555
- # be read from HEAD.
556
- # @param [String] path
557
- # Required. Full file path to read including filename, from repository root.
558
- # @param [String] fields
559
- # Selector specifying which fields to include in a partial response.
560
- # @param [String] quota_user
561
- # Available to use for quota purposes for server-side applications. Can be any
562
- # arbitrary string assigned to a user, but should not exceed 40 characters.
563
- # @param [Google::Apis::RequestOptions] options
564
- # Request-specific options
565
- #
566
- # @yield [result, err] Result & error if block supplied
567
- # @yieldparam result [Google::Apis::DataformV1beta1::ReadRepositoryFileResponse] parsed result object
568
- # @yieldparam err [StandardError] error object if request failed
569
- #
570
- # @return [Google::Apis::DataformV1beta1::ReadRepositoryFileResponse]
571
- #
572
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
573
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
574
- # @raise [Google::Apis::AuthorizationError] Authorization is required
575
- def read_project_location_repository_file(name, commit_sha: nil, path: nil, fields: nil, quota_user: nil, options: nil, &block)
576
- command = make_simple_command(:get, 'v1beta1/{+name}:readFile', options)
577
- command.response_representation = Google::Apis::DataformV1beta1::ReadRepositoryFileResponse::Representation
578
- command.response_class = Google::Apis::DataformV1beta1::ReadRepositoryFileResponse
579
- command.params['name'] = name unless name.nil?
580
- command.query['commitSha'] = commit_sha unless commit_sha.nil?
581
- command.query['path'] = path unless path.nil?
582
- command.query['fields'] = fields unless fields.nil?
583
- command.query['quotaUser'] = quota_user unless quota_user.nil?
584
- execute_or_queue_command(command, &block)
585
- end
586
-
587
390
  # Sets the access control policy on the specified resource. Replaces any
588
391
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
589
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.7.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-19 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.7.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: []