Class: SDM::AWSInstanceProfile

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bind_interface: nil, egress_filter: nil, enable_env_variables: nil, healthy: nil, id: nil, name: nil, port_override: nil, proxy_cluster_id: nil, region: nil, role_arn: nil, role_external_id: nil, secret_store_id: nil, subdomain: nil, tags: nil) ⇒ AWSInstanceProfile

Returns a new instance of AWSInstanceProfile.



1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
# File 'lib/models/porcelain.rb', line 1136

def initialize(
  bind_interface: nil,
  egress_filter: nil,
  enable_env_variables: nil,
  healthy: nil,
  id: nil,
  name: nil,
  port_override: nil,
  proxy_cluster_id: nil,
  region: nil,
  role_arn: nil,
  role_external_id: nil,
  secret_store_id: nil,
  subdomain: nil,
  tags: nil
)
  @bind_interface = bind_interface == nil ? "" : bind_interface
  @egress_filter = egress_filter == nil ? "" : egress_filter
  @enable_env_variables = enable_env_variables == nil ? false : enable_env_variables
  @healthy = healthy == nil ? false : healthy
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
  @port_override = port_override == nil ? 0 : port_override
  @proxy_cluster_id = proxy_cluster_id == nil ? "" : proxy_cluster_id
  @region = region == nil ? "" : region
  @role_arn = role_arn == nil ? "" : role_arn
  @role_external_id = role_external_id == nil ? "" : role_external_id
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
  @subdomain = subdomain == nil ? "" : subdomain
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
end

Instance Attribute Details

#bind_interfaceObject

The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.



1108
1109
1110
# File 'lib/models/porcelain.rb', line 1108

def bind_interface
  @bind_interface
end

#egress_filterObject

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



1110
1111
1112
# File 'lib/models/porcelain.rb', line 1110

def egress_filter
  @egress_filter
end

#enable_env_variablesObject

If true, prefer environment variables to authenticate connection even if EC2 roles are configured.



1112
1113
1114
# File 'lib/models/porcelain.rb', line 1112

def enable_env_variables
  @enable_env_variables
end

#healthyObject

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



1114
1115
1116
# File 'lib/models/porcelain.rb', line 1114

def healthy
  @healthy
end

#idObject

Unique identifier of the Resource.



1116
1117
1118
# File 'lib/models/porcelain.rb', line 1116

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



1118
1119
1120
# File 'lib/models/porcelain.rb', line 1118

def name
  @name
end

#port_overrideObject

The local port used by clients to connect to this resource. It is automatically generated if not provided on create and may be re-generated on update by specifying a value of -1.



1120
1121
1122
# File 'lib/models/porcelain.rb', line 1120

def port_override
  @port_override
end

#proxy_cluster_idObject

ID of the proxy cluster for this resource, if any.



1122
1123
1124
# File 'lib/models/porcelain.rb', line 1122

def proxy_cluster_id
  @proxy_cluster_id
end

#regionObject

The AWS region to connect to.



1124
1125
1126
# File 'lib/models/porcelain.rb', line 1124

def region
  @region
end

#role_arnObject

The role to assume after logging in.



1126
1127
1128
# File 'lib/models/porcelain.rb', line 1126

def role_arn
  @role_arn
end

#role_external_idObject

The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.



1128
1129
1130
# File 'lib/models/porcelain.rb', line 1128

def role_external_id
  @role_external_id
end

#secret_store_idObject

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



1130
1131
1132
# File 'lib/models/porcelain.rb', line 1130

def secret_store_id
  @secret_store_id
end

#subdomainObject

DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.



1132
1133
1134
# File 'lib/models/porcelain.rb', line 1132

def subdomain
  @subdomain
end

#tagsObject

Tags is a map of key, value pairs.



1134
1135
1136
# File 'lib/models/porcelain.rb', line 1134

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



1168
1169
1170
1171
1172
1173
1174
# File 'lib/models/porcelain.rb', line 1168

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