Class: Google::Apis::ConnectorsV1::FetchAuthSchemaResponse
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::FetchAuthSchemaResponse
- 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
Response message for Connectors.GetAuthSchema.
Instance Attribute Summary collapse
-
#auth_schemas ⇒ Array<Google::Apis::ConnectorsV1::AuthSchema>
List of AuthSchemas.
-
#json_schema ⇒ Google::Apis::ConnectorsV1::JsonAuthSchema
JsonAuthSchema defines the JSON schema of all authentication types.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FetchAuthSchemaResponse
constructor
A new instance of FetchAuthSchemaResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FetchAuthSchemaResponse
Returns a new instance of FetchAuthSchemaResponse.
2867 2868 2869 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2867 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auth_schemas ⇒ Array<Google::Apis::ConnectorsV1::AuthSchema>
List of AuthSchemas.
Corresponds to the JSON property authSchemas
2860 2861 2862 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2860 def auth_schemas @auth_schemas end |
#json_schema ⇒ Google::Apis::ConnectorsV1::JsonAuthSchema
JsonAuthSchema defines the JSON schema of all authentication types.
Corresponds to the JSON property jsonSchema
2865 2866 2867 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2865 def json_schema @json_schema end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2872 2873 2874 2875 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2872 def update!(**args) @auth_schemas = args[:auth_schemas] if args.key?(:auth_schemas) @json_schema = args[:json_schema] if args.key?(:json_schema) end |