Class: SDM::GoogleGKE

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, certificate_authority: nil, egress_filter: nil, endpoint: nil, healthcheck_namespace: nil, healthy: nil, id: nil, name: nil, port_override: nil, remote_identity_group_id: nil, remote_identity_healthcheck_username: nil, secret_store_id: nil, service_account_key: nil, subdomain: nil, tags: nil) ⇒ GoogleGKE

Returns a new instance of GoogleGKE.



4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
# File 'lib/models/porcelain.rb', line 4335

def initialize(
  bind_interface: nil,
  certificate_authority: nil,
  egress_filter: nil,
  endpoint: nil,
  healthcheck_namespace: nil,
  healthy: nil,
  id: nil,
  name: nil,
  port_override: nil,
  remote_identity_group_id: nil,
  remote_identity_healthcheck_username: nil,
  secret_store_id: nil,
  service_account_key: nil,
  subdomain: nil,
  tags: nil
)
  @bind_interface = bind_interface == nil ? "" : bind_interface
  @certificate_authority = certificate_authority == nil ? "" : certificate_authority
  @egress_filter = egress_filter == nil ? "" : egress_filter
  @endpoint = endpoint == nil ? "" : endpoint
  @healthcheck_namespace = healthcheck_namespace == nil ? "" : healthcheck_namespace
  @healthy = healthy == nil ? false : healthy
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
  @port_override = port_override == nil ? 0 : port_override
  @remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
  @remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
  @service_account_key =  == nil ? "" : 
  @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.



4305
4306
4307
# File 'lib/models/porcelain.rb', line 4305

def bind_interface
  @bind_interface
end

#certificate_authorityObject

The CA to authenticate TLS connections with.



4307
4308
4309
# File 'lib/models/porcelain.rb', line 4307

def certificate_authority
  @certificate_authority
end

#egress_filterObject

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



4309
4310
4311
# File 'lib/models/porcelain.rb', line 4309

def egress_filter
  @egress_filter
end

#endpointObject

The endpoint to dial.



4311
4312
4313
# File 'lib/models/porcelain.rb', line 4311

def endpoint
  @endpoint
end

#healthcheck_namespaceObject

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



4313
4314
4315
# File 'lib/models/porcelain.rb', line 4313

def healthcheck_namespace
  @healthcheck_namespace
end

#healthyObject

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



4315
4316
4317
# File 'lib/models/porcelain.rb', line 4315

def healthy
  @healthy
end

#idObject

Unique identifier of the Resource.



4317
4318
4319
# File 'lib/models/porcelain.rb', line 4317

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



4319
4320
4321
# File 'lib/models/porcelain.rb', line 4319

def name
  @name
end

#port_overrideObject

The local port used by clients to connect to this resource.



4321
4322
4323
# File 'lib/models/porcelain.rb', line 4321

def port_override
  @port_override
end

#remote_identity_group_idObject

The ID of the remote identity group to use for remote identity connections.



4323
4324
4325
# File 'lib/models/porcelain.rb', line 4323

def remote_identity_group_id
  @remote_identity_group_id
end

#remote_identity_healthcheck_usernameObject

The username to use for healthchecks, when clients otherwise connect with their own remote identity username.



4325
4326
4327
# File 'lib/models/porcelain.rb', line 4325

def remote_identity_healthcheck_username
  @remote_identity_healthcheck_username
end

#secret_store_idObject

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



4327
4328
4329
# File 'lib/models/porcelain.rb', line 4327

def secret_store_id
  @secret_store_id
end

#service_account_keyObject

The service account key to authenticate with.



4329
4330
4331
# File 'lib/models/porcelain.rb', line 4329

def 
  @service_account_key
end

#subdomainObject

Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)



4331
4332
4333
# File 'lib/models/porcelain.rb', line 4331

def subdomain
  @subdomain
end

#tagsObject

Tags is a map of key, value pairs.



4333
4334
4335
# File 'lib/models/porcelain.rb', line 4333

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



4369
4370
4371
4372
4373
4374
4375
# File 'lib/models/porcelain.rb', line 4369

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