Class: Verizon::ResourcesEdgeHostedServiceWithProfileId
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- Verizon::ResourcesEdgeHostedServiceWithProfileId
- Defined in:
- lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb
Overview
Edge hosted service represented by Service Endpoint definition.
Instance Attribute Summary collapse
-
#application_id ⇒ String
Unique ID representing the Edge Application.
-
#application_server_provider_id ⇒ String
Unique ID representing the Edge Application Provider.
-
#ern ⇒ String
Edge Resource Name.
-
#service_description ⇒ String
Unique ID representing the Edge Application.
-
#service_endpoint ⇒ ResourcesServiceEndpoint
Service Endpoint path, address, and port.
-
#service_profile_id ⇒ String
The system assigned ID of the service profile.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(ern = SKIP, service_endpoint = SKIP, application_server_provider_id = SKIP, application_id = SKIP, service_description = SKIP, service_profile_id = SKIP) ⇒ ResourcesEdgeHostedServiceWithProfileId
constructor
A new instance of ResourcesEdgeHostedServiceWithProfileId.
Methods inherited from BaseModel
Constructor Details
#initialize(ern = SKIP, service_endpoint = SKIP, application_server_provider_id = SKIP, application_id = SKIP, service_description = SKIP, service_profile_id = SKIP) ⇒ ResourcesEdgeHostedServiceWithProfileId
Returns a new instance of ResourcesEdgeHostedServiceWithProfileId.
65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 65 def initialize(ern = SKIP, service_endpoint = SKIP, application_server_provider_id = SKIP, application_id = SKIP, service_description = SKIP, service_profile_id = SKIP) @ern = ern unless ern == SKIP @service_endpoint = service_endpoint unless service_endpoint == SKIP unless application_server_provider_id == SKIP @application_server_provider_id = application_server_provider_id end @application_id = application_id unless application_id == SKIP @service_description = service_description unless service_description == SKIP @service_profile_id = service_profile_id unless service_profile_id == SKIP end |
Instance Attribute Details
#application_id ⇒ String
Unique ID representing the Edge Application.
26 27 28 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 26 def application_id @application_id end |
#application_server_provider_id ⇒ String
Unique ID representing the Edge Application Provider.
22 23 24 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 22 def application_server_provider_id @application_server_provider_id end |
#ern ⇒ String
Edge Resource Name. A string identifier for a set of edge resources.
14 15 16 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 14 def ern @ern end |
#service_description ⇒ String
Unique ID representing the Edge Application.
30 31 32 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 30 def service_description @service_description end |
#service_endpoint ⇒ ResourcesServiceEndpoint
Service Endpoint path, address, and port.
18 19 20 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 18 def service_endpoint @service_endpoint end |
#service_profile_id ⇒ String
The system assigned ID of the service profile.
34 35 36 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 34 def service_profile_id @service_profile_id end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 80 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. ern = hash.key?('ern') ? hash['ern'] : SKIP service_endpoint = ResourcesServiceEndpoint.from_hash(hash['serviceEndpoint']) if hash['serviceEndpoint'] application_server_provider_id = hash.key?('applicationServerProviderId') ? hash['applicationServerProviderId'] : SKIP application_id = hash.key?('applicationId') ? hash['applicationId'] : SKIP service_description = hash.key?('serviceDescription') ? hash['serviceDescription'] : SKIP service_profile_id = hash.key?('serviceProfileID') ? hash['serviceProfileID'] : SKIP # Create object from extracted values. ResourcesEdgeHostedServiceWithProfileId.new(ern, service_endpoint, application_server_provider_id, application_id, service_description, service_profile_id) end |
.names ⇒ Object
A mapping from model property names to API property names.
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 37 def self.names @_hash = {} if @_hash.nil? @_hash['ern'] = 'ern' @_hash['service_endpoint'] = 'serviceEndpoint' @_hash['application_server_provider_id'] = 'applicationServerProviderId' @_hash['application_id'] = 'applicationId' @_hash['service_description'] = 'serviceDescription' @_hash['service_profile_id'] = 'serviceProfileID' @_hash end |
.nullables ⇒ Object
An array for nullable fields
61 62 63 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 61 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
49 50 51 52 53 54 55 56 57 58 |
# File 'lib/verizon/models/resources_edge_hosted_service_with_profile_id.rb', line 49 def self.optionals %w[ ern service_endpoint application_server_provider_id application_id service_description service_profile_id ] end |