Class: Aws::SMS::Types::Server
- Inherits:
-
Struct
- Object
- Struct
- Aws::SMS::Types::Server
- Defined in:
- gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb
Overview
Note:
When making an API call, you may pass Server data as a hash:
{
server_id: "ServerId",
server_type: "VIRTUAL_MACHINE", # accepts VIRTUAL_MACHINE
vm_server: {
vm_server_address: {
vm_manager_id: "VmManagerId",
vm_id: "VmId",
},
vm_name: "VmName",
vm_manager_name: "VmManagerName",
vm_manager_type: "VSPHERE", # accepts VSPHERE, SCVMM, HYPERV-MANAGER
vm_path: "VmPath",
},
replication_job_id: "ReplicationJobId",
replication_job_terminated: false,
}
Represents a server.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#replication_job_id ⇒ String
The ID of the replication job.
-
#replication_job_terminated ⇒ Boolean
Indicates whether the replication job is deleted or failed.
-
#server_id ⇒ String
The ID of the server.
-
#server_type ⇒ String
The type of server.
-
#vm_server ⇒ Types::VmServer
Information about the VM server.
Instance Attribute Details
#replication_job_id ⇒ String
The ID of the replication job.
2003 2004 2005 2006 2007 2008 2009 2010 2011 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2003 class Server < Struct.new( :server_id, :server_type, :vm_server, :replication_job_id, :replication_job_terminated) SENSITIVE = [] include Aws::Structure end |
#replication_job_terminated ⇒ Boolean
Indicates whether the replication job is deleted or failed.
2003 2004 2005 2006 2007 2008 2009 2010 2011 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2003 class Server < Struct.new( :server_id, :server_type, :vm_server, :replication_job_id, :replication_job_terminated) SENSITIVE = [] include Aws::Structure end |
#server_id ⇒ String
The ID of the server.
2003 2004 2005 2006 2007 2008 2009 2010 2011 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2003 class Server < Struct.new( :server_id, :server_type, :vm_server, :replication_job_id, :replication_job_terminated) SENSITIVE = [] include Aws::Structure end |
#server_type ⇒ String
The type of server.
2003 2004 2005 2006 2007 2008 2009 2010 2011 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2003 class Server < Struct.new( :server_id, :server_type, :vm_server, :replication_job_id, :replication_job_terminated) SENSITIVE = [] include Aws::Structure end |
#vm_server ⇒ Types::VmServer
Information about the VM server.
2003 2004 2005 2006 2007 2008 2009 2010 2011 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2003 class Server < Struct.new( :server_id, :server_type, :vm_server, :replication_job_id, :replication_job_terminated) SENSITIVE = [] include Aws::Structure end |