google-apis-dataform_v1beta1 0.13.0 → 0.14.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7483d994e8ec6e6f202fda8fab7f1791caacd0189946acd6617ea13dbd97f8a
|
4
|
+
data.tar.gz: 4cbdc637e6b64c434fb89a78138838c003324806fd26c9ec64ce42e9efcbbd2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3a666c9845b7a06b8584ea2a2540f57db4ee41fd04a27944bd6f00869c2eb0471135bb7ccf0b81bbb6f0eb320283a96c8274a04cfc048b922bec59458eb6cd2
|
7
|
+
data.tar.gz: 9e07eb766f721b2f6c987b0635cd958ea067d10b5398be25f31c3c90c27fb9ad3aacf0256337c11ca7c5221573cb82f8b782104938a2c0ee9888dc388a86ee35
|
data/CHANGELOG.md
CHANGED
@@ -895,6 +895,11 @@ module Google
|
|
895
895
|
# @return [String]
|
896
896
|
attr_accessor :default_branch
|
897
897
|
|
898
|
+
# Configures fields for performing SSH authentication.
|
899
|
+
# Corresponds to the JSON property `sshAuthenticationConfig`
|
900
|
+
# @return [Google::Apis::DataformV1beta1::SshAuthenticationConfig]
|
901
|
+
attr_accessor :ssh_authentication_config
|
902
|
+
|
898
903
|
# Output only. Deprecated: The field does not contain any token status
|
899
904
|
# information. Instead use https://cloud.google.com/dataform/reference/rest/
|
900
905
|
# v1beta1/projects.locations.repositories/computeAccessTokenStatus
|
@@ -915,6 +920,7 @@ module Google
|
|
915
920
|
def update!(**args)
|
916
921
|
@authentication_token_secret_version = args[:authentication_token_secret_version] if args.key?(:authentication_token_secret_version)
|
917
922
|
@default_branch = args[:default_branch] if args.key?(:default_branch)
|
923
|
+
@ssh_authentication_config = args[:ssh_authentication_config] if args.key?(:ssh_authentication_config)
|
918
924
|
@token_status = args[:token_status] if args.key?(:token_status)
|
919
925
|
@url = args[:url] if args.key?(:url)
|
920
926
|
end
|
@@ -2317,6 +2323,34 @@ module Google
|
|
2317
2323
|
end
|
2318
2324
|
end
|
2319
2325
|
|
2326
|
+
# Configures fields for performing SSH authentication.
|
2327
|
+
class SshAuthenticationConfig
|
2328
|
+
include Google::Apis::Core::Hashable
|
2329
|
+
|
2330
|
+
# Required. Content of a public SSH key to verify an identity of a remote Git
|
2331
|
+
# host.
|
2332
|
+
# Corresponds to the JSON property `hostPublicKey`
|
2333
|
+
# @return [String]
|
2334
|
+
attr_accessor :host_public_key
|
2335
|
+
|
2336
|
+
# Required. The name of the Secret Manager secret version to use as a ssh
|
2337
|
+
# private key for Git operations. Must be in the format `projects/*/secrets/*/
|
2338
|
+
# versions/*`.
|
2339
|
+
# Corresponds to the JSON property `userPrivateKeySecretVersion`
|
2340
|
+
# @return [String]
|
2341
|
+
attr_accessor :user_private_key_secret_version
|
2342
|
+
|
2343
|
+
def initialize(**args)
|
2344
|
+
update!(**args)
|
2345
|
+
end
|
2346
|
+
|
2347
|
+
# Update properties of this object
|
2348
|
+
def update!(**args)
|
2349
|
+
@host_public_key = args[:host_public_key] if args.key?(:host_public_key)
|
2350
|
+
@user_private_key_secret_version = args[:user_private_key_secret_version] if args.key?(:user_private_key_secret_version)
|
2351
|
+
end
|
2352
|
+
end
|
2353
|
+
|
2320
2354
|
# The `Status` type defines a logical error model that is suitable for different
|
2321
2355
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
2322
2356
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -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.14.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 = "
|
25
|
+
REVISION = "20230812"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -424,6 +424,12 @@ module Google
|
|
424
424
|
include Google::Apis::Core::JsonObjectSupport
|
425
425
|
end
|
426
426
|
|
427
|
+
class SshAuthenticationConfig
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
427
433
|
class Status
|
428
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
435
|
|
@@ -757,6 +763,8 @@ module Google
|
|
757
763
|
class Representation < Google::Apis::Core::JsonRepresentation
|
758
764
|
property :authentication_token_secret_version, as: 'authenticationTokenSecretVersion'
|
759
765
|
property :default_branch, as: 'defaultBranch'
|
766
|
+
property :ssh_authentication_config, as: 'sshAuthenticationConfig', class: Google::Apis::DataformV1beta1::SshAuthenticationConfig, decorator: Google::Apis::DataformV1beta1::SshAuthenticationConfig::Representation
|
767
|
+
|
760
768
|
property :token_status, as: 'tokenStatus'
|
761
769
|
property :url, as: 'url'
|
762
770
|
end
|
@@ -1145,6 +1153,14 @@ module Google
|
|
1145
1153
|
end
|
1146
1154
|
end
|
1147
1155
|
|
1156
|
+
class SshAuthenticationConfig
|
1157
|
+
# @private
|
1158
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1159
|
+
property :host_public_key, as: 'hostPublicKey'
|
1160
|
+
property :user_private_key_secret_version, as: 'userPrivateKeySecretVersion'
|
1161
|
+
end
|
1162
|
+
end
|
1163
|
+
|
1148
1164
|
class Status
|
1149
1165
|
# @private
|
1150
1166
|
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.
|
4
|
+
version: 0.14.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-08-
|
11
|
+
date: 2023-08-27 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.14.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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Dataform API V1beta1
|