google-apis-dataform_v1beta1 0.58.0 → 0.59.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7953cce1328d83bc548a5c6844e1c85d0086b96d906c2cad51d65b7e888b97bf
|
|
4
|
+
data.tar.gz: b7aa89d0ea4439f428b5dffa05f7b87e435a73eeeaed69d0294878eef2056118
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d5a9253078ae3483ae596e9d3cc15150b992432d57fdc5cfbcb697830fc498a883866d3f5d2d0cd7732f9b4d436538c6be0f3d9a2f88498821cc412647c665a
|
|
7
|
+
data.tar.gz: acad9510639858674fc71efc321fa288d02f4d0d0076d9b9c86b088b3e076eb44ca819650be9940c37042b47c9e9c1e59daab4d8f3fea865dbc1d4041d004d62
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-dataform_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.59.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260607
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.58.0 (2026-05-24)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260515
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/dataform/docs) may provide
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -1579,6 +1579,13 @@ module Google
|
|
|
1579
1579
|
# @return [String]
|
|
1580
1580
|
attr_accessor :effective_default_branch
|
|
1581
1581
|
|
|
1582
|
+
# Optional. Resource name for the GitRepositoryLink used for machine credentials.
|
|
1583
|
+
# Must be in the format `projects/*/locations/*/connections/*/
|
|
1584
|
+
# gitRepositoryLinks/*`
|
|
1585
|
+
# Corresponds to the JSON property `gitRepositoryLink`
|
|
1586
|
+
# @return [String]
|
|
1587
|
+
attr_accessor :git_repository_link
|
|
1588
|
+
|
|
1582
1589
|
# Configures fields for performing SSH authentication.
|
|
1583
1590
|
# Corresponds to the JSON property `sshAuthenticationConfig`
|
|
1584
1591
|
# @return [Google::Apis::DataformV1beta1::SshAuthenticationConfig]
|
|
@@ -1605,6 +1612,7 @@ module Google
|
|
|
1605
1612
|
@authentication_token_secret_version = args[:authentication_token_secret_version] if args.key?(:authentication_token_secret_version)
|
|
1606
1613
|
@default_branch = args[:default_branch] if args.key?(:default_branch)
|
|
1607
1614
|
@effective_default_branch = args[:effective_default_branch] if args.key?(:effective_default_branch)
|
|
1615
|
+
@git_repository_link = args[:git_repository_link] if args.key?(:git_repository_link)
|
|
1608
1616
|
@ssh_authentication_config = args[:ssh_authentication_config] if args.key?(:ssh_authentication_config)
|
|
1609
1617
|
@token_status = args[:token_status] if args.key?(:token_status)
|
|
1610
1618
|
@url = args[:url] if args.key?(:url)
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.59.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260607"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1275,6 +1275,7 @@ module Google
|
|
|
1275
1275
|
property :authentication_token_secret_version, as: 'authenticationTokenSecretVersion'
|
|
1276
1276
|
property :default_branch, as: 'defaultBranch'
|
|
1277
1277
|
property :effective_default_branch, as: 'effectiveDefaultBranch'
|
|
1278
|
+
property :git_repository_link, as: 'gitRepositoryLink'
|
|
1278
1279
|
property :ssh_authentication_config, as: 'sshAuthenticationConfig', class: Google::Apis::DataformV1beta1::SshAuthenticationConfig, decorator: Google::Apis::DataformV1beta1::SshAuthenticationConfig::Representation
|
|
1279
1280
|
|
|
1280
1281
|
property :token_status, as: 'tokenStatus'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dataform_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.59.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.59.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|