Class: StackOne::Models::Shared::PatchAccountExternalDto

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/stack_one/models/shared/patchaccountexternaldto.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(authentication_config_key: nil, credentials: nil, environment: nil, integration_id: nil, label: nil, metadata: nil, origin_owner_id: nil, origin_owner_name: nil, origin_username: nil, provider: nil, secrets: nil, setup_information: nil, shared: nil, type: nil) ⇒ PatchAccountExternalDto

Returns a new instance of PatchAccountExternalDto.



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/stack_one/models/shared/patchaccountexternaldto.rb', line 45

def initialize(authentication_config_key: nil, credentials: nil, environment: nil, integration_id: nil, label: nil, metadata: nil, origin_owner_id: nil, origin_owner_name: nil, origin_username: nil, provider: nil, secrets: nil, setup_information: nil, shared: nil, type: nil)
  @authentication_config_key = authentication_config_key
  @credentials = credentials
  @environment = environment
  @integration_id = integration_id
  @label = label
  @metadata = 
  @origin_owner_id = origin_owner_id
  @origin_owner_name = origin_owner_name
  @origin_username = origin_username
  @provider = provider
  @secrets = secrets
  @setup_information = setup_information
  @shared = shared
  @type = type
end

Instance Method Details

#==(other) ⇒ Object



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/stack_one/models/shared/patchaccountexternaldto.rb', line 63

def ==(other)
  return false unless other.is_a? self.class
  return false unless @authentication_config_key == other.authentication_config_key
  return false unless @credentials == other.credentials
  return false unless @environment == other.environment
  return false unless @integration_id == other.integration_id
  return false unless @label == other.label
  return false unless @metadata == other.
  return false unless @origin_owner_id == other.origin_owner_id
  return false unless @origin_owner_name == other.origin_owner_name
  return false unless @origin_username == other.origin_username
  return false unless @provider == other.provider
  return false unless @secrets == other.secrets
  return false unless @setup_information == other.setup_information
  return false unless @shared == other.shared
  return false unless @type == other.type
  true
end