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.



3621
3622
3623
# File 'lib/google/apis/connectors_v1/classes.rb', line 3621

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

Instance Attribute Details

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

List of AuthSchemas. Corresponds to the JSON property authSchemas



3614
3615
3616
# File 'lib/google/apis/connectors_v1/classes.rb', line 3614

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



3619
3620
3621
# File 'lib/google/apis/connectors_v1/classes.rb', line 3619

def json_schema
  @json_schema
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3626
3627
3628
3629
# File 'lib/google/apis/connectors_v1/classes.rb', line 3626

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