class SDM::Azure

Attributes

app_id[RW]
egress_filter[RW]

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

healthy[RW]

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

id[RW]

Unique identifier of the Resource.

name[RW]

Unique human-readable name of the Resource.

password[RW]
secret_store_id[RW]

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

tags[RW]

Tags is a map of key, value pairs.

tenant_id[RW]

Public Class Methods

new( app_id:nil \ , egress_filter:nil \ , healthy:nil \ , id:nil \ , name:nil \ , password:nil \ , secret_store_id:nil \ , tags:nil \ , tenant_id:nil \ ) click to toggle source
# File lib/models/porcelain.rb, line 1748
                def initialize(
                        app_id:nil \
,
                        egress_filter:nil \
,
                        healthy:nil \
,
                        id:nil \
,
                        name:nil \
,
                        password:nil \
,
                        secret_store_id:nil \
,
                        tags:nil \
,
                        tenant_id:nil \
                )
                        if app_id != nil
                                @app_id = app_id
                        end
                        if egress_filter != nil
                                @egress_filter = egress_filter
                        end
                        if healthy != nil
                                @healthy = healthy
                        end
                        if id != nil
                                @id = id
                        end
                        if name != nil
                                @name = name
                        end
                        if password != nil
                                @password = password
                        end
                        if secret_store_id != nil
                                @secret_store_id = secret_store_id
                        end
                        if tags != nil
                                @tags = tags
                        end
                        if tenant_id != nil
                                @tenant_id = tenant_id
                        end
                end

Public Instance Methods

to_json(options={}) click to toggle source
# File lib/models/porcelain.rb, line 1795
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