Class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigSshPublicKey
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigSshPublicKey
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
Parameters to support Ssh public key Authentication.
Instance Attribute Summary collapse
-
#cert_type ⇒ String
Format of SSH Client cert.
-
#ssh_client_cert ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
-
#ssh_client_cert_pass ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
-
#username ⇒ String
The user account used to authenticate.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudConnectorsV1AuthConfigSshPublicKey
constructor
A new instance of GoogleCloudConnectorsV1AuthConfigSshPublicKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudConnectorsV1AuthConfigSshPublicKey
Returns a new instance of GoogleCloudConnectorsV1AuthConfigSshPublicKey.
4929 4930 4931 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4929 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cert_type ⇒ String
Format of SSH Client cert.
Corresponds to the JSON property certType
4912 4913 4914 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4912 def cert_type @cert_type end |
#ssh_client_cert ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
Corresponds to the JSON property sshClientCert
4917 4918 4919 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4917 def ssh_client_cert @ssh_client_cert end |
#ssh_client_cert_pass ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
Corresponds to the JSON property sshClientCertPass
4922 4923 4924 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4922 def ssh_client_cert_pass @ssh_client_cert_pass end |
#username ⇒ String
The user account used to authenticate.
Corresponds to the JSON property username
4927 4928 4929 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4927 def username @username end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4934 4935 4936 4937 4938 4939 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4934 def update!(**args) @cert_type = args[:cert_type] if args.key?(:cert_type) @ssh_client_cert = args[:ssh_client_cert] if args.key?(:ssh_client_cert) @ssh_client_cert_pass = args[:ssh_client_cert_pass] if args.key?(:ssh_client_cert_pass) @username = args[:username] if args.key?(:username) end |