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.



3700
3701
3702
# File 'lib/google/apis/connectors_v1/classes.rb', line 3700

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

Instance Attribute Details

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

List of AuthSchemas. Corresponds to the JSON property authSchemas



3693
3694
3695
# File 'lib/google/apis/connectors_v1/classes.rb', line 3693

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



3698
3699
3700
# File 'lib/google/apis/connectors_v1/classes.rb', line 3698

def json_schema
  @json_schema
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3705
3706
3707
3708
# File 'lib/google/apis/connectors_v1/classes.rb', line 3705

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