Class: Google::Apis::ConnectorsV1::AuthConfig
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::AuthConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
AuthConfig defines details of a authentication type.
Instance Attribute Summary collapse
-
#additional_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariable>
Optional.
-
#auth_key ⇒ String
Optional.
-
#auth_type ⇒ String
Optional.
-
#oauth2_auth_code_flow ⇒ Google::Apis::ConnectorsV1::Oauth2AuthCodeFlow
Parameters to support Oauth 2.0 Auth Code Grant Authentication.
-
#oauth2_auth_code_flow_google_managed ⇒ Google::Apis::ConnectorsV1::Oauth2AuthCodeFlowGoogleManaged
Parameters to support Oauth 2.0 Auth Code Grant Authentication using Google Provided OAuth Client.
-
#oauth2_client_credentials ⇒ Google::Apis::ConnectorsV1::Oauth2ClientCredentials
Parameters to support Oauth 2.0 Client Credentials Grant Authentication.
-
#oauth2_jwt_bearer ⇒ Google::Apis::ConnectorsV1::Oauth2JwtBearer
Parameters to support JSON Web Token (JWT) Profile for Oauth 2.0 Authorization Grant based authentication.
-
#ssh_public_key ⇒ Google::Apis::ConnectorsV1::SshPublicKey
Parameters to support Ssh public key Authentication.
-
#user_password ⇒ Google::Apis::ConnectorsV1::UserPassword
Parameters to support Username and Password Authentication.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AuthConfig
constructor
A new instance of AuthConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AuthConfig
Returns a new instance of AuthConfig.
196 197 198 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 196 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariable>
Optional. List containing additional auth configs.
Corresponds to the JSON property additionalVariables
148 149 150 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 148 def additional_variables @additional_variables end |
#auth_key ⇒ String
Optional. Identifier key for auth config
Corresponds to the JSON property authKey
153 154 155 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 153 def auth_key @auth_key end |
#auth_type ⇒ String
Optional. The type of authentication configured.
Corresponds to the JSON property authType
158 159 160 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 158 def auth_type @auth_type end |
#oauth2_auth_code_flow ⇒ Google::Apis::ConnectorsV1::Oauth2AuthCodeFlow
Parameters to support Oauth 2.0 Auth Code Grant Authentication. See https://
www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.
Corresponds to the JSON property oauth2AuthCodeFlow
164 165 166 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 164 def oauth2_auth_code_flow @oauth2_auth_code_flow end |
#oauth2_auth_code_flow_google_managed ⇒ Google::Apis::ConnectorsV1::Oauth2AuthCodeFlowGoogleManaged
Parameters to support Oauth 2.0 Auth Code Grant Authentication using Google
Provided OAuth Client. See https://tools.ietf.org/html/rfc6749#section-1.3.1
for more details.
Corresponds to the JSON property oauth2AuthCodeFlowGoogleManaged
171 172 173 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 171 def oauth2_auth_code_flow_google_managed @oauth2_auth_code_flow_google_managed end |
#oauth2_client_credentials ⇒ Google::Apis::ConnectorsV1::Oauth2ClientCredentials
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
177 178 179 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 177 def oauth2_client_credentials @oauth2_client_credentials end |
#oauth2_jwt_bearer ⇒ Google::Apis::ConnectorsV1::Oauth2JwtBearer
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
184 185 186 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 184 def oauth2_jwt_bearer @oauth2_jwt_bearer end |
#ssh_public_key ⇒ Google::Apis::ConnectorsV1::SshPublicKey
Parameters to support Ssh public key Authentication.
Corresponds to the JSON property sshPublicKey
189 190 191 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 189 def ssh_public_key @ssh_public_key end |
#user_password ⇒ Google::Apis::ConnectorsV1::UserPassword
Parameters to support Username and Password Authentication.
Corresponds to the JSON property userPassword
194 195 196 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 194 def user_password @user_password end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 201 def update!(**args) @additional_variables = args[:additional_variables] if args.key?(:additional_variables) @auth_key = args[:auth_key] if args.key?(:auth_key) @auth_type = args[:auth_type] if args.key?(:auth_type) @oauth2_auth_code_flow = args[:oauth2_auth_code_flow] if args.key?(:oauth2_auth_code_flow) @oauth2_auth_code_flow_google_managed = args[:oauth2_auth_code_flow_google_managed] if args.key?(:oauth2_auth_code_flow_google_managed) @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 |