Class: SDM::AmazonEKSUserImpersonation

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(access_key: nil, certificate_authority: nil, cluster_name: nil, egress_filter: nil, endpoint: nil, healthcheck_namespace: nil, healthy: nil, id: nil, name: nil, region: nil, role_arn: nil, role_external_id: nil, secret_access_key: nil, secret_store_id: nil, tags: nil) ⇒ AmazonEKSUserImpersonation

Returns a new instance of AmazonEKSUserImpersonation.



1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
# File 'lib/models/porcelain.rb', line 1088

def initialize(
  access_key: nil,
  certificate_authority: nil,
  cluster_name: nil,
  egress_filter: nil,
  endpoint: nil,
  healthcheck_namespace: nil,
  healthy: nil,
  id: nil,
  name: nil,
  region: nil,
  role_arn: nil,
  role_external_id: nil,
  secret_access_key: nil,
  secret_store_id: nil,
  tags: nil
)
  if access_key != nil
    @access_key = access_key
  end
  if certificate_authority != nil
    @certificate_authority = certificate_authority
  end
  if cluster_name != nil
    @cluster_name = cluster_name
  end
  if egress_filter != nil
    @egress_filter = egress_filter
  end
  if endpoint != nil
    @endpoint = endpoint
  end
  if healthcheck_namespace != nil
    @healthcheck_namespace = healthcheck_namespace
  end
  if healthy != nil
    @healthy = healthy
  end
  if id != nil
    @id = id
  end
  if name != nil
    @name = name
  end
  if region != nil
    @region = region
  end
  if role_arn != nil
    @role_arn = role_arn
  end
  if role_external_id != nil
    @role_external_id = role_external_id
  end
  if secret_access_key != nil
    @secret_access_key = secret_access_key
  end
  if secret_store_id != nil
    @secret_store_id = secret_store_id
  end
  if tags != nil
    @tags = tags
  end
end

Instance Attribute Details

#access_keyObject

Returns the value of attribute access_key.



1058
1059
1060
# File 'lib/models/porcelain.rb', line 1058

def access_key
  @access_key
end

#certificate_authorityObject

Returns the value of attribute certificate_authority.



1060
1061
1062
# File 'lib/models/porcelain.rb', line 1060

def certificate_authority
  @certificate_authority
end

#cluster_nameObject

Returns the value of attribute cluster_name.



1062
1063
1064
# File 'lib/models/porcelain.rb', line 1062

def cluster_name
  @cluster_name
end

#egress_filterObject

A filter applied to the routing logic to pin datasource to nodes.



1064
1065
1066
# File 'lib/models/porcelain.rb', line 1064

def egress_filter
  @egress_filter
end

#endpointObject

Returns the value of attribute endpoint.



1066
1067
1068
# File 'lib/models/porcelain.rb', line 1066

def endpoint
  @endpoint
end

#healthcheck_namespaceObject

The path used to check the health of your connection. Defaults to ‘default`.



1068
1069
1070
# File 'lib/models/porcelain.rb', line 1068

def healthcheck_namespace
  @healthcheck_namespace
end

#healthyObject

True if the datasource is reachable and the credentials are valid.



1070
1071
1072
# File 'lib/models/porcelain.rb', line 1070

def healthy
  @healthy
end

#idObject

Unique identifier of the Resource.



1072
1073
1074
# File 'lib/models/porcelain.rb', line 1072

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



1074
1075
1076
# File 'lib/models/porcelain.rb', line 1074

def name
  @name
end

#regionObject

Returns the value of attribute region.



1076
1077
1078
# File 'lib/models/porcelain.rb', line 1076

def region
  @region
end

#role_arnObject

Returns the value of attribute role_arn.



1078
1079
1080
# File 'lib/models/porcelain.rb', line 1078

def role_arn
  @role_arn
end

#role_external_idObject

Returns the value of attribute role_external_id.



1080
1081
1082
# File 'lib/models/porcelain.rb', line 1080

def role_external_id
  @role_external_id
end

#secret_access_keyObject

Returns the value of attribute secret_access_key.



1082
1083
1084
# File 'lib/models/porcelain.rb', line 1082

def secret_access_key
  @secret_access_key
end

#secret_store_idObject

ID of the secret store containing credentials for this resource, if any.



1084
1085
1086
# File 'lib/models/porcelain.rb', line 1084

def secret_store_id
  @secret_store_id
end

#tagsObject

Tags is a map of key, value pairs.



1086
1087
1088
# File 'lib/models/porcelain.rb', line 1086

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



1152
1153
1154
1155
1156
1157
1158
# File 'lib/models/porcelain.rb', line 1152

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end