google-apis-dataform_v1beta1 0.13.0 → 0.15.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/dataform_v1beta1/classes.rb +34 -0
- data/lib/google/apis/dataform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/dataform_v1beta1/representations.rb +16 -0
- data/lib/google/apis/dataform_v1beta1/service.rb +2 -1
- data/lib/google/apis/dataform_v1beta1.rb +2 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17ecfff7f7bce4526eb14b1690168a0df423558eb1cd6896184ec2a0fe64b561
|
4
|
+
data.tar.gz: 7e50006f24503dd6aafca7b0c8e376d7280526d86c8d4cf1c12ffcb2557dfc5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 777b2d31c07cb96b35ddbdc3952851f43e1efc068aff50ea3a0f463c013f399a5c048f44a574e342b70fe0be86e2cd710a3dac5700f1c64da67e52020a9b6203
|
7
|
+
data.tar.gz: 39a915fd6f0c0a7261ce6136f3f63f13aa9e3c2c6e2e20bfa30279760e4b0b85e1b56a2a41a3aa7915beebc34dc631b062c9c976a6f11b9325678f7b8dd34e4f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataform_v1beta1
|
2
2
|
|
3
|
+
### v0.15.0 (2023-09-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230909
|
6
|
+
|
7
|
+
### v0.14.0 (2023-08-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230812
|
10
|
+
|
3
11
|
### v0.13.0 (2023-08-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230805
|
@@ -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.15.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 = "20230909"
|
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.15.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-
|
11
|
+
date: 2023-09-17 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.15.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
|