google-apis-dataform_v1beta1 0.1.0 → 0.3.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: 0c37263ed3b13cbaa679d7c145f42350d1c7ec1f4aa99587ffda3f652e409fb0
4
- data.tar.gz: 1f77f06f3c1c9238510ec7d1401b4e7d48e46abae28da6a729c77a9fb721a06e
3
+ metadata.gz: 76cab7aace445858a0bfe55daa2e40deded763e7942a8fa60210d35a198d5b2e
4
+ data.tar.gz: 0641a12b5ffb47df2deec4921e24ac5c5554e540bb64c4d3cea729b6fff01bf0
5
5
  SHA512:
6
- metadata.gz: b4e6bbb8a09627ef7d32a92dcf714c9caa19ab9a750d8debb59304fb16ffed19e4ed988f0c7ef1433363badcde366e6b592025200fa36b297f420dfee43be32e
7
- data.tar.gz: '09edb30ba4bc1e753bd97a2f159619b749705c3743e8714f7cda1bc366a46b9aacffacbd15e9d4ef25ba55773a8c8a6450c716df82f29eb05d141159f32f1d34'
6
+ metadata.gz: f5993882ecc766c8bdebdb2e75230a40d05b78e73fd5046d02aa22785f697143e075c9241820fa37757115d697459ab95fd040ceac810c1220d6184f6aef21da
7
+ data.tar.gz: c4f95709d0c7c80989bc4589981387374be422fc1091090f7ac732415a6cfacc393bece65be67d31a38c73d1ae781dab4bfcddc6f781651f2159e50025812e49
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.3.0 (2023-02-05)
4
+
5
+ * Regenerated from discovery document revision 20230128
6
+
7
+ ### v0.2.0 (2023-01-15)
8
+
9
+ * Regenerated from discovery document revision 20230107
10
+ * Regenerated using generator version 0.11.1
11
+
3
12
  ### v0.1.0 (2022-12-22)
4
13
 
5
14
  * Regenerated from discovery document revision 20221217
@@ -1663,6 +1663,18 @@ module Google
1663
1663
  # @return [String]
1664
1664
  attr_accessor :npmrc_environment_variables_secret_version
1665
1665
 
1666
+ # Configures workspace compilation overrides for a repository. Primarily used by
1667
+ # the UI (`console.cloud.google.com`). `schema_suffix` and `table_prefix` can
1668
+ # have a special expression - `$`workspaceName``, which refers to the workspace
1669
+ # name from which the compilation results will be created. API callers are
1670
+ # expected to resolve the expression in these overrides and provide them
1671
+ # explicitly in `code_compilation_config` (https://cloud.google.com/dataform/
1672
+ # reference/rest/v1beta1/projects.locations.repositories.compilationResults#
1673
+ # codecompilationconfig) when creating workspace-scoped compilation results.
1674
+ # Corresponds to the JSON property `workspaceCompilationOverrides`
1675
+ # @return [Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides]
1676
+ attr_accessor :workspace_compilation_overrides
1677
+
1666
1678
  def initialize(**args)
1667
1679
  update!(**args)
1668
1680
  end
@@ -1672,6 +1684,7 @@ module Google
1672
1684
  @git_remote_settings = args[:git_remote_settings] if args.key?(:git_remote_settings)
1673
1685
  @name = args[:name] if args.key?(:name)
1674
1686
  @npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
1687
+ @workspace_compilation_overrides = args[:workspace_compilation_overrides] if args.key?(:workspace_compilation_overrides)
1675
1688
  end
1676
1689
  end
1677
1690
 
@@ -1966,6 +1979,12 @@ module Google
1966
1979
  # @return [String]
1967
1980
  attr_accessor :state
1968
1981
 
1982
+ # Immutable. The name of the workflow config to invoke. Must be in the format `
1983
+ # projects/*/locations/*/repositories/*/workflowConfigs/*`.
1984
+ # Corresponds to the JSON property `workflowConfig`
1985
+ # @return [String]
1986
+ attr_accessor :workflow_config
1987
+
1969
1988
  def initialize(**args)
1970
1989
  update!(**args)
1971
1990
  end
@@ -1977,6 +1996,7 @@ module Google
1977
1996
  @invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
1978
1997
  @name = args[:name] if args.key?(:name)
1979
1998
  @state = args[:state] if args.key?(:state)
1999
+ @workflow_config = args[:workflow_config] if args.key?(:workflow_config)
1980
2000
  end
1981
2001
  end
1982
2002
 
@@ -2053,6 +2073,45 @@ module Google
2053
2073
  end
2054
2074
  end
2055
2075
 
2076
+ # Configures workspace compilation overrides for a repository. Primarily used by
2077
+ # the UI (`console.cloud.google.com`). `schema_suffix` and `table_prefix` can
2078
+ # have a special expression - `$`workspaceName``, which refers to the workspace
2079
+ # name from which the compilation results will be created. API callers are
2080
+ # expected to resolve the expression in these overrides and provide them
2081
+ # explicitly in `code_compilation_config` (https://cloud.google.com/dataform/
2082
+ # reference/rest/v1beta1/projects.locations.repositories.compilationResults#
2083
+ # codecompilationconfig) when creating workspace-scoped compilation results.
2084
+ class WorkspaceCompilationOverrides
2085
+ include Google::Apis::Core::Hashable
2086
+
2087
+ # Optional. The default database (Google Cloud project ID).
2088
+ # Corresponds to the JSON property `defaultDatabase`
2089
+ # @return [String]
2090
+ attr_accessor :default_database
2091
+
2092
+ # Optional. The suffix that should be appended to all schema (BigQuery dataset
2093
+ # ID) names.
2094
+ # Corresponds to the JSON property `schemaSuffix`
2095
+ # @return [String]
2096
+ attr_accessor :schema_suffix
2097
+
2098
+ # Optional. The prefix that should be prepended to all table names.
2099
+ # Corresponds to the JSON property `tablePrefix`
2100
+ # @return [String]
2101
+ attr_accessor :table_prefix
2102
+
2103
+ def initialize(**args)
2104
+ update!(**args)
2105
+ end
2106
+
2107
+ # Update properties of this object
2108
+ def update!(**args)
2109
+ @default_database = args[:default_database] if args.key?(:default_database)
2110
+ @schema_suffix = args[:schema_suffix] if args.key?(:schema_suffix)
2111
+ @table_prefix = args[:table_prefix] if args.key?(:table_prefix)
2112
+ end
2113
+ end
2114
+
2056
2115
  # `WriteFile` request message.
2057
2116
  class WriteFileRequest
2058
2117
  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.1.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221217"
25
+ REVISION = "20230128"
26
26
  end
27
27
  end
28
28
  end
@@ -388,6 +388,12 @@ module Google
388
388
  include Google::Apis::Core::JsonObjectSupport
389
389
  end
390
390
 
391
+ class WorkspaceCompilationOverrides
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
391
397
  class WriteFileRequest
392
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
399
 
@@ -888,6 +894,8 @@ module Google
888
894
 
889
895
  property :name, as: 'name'
890
896
  property :npmrc_environment_variables_secret_version, as: 'npmrcEnvironmentVariablesSecretVersion'
897
+ property :workspace_compilation_overrides, as: 'workspaceCompilationOverrides', class: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides, decorator: Google::Apis::DataformV1beta1::WorkspaceCompilationOverrides::Representation
898
+
891
899
  end
892
900
  end
893
901
 
@@ -969,6 +977,7 @@ module Google
969
977
 
970
978
  property :name, as: 'name'
971
979
  property :state, as: 'state'
980
+ property :workflow_config, as: 'workflowConfig'
972
981
  end
973
982
  end
974
983
 
@@ -995,6 +1004,15 @@ module Google
995
1004
  end
996
1005
  end
997
1006
 
1007
+ class WorkspaceCompilationOverrides
1008
+ # @private
1009
+ class Representation < Google::Apis::Core::JsonRepresentation
1010
+ property :default_database, as: 'defaultDatabase'
1011
+ property :schema_suffix, as: 'schemaSuffix'
1012
+ property :table_prefix, as: 'tablePrefix'
1013
+ end
1014
+ end
1015
+
998
1016
  class WriteFileRequest
999
1017
  # @private
1000
1018
  class Representation < Google::Apis::Core::JsonRepresentation
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.1.0
4
+ version: 0.3.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-01-04 00:00:00.000000000 Z
11
+ date: 2023-02-05 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.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.3.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Dataform API V1beta1