Class: Google::Apis::CesV1::EndUserAuthConfig
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::EndUserAuthConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
End-user authentication configuration used for Connection calls. The field
values must be the names of context variables in the format $context.
variables..
Instance Attribute Summary collapse
-
#oauth2_auth_code_config ⇒ Google::Apis::CesV1::EndUserAuthConfigOauth2AuthCodeConfig
Oauth 2.0 Authorization Code authentication configuration.
-
#oauth2_jwt_bearer_config ⇒ Google::Apis::CesV1::EndUserAuthConfigOauth2JwtBearerConfig
JWT Profile Oauth 2.0 Authorization Grant authentication configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EndUserAuthConfig
constructor
A new instance of EndUserAuthConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EndUserAuthConfig
Returns a new instance of EndUserAuthConfig.
2759 2760 2761 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2759 def initialize(**args) update!(**args) end |
Instance Attribute Details
#oauth2_auth_code_config ⇒ Google::Apis::CesV1::EndUserAuthConfigOauth2AuthCodeConfig
Oauth 2.0 Authorization Code authentication configuration.
Corresponds to the JSON property oauth2AuthCodeConfig
2752 2753 2754 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2752 def oauth2_auth_code_config @oauth2_auth_code_config end |
#oauth2_jwt_bearer_config ⇒ Google::Apis::CesV1::EndUserAuthConfigOauth2JwtBearerConfig
JWT Profile Oauth 2.0 Authorization Grant authentication configuration.
Corresponds to the JSON property oauth2JwtBearerConfig
2757 2758 2759 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2757 def oauth2_jwt_bearer_config @oauth2_jwt_bearer_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2764 2765 2766 2767 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2764 def update!(**args) @oauth2_auth_code_config = args[:oauth2_auth_code_config] if args.key?(:oauth2_auth_code_config) @oauth2_jwt_bearer_config = args[:oauth2_jwt_bearer_config] if args.key?(:oauth2_jwt_bearer_config) end |