Class: Aws::SMS::Types::ServerGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::SMS::Types::ServerGroup
- Defined in:
- gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb
Overview
Note:
When making an API call, you may pass ServerGroup data as a hash:
{
server_group_id: "ServerGroupId",
name: "ServerGroupName",
server_list: [
{
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,
},
],
}
Logical grouping of servers.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of a server group.
-
#server_group_id ⇒ String
The ID of a server group.
-
#server_list ⇒ Array<Types::Server>
The servers that belong to a server group.
Instance Attribute Details
#name ⇒ String
The name of a server group.
2068 2069 2070 2071 2072 2073 2074 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2068 class ServerGroup < Struct.new( :server_group_id, :name, :server_list) SENSITIVE = [] include Aws::Structure end |
#server_group_id ⇒ String
The ID of a server group.
2068 2069 2070 2071 2072 2073 2074 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2068 class ServerGroup < Struct.new( :server_group_id, :name, :server_list) SENSITIVE = [] include Aws::Structure end |
#server_list ⇒ Array<Types::Server>
The servers that belong to a server group.
2068 2069 2070 2071 2072 2073 2074 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2068 class ServerGroup < Struct.new( :server_group_id, :name, :server_list) SENSITIVE = [] include Aws::Structure end |