Class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigSshPublicKey

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudConnectorsV1AuthConfigSshPublicKey

Returns a new instance of GoogleCloudConnectorsV1AuthConfigSshPublicKey.



5096
5097
5098
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5096

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cert_typeString

Format of SSH Client cert. Corresponds to the JSON property certType

Returns:

  • (String)


5079
5080
5081
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5079

def cert_type
  @cert_type
end

#ssh_client_certGoogle::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret

Secret provides a reference to entries in Secret Manager. Corresponds to the JSON property sshClientCert



5084
5085
5086
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5084

def ssh_client_cert
  @ssh_client_cert
end

#ssh_client_cert_passGoogle::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret

Secret provides a reference to entries in Secret Manager. Corresponds to the JSON property sshClientCertPass



5089
5090
5091
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5089

def ssh_client_cert_pass
  @ssh_client_cert_pass
end

#usernameString

The user account used to authenticate. Corresponds to the JSON property username

Returns:

  • (String)


5094
5095
5096
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5094

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5101
5102
5103
5104
5105
5106
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5101

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