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.



2867
2868
2869
# File 'lib/google/apis/connectors_v1/classes.rb', line 2867

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

Instance Attribute Details

#auth_schemasArray<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_schemaGoogle::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