google-apis-dataform_v1beta1 0.2.0 → 0.4.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: 9298af87b24f06107f559a46b1ba2c0f086cb691dce0b691bda35f3b8d4d519b
4
- data.tar.gz: 505e645ea31f928afdfb2e35b90f4025077d88e3253bd26d11c97383a87ce6a0
3
+ metadata.gz: 6eb372f38ccd7649d159a5285eb01d8905e6563e914b1f2575c7a014c242ed0c
4
+ data.tar.gz: 506e00f73ac344cc5ed7a20443158488caa44bf7477582048a57f233b74d94ec
5
5
  SHA512:
6
- metadata.gz: 9c8a9d0f52cb8e0335b1bf5308726970e70f0a4eea8d015d8548ab41ce304b9c27624bab0806fa01c13df21272570b439e93f690a34662f5dc97becebfeaf856
7
- data.tar.gz: b78140987b280577b8ec1f4a10a4e7f3fbfc80e334c1b68d5639344343735942ce1cda80fb13c7df1e7d4f6cf179aac6791d7cf9cbb1ec8cb58261f6857d6159
6
+ metadata.gz: 4a4a033e3a88c59270483b1688da4c6c82f14820f154c53a1ee866f598c98b6a7aab3decaad35f39f8da0cd17c45874fd4ebae721edb19702987e6c70d171427
7
+ data.tar.gz: aa5b460d739ceee08e837faea313be45e43cfc835806a056c1c32ef638e119899ece8ba8db837e1df7689df1d8ac10037a154b05f425739b649c9be8f7a46435
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.4.0 (2023-02-19)
4
+
5
+ * Regenerated using generator version 0.12.0
6
+
7
+ ### v0.3.0 (2023-02-05)
8
+
9
+ * Regenerated from discovery document revision 20230128
10
+
3
11
  ### v0.2.0 (2023-01-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20230107
@@ -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
 
@@ -2060,6 +2073,45 @@ module Google
2060
2073
  end
2061
2074
  end
2062
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
+
2063
2115
  # `WriteFile` request message.
2064
2116
  class WriteFileRequest
2065
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.2.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230107"
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
 
@@ -996,6 +1004,15 @@ module Google
996
1004
  end
997
1005
  end
998
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
+
999
1016
  class WriteFileRequest
1000
1017
  # @private
1001
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.2.0
4
+ version: 0.4.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-15 00:00:00.000000000 Z
11
+ date: 2023-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.4.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: []