google-apis-dataform_v1beta1 0.7.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a95e137c2aba00a4cfff2a94e1f2216c5e75d8d3bfe5009b3ba3176757012417
4
- data.tar.gz: 66d4a42ae0aa47ad0813736c3dfeb951ff85f985076fabde82e1f46e985d13c4
3
+ metadata.gz: 3bcbfbd08c9d2a1b1467372f544968f5d0d5f98dc3da54ede0eb6f04f0490d2e
4
+ data.tar.gz: f372aefd2645e69c5c66eb56763f2244dc042a02a81a099535670c7f3cdea494
5
5
  SHA512:
6
- metadata.gz: ea90eda4d2a3735996d4fb5d8b80645449b1c2d05bacb2d48d8e24e08cd870c3e1cf677b472a529d8e86275dc6446f37ff71a1996fb86a0f14c94dbb18bf670a
7
- data.tar.gz: 814b64b97c90594f2ad8376704c109fca6f5da15d870027cd43f3e36e4c1d69f5c81f82c3b2d08c9f00894159e3e06d7f8c5ca2851c6d209dd129a63f8a5f581
6
+ metadata.gz: 10f924fc5851043ed9a11d957ed36188ecfb793202e5273c5717dc482d184de2ea2f5249c8659dd5ae7df02f21d784afc57e1a4bc71f753cb570b86d7d0762e3
7
+ data.tar.gz: 1f3b4ac16f1a6533f9df68182218dc1d51bceb1dee7bd25d58b08ec27985a496cbbf06024dcd5c38a7b2ccd68d63c97a9cbdaa11752e7a52395522acd53043fd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.9.0 (2023-05-21)
4
+
5
+ * Regenerated from discovery document revision 20230512
6
+
7
+ ### v0.8.0 (2023-04-16)
8
+
9
+ * Regenerated from discovery document revision 20230408
10
+
3
11
  ### v0.7.0 (2023-03-19)
4
12
 
5
13
  * 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
@@ -629,19 +541,6 @@ module Google
629
541
  end
630
542
  end
631
543
 
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
544
  # Represents a single entry in a directory.
646
545
  class DirectoryEntry
647
546
  include Google::Apis::Core::Hashable
@@ -820,57 +719,6 @@ module Google
820
719
  end
821
720
  end
822
721
 
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
722
  # Controls Git remote configuration for a repository.
875
723
  class GitRemoteSettings
876
724
  include Google::Apis::Core::Hashable
@@ -1287,7 +1135,7 @@ module Google
1287
1135
  end
1288
1136
  end
1289
1137
 
1290
- # A resource that represents Google Cloud Platform location.
1138
+ # A resource that represents a Google Cloud location.
1291
1139
  class Location
1292
1140
  include Google::Apis::Core::Hashable
1293
1141
 
@@ -1744,32 +1592,6 @@ module Google
1744
1592
  end
1745
1593
  end
1746
1594
 
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
1595
  # `QueryWorkflowInvocationActions` response message.
1774
1596
  class QueryWorkflowInvocationActionsResponse
1775
1597
  include Google::Apis::Core::Hashable
@@ -1816,26 +1638,6 @@ module Google
1816
1638
  end
1817
1639
  end
1818
1640
 
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
1641
  # Represents a database relation.
1840
1642
  class Relation
1841
1643
  include Google::Apis::Core::Hashable
@@ -1997,9 +1799,9 @@ module Google
1997
1799
  # @return [String]
1998
1800
  attr_accessor :name
1999
1801
 
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.
1802
+ # Output only. Records of the 10 most recent scheduled release attempts, ordered
1803
+ # in in descending order of `release_time`. Updated whenever automatic creation
1804
+ # of a compilation result is triggered by cron_schedule.
2003
1805
  # Corresponds to the JSON property `recentScheduledReleaseRecords`
2004
1806
  # @return [Array<Google::Apis::DataformV1beta1::ScheduledReleaseRecord>]
2005
1807
  attr_accessor :recent_scheduled_release_records
@@ -2086,23 +1888,6 @@ module Google
2086
1888
  # @return [Google::Apis::DataformV1beta1::GitRemoteSettings]
2087
1889
  attr_accessor :git_remote_settings
2088
1890
 
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
1891
  # Output only. The repository's name.
2107
1892
  # Corresponds to the JSON property `name`
2108
1893
  # @return [String]
@@ -2135,9 +1920,6 @@ module Google
2135
1920
  # Update properties of this object
2136
1921
  def update!(**args)
2137
1922
  @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
1923
  @name = args[:name] if args.key?(:name)
2142
1924
  @npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
2143
1925
  @workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
@@ -2450,9 +2232,9 @@ module Google
2450
2232
  # @return [String]
2451
2233
  attr_accessor :name
2452
2234
 
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.
2235
+ # Output only. Records of the 10 most recent scheduled execution attempts,
2236
+ # ordered in in descending order of `execution_time`. Updated whenever automatic
2237
+ # creation of a workflow invocation is triggered by cron_schedule.
2456
2238
  # Corresponds to the JSON property `recentScheduledExecutionRecords`
2457
2239
  # @return [Array<Google::Apis::DataformV1beta1::ScheduledExecutionRecord>]
2458
2240
  attr_accessor :recent_scheduled_execution_records
@@ -2653,26 +2435,6 @@ module Google
2653
2435
  end
2654
2436
  end
2655
2437
 
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
2438
  # `WriteFile` request message.
2677
2439
  class WriteFileRequest
2678
2440
  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.9.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 = "20230512"
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
 
@@ -118,12 +100,6 @@ module Google
118
100
  include Google::Apis::Core::JsonObjectSupport
119
101
  end
120
102
 
121
- class DeleteFile
122
- class Representation < Google::Apis::Core::JsonRepresentation; end
123
-
124
- include Google::Apis::Core::JsonObjectSupport
125
- end
126
-
127
103
  class DirectoryEntry
128
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
105
 
@@ -166,18 +142,6 @@ module Google
166
142
  include Google::Apis::Core::JsonObjectSupport
167
143
  end
168
144
 
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
145
  class GitRemoteSettings
182
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
147
 
@@ -340,12 +304,6 @@ module Google
340
304
  include Google::Apis::Core::JsonObjectSupport
341
305
  end
342
306
 
343
- class QueryRepositoryDirectoryContentsResponse
344
- class Representation < Google::Apis::Core::JsonRepresentation; end
345
-
346
- include Google::Apis::Core::JsonObjectSupport
347
- end
348
-
349
307
  class QueryWorkflowInvocationActionsResponse
350
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
351
309
 
@@ -358,12 +316,6 @@ module Google
358
316
  include Google::Apis::Core::JsonObjectSupport
359
317
  end
360
318
 
361
- class ReadRepositoryFileResponse
362
- class Representation < Google::Apis::Core::JsonRepresentation; end
363
-
364
- include Google::Apis::Core::JsonObjectSupport
365
- end
366
-
367
319
  class Relation
368
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
321
 
@@ -484,12 +436,6 @@ module Google
484
436
  include Google::Apis::Core::JsonObjectSupport
485
437
  end
486
438
 
487
- class WriteFile
488
- class Representation < Google::Apis::Core::JsonRepresentation; end
489
-
490
- include Google::Apis::Core::JsonObjectSupport
491
- end
492
-
493
439
  class WriteFileRequest
494
440
  class Representation < Google::Apis::Core::JsonRepresentation; end
495
441
 
@@ -571,36 +517,6 @@ module Google
571
517
  end
572
518
  end
573
519
 
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
520
  class CommitWorkspaceChangesRequest
605
521
  # @private
606
522
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -672,12 +588,6 @@ module Google
672
588
  end
673
589
  end
674
590
 
675
- class DeleteFile
676
- # @private
677
- class Representation < Google::Apis::Core::JsonRepresentation
678
- end
679
- end
680
-
681
591
  class DirectoryEntry
682
592
  # @private
683
593
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -732,25 +642,6 @@ module Google
732
642
  end
733
643
  end
734
644
 
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
645
  class GitRemoteSettings
755
646
  # @private
756
647
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -997,15 +888,6 @@ module Google
997
888
  end
998
889
  end
999
890
 
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
891
  class QueryWorkflowInvocationActionsResponse
1010
892
  # @private
1011
893
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1022,13 +904,6 @@ module Google
1022
904
  end
1023
905
  end
1024
906
 
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
907
  class Relation
1033
908
  # @private
1034
909
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1096,10 +971,6 @@ module Google
1096
971
  class Representation < Google::Apis::Core::JsonRepresentation
1097
972
  property :git_remote_settings, as: 'gitRemoteSettings', class: Google::Apis::DataformV1beta1::GitRemoteSettings, decorator: Google::Apis::DataformV1beta1::GitRemoteSettings::Representation
1098
973
 
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
974
  property :name, as: 'name'
1104
975
  property :npmrc_environment_variables_secret_version, as: 'npmrcEnvironmentVariablesSecretVersion'
1105
976
  property :workspace_compilation_overrides, as: 'workspaceCompilationOverrides', class: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides, decorator: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides::Representation
@@ -1243,13 +1114,6 @@ module Google
1243
1114
  end
1244
1115
  end
1245
1116
 
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
1117
  class WriteFileRequest
1254
1118
  # @private
1255
1119
  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
  # Computes a Repository's Git access token status.
163
126
  # @param [String] name
164
127
  # Required. The repository's name.
@@ -262,48 +225,6 @@ module Google
262
225
  execute_or_queue_command(command, &block)
263
226
  end
264
227
 
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
228
  # Fetches a Repository's remote branches.
308
229
  # @param [String] name
309
230
  # Required. The repository's name.
@@ -496,94 +417,6 @@ module Google
496
417
  execute_or_queue_command(command, &block)
497
418
  end
498
419
 
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
420
  # Sets the access control policy on the specified resource. Replaces any
588
421
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
589
422
  # 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.9.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-05-21 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.9.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: []