Class: Google::Apis::ConnectorsV1::FetchAuthSchemaResponse

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FetchAuthSchemaResponse

Returns a new instance of FetchAuthSchemaResponse.



3574
3575
3576
# File 'lib/google/apis/connectors_v1/classes.rb', line 3574

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

Instance Attribute Details

#auth_schemasArray<Google::Apis::ConnectorsV1::AuthSchema>

List of AuthSchemas. Corresponds to the JSON property authSchemas



3567
3568
3569
# File 'lib/google/apis/connectors_v1/classes.rb', line 3567

def auth_schemas
  @auth_schemas
end

#json_schemaGoogle::Apis::ConnectorsV1::JsonAuthSchema

JsonAuthSchema defines the JSON schema of all authentication types. Corresponds to the JSON property jsonSchema



3572
3573
3574
# File 'lib/google/apis/connectors_v1/classes.rb', line 3572

def json_schema
  @json_schema
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3579
3580
3581
3582
# File 'lib/google/apis/connectors_v1/classes.rb', line 3579

def update!(**args)
  @auth_schemas = args[:auth_schemas] if args.key?(:auth_schemas)
  @json_schema = args[:json_schema] if args.key?(:json_schema)
end