Class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfig
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfig
- 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
AuthConfig defines details of a authentication type.
Instance Attribute Summary collapse
-
#additional_variables ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable>
List containing additional auth configs.
-
#auth_type ⇒ String
The type of authentication configured.
-
#oauth2_client_credentials ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials
Parameters to support Oauth 2.0 Client Credentials Grant Authentication.
-
#oauth2_jwt_bearer ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer
Parameters to support JSON Web Token (JWT) Profile for Oauth 2.0 Authorization Grant based authentication.
-
#ssh_public_key ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigSshPublicKey
Parameters to support Ssh public key Authentication.
-
#user_password ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigUserPassword
Parameters to support Username and Password Authentication.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudConnectorsV1AuthConfig
constructor
A new instance of GoogleCloudConnectorsV1AuthConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudConnectorsV1AuthConfig
Returns a new instance of GoogleCloudConnectorsV1AuthConfig.
4800 4801 4802 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4800 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_variables ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable>
List containing additional auth configs.
Corresponds to the JSON property additionalVariables
4770 4771 4772 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4770 def additional_variables @additional_variables end |
#auth_type ⇒ String
The type of authentication configured.
Corresponds to the JSON property authType
4775 4776 4777 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4775 def auth_type @auth_type end |
#oauth2_client_credentials ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials
Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See
https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
Corresponds to the JSON property oauth2ClientCredentials
4781 4782 4783 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4781 def oauth2_client_credentials @oauth2_client_credentials end |
#oauth2_jwt_bearer ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer
Parameters to support JSON Web Token (JWT) Profile for Oauth 2.0 Authorization
Grant based authentication. See https://tools.ietf.org/html/rfc7523 for more
details.
Corresponds to the JSON property oauth2JwtBearer
4788 4789 4790 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4788 def oauth2_jwt_bearer @oauth2_jwt_bearer end |
#ssh_public_key ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigSshPublicKey
Parameters to support Ssh public key Authentication.
Corresponds to the JSON property sshPublicKey
4793 4794 4795 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4793 def ssh_public_key @ssh_public_key end |
#user_password ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigUserPassword
Parameters to support Username and Password Authentication.
Corresponds to the JSON property userPassword
4798 4799 4800 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4798 def user_password @user_password end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4805 4806 4807 4808 4809 4810 4811 4812 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4805 def update!(**args) @additional_variables = args[:additional_variables] if args.key?(:additional_variables) @auth_type = args[:auth_type] if args.key?(:auth_type) @oauth2_client_credentials = args[:oauth2_client_credentials] if args.key?(:oauth2_client_credentials) @oauth2_jwt_bearer = args[:oauth2_jwt_bearer] if args.key?(:oauth2_jwt_bearer) @ssh_public_key = args[:ssh_public_key] if args.key?(:ssh_public_key) @user_password = args[:user_password] if args.key?(:user_password) end |