google-apis-dataform_v1beta1 0.9.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3bcbfbd08c9d2a1b1467372f544968f5d0d5f98dc3da54ede0eb6f04f0490d2e
4
- data.tar.gz: f372aefd2645e69c5c66eb56763f2244dc042a02a81a099535670c7f3cdea494
3
+ metadata.gz: aaf60ab65af8a7a24601efdb75dfadc6a893decd2006d8e80aa88039ad09bce1
4
+ data.tar.gz: 953a1c0b9fca00513f8d3e4b3d2f2b827bf151888ca2bb3e78b801c162b91933
5
5
  SHA512:
6
- metadata.gz: 10f924fc5851043ed9a11d957ed36188ecfb793202e5273c5717dc482d184de2ea2f5249c8659dd5ae7df02f21d784afc57e1a4bc71f753cb570b86d7d0762e3
7
- data.tar.gz: 1f3b4ac16f1a6533f9df68182218dc1d51bceb1dee7bd25d58b08ec27985a496cbbf06024dcd5c38a7b2ccd68d63c97a9cbdaa11752e7a52395522acd53043fd
6
+ metadata.gz: 7fd48a3aabf6870797ef11a7cb74d9cae5ff3b638bbe05c8442e4218f572ce72784b199247ea04b472572263cb7c337b6745b50155b22837527475480691b8f1
7
+ data.tar.gz: d1438ae1388998c9ee7626de523605545c1d6595eab9c54be02f3f704817dae1ff77a3e0168617ce56dd3975f4841b7d2f3e6fb438b371edaf1ca7271cd77297
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.11.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230707
6
+
7
+ ### v0.10.0 (2023-06-25)
8
+
9
+ * Regenerated from discovery document revision 20230616
10
+
3
11
  ### v0.9.0 (2023-05-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20230512
@@ -735,7 +735,9 @@ module Google
735
735
  # @return [String]
736
736
  attr_accessor :default_branch
737
737
 
738
- # Output only. Indicates the status of the Git access token.
738
+ # Output only. Deprecated: The field does not contain any token status
739
+ # information. Instead use https://cloud.google.com/dataform/reference/rest/
740
+ # v1beta1/projects.locations.repositories/computeAccessTokenStatus
739
741
  # Corresponds to the JSON property `tokenStatus`
740
742
  # @return [String]
741
743
  attr_accessor :token_status
@@ -890,6 +892,11 @@ module Google
890
892
  # @return [Array<Google::Apis::DataformV1beta1::Target>]
891
893
  attr_accessor :included_targets
892
894
 
895
+ # Optional. The service account to run workflow invocations under.
896
+ # Corresponds to the JSON property `serviceAccount`
897
+ # @return [String]
898
+ attr_accessor :service_account
899
+
893
900
  # Optional. When set to true, transitive dependencies of included actions will
894
901
  # be executed.
895
902
  # Corresponds to the JSON property `transitiveDependenciesIncluded`
@@ -913,6 +920,7 @@ module Google
913
920
  @fully_refresh_incremental_tables_enabled = args[:fully_refresh_incremental_tables_enabled] if args.key?(:fully_refresh_incremental_tables_enabled)
914
921
  @included_tags = args[:included_tags] if args.key?(:included_tags)
915
922
  @included_targets = args[:included_targets] if args.key?(:included_targets)
923
+ @service_account = args[:service_account] if args.key?(:service_account)
916
924
  @transitive_dependencies_included = args[:transitive_dependencies_included] if args.key?(:transitive_dependencies_included)
917
925
  @transitive_dependents_included = args[:transitive_dependents_included] if args.key?(:transitive_dependents_included)
918
926
  end
@@ -1901,6 +1909,11 @@ module Google
1901
1909
  # @return [String]
1902
1910
  attr_accessor :npmrc_environment_variables_secret_version
1903
1911
 
1912
+ # Optional. The service account to run workflow invocations under.
1913
+ # Corresponds to the JSON property `serviceAccount`
1914
+ # @return [String]
1915
+ attr_accessor :service_account
1916
+
1904
1917
  # Configures workspace compilation overrides for a repository. Primarily used by
1905
1918
  # the UI (`console.cloud.google.com`). `schema_suffix` and `table_prefix` can
1906
1919
  # have a special expression - `$`workspaceName``, which refers to the workspace
@@ -1922,6 +1935,7 @@ module Google
1922
1935
  @git_remote_settings = args[:git_remote_settings] if args.key?(:git_remote_settings)
1923
1936
  @name = args[:name] if args.key?(:name)
1924
1937
  @npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
1938
+ @service_account = args[:service_account] if args.key?(:service_account)
1925
1939
  @workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
1926
1940
  end
1927
1941
  end
@@ -2272,8 +2286,8 @@ module Google
2272
2286
  class WorkflowInvocation
2273
2287
  include Google::Apis::Core::Hashable
2274
2288
 
2275
- # Immutable. The name of the compilation result to compile. Must be in the
2276
- # format `projects/*/locations/*/repositories/*/compilationResults/*`.
2289
+ # Immutable. The name of the compilation result to use for this invocation. Must
2290
+ # be in the format `projects/*/locations/*/repositories/*/compilationResults/*`.
2277
2291
  # Corresponds to the JSON property `compilationResult`
2278
2292
  # @return [String]
2279
2293
  attr_accessor :compilation_result
@@ -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.9.0"
19
+ GEM_VERSION = "0.11.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 = "20230512"
25
+ REVISION = "20230707"
26
26
  end
27
27
  end
28
28
  end
@@ -691,6 +691,7 @@ module Google
691
691
  collection :included_tags, as: 'includedTags'
692
692
  collection :included_targets, as: 'includedTargets', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
693
693
 
694
+ property :service_account, as: 'serviceAccount'
694
695
  property :transitive_dependencies_included, as: 'transitiveDependenciesIncluded'
695
696
  property :transitive_dependents_included, as: 'transitiveDependentsIncluded'
696
697
  end
@@ -973,6 +974,7 @@ module Google
973
974
 
974
975
  property :name, as: 'name'
975
976
  property :npmrc_environment_variables_secret_version, as: 'npmrcEnvironmentVariablesSecretVersion'
977
+ property :service_account, as: 'serviceAccount'
976
978
  property :workspace_compilation_overrides, as: 'workspaceCompilationOverrides', class: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides, decorator: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides::Representation
977
979
 
978
980
  end
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.9.0
4
+ version: 0.11.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-05-21 00:00:00.000000000 Z
11
+ date: 2023-07-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.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.11.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: []