C# Class ConoHaNet.Objects.Servers.CreateServerRequest.CreateServerDetails

Exibir arquivo Open project: crowdy/OpenStack-ConoHa

Private Properties

Property Type Description

Public Methods

Method Description
CreateServerDetails ( string name, string imageName, string flavorId, string adminPass, string keyName, string securityGroupNames, string attachVolumeIds, DiskConfiguration diskConfig, string>.Dictionary metadata, string accessIPv4, string accessIPv6, IEnumerable networks, IEnumerable personality ) : Networks

Initializes a new instance of the CreateServerDetails class with the specified details.

Method Details

CreateServerDetails() public method

Initializes a new instance of the CreateServerDetails class with the specified details.
public CreateServerDetails ( string name, string imageName, string flavorId, string adminPass, string keyName, string securityGroupNames, string attachVolumeIds, DiskConfiguration diskConfig, string>.Dictionary metadata, string accessIPv4, string accessIPv6, IEnumerable networks, IEnumerable personality ) : Networks
name string Name of the new server.
imageName string The image to use for the new server instance. This is /// specified as an image ID (see ) or a full URL.
flavorId string The flavor to use for the new server instance. This /// is specified as a flavor ID (see ) or a full URL.
adminPass string The root Password
keyName string the ssh keyname to add to server
securityGroupNames string A collection of openstack security group name
attachVolumeIds string A collection of voiume ids which will be attached to the instance.
diskConfig DiskConfiguration The disk configuration. If the value is , the default configuration for the specified image is used.
metadata string>.Dictionary The metadata to associate with the server.
accessIPv4 string The behavior of this value is unspecified. Do not use.
accessIPv6 string The behavior of this value is unspecified. Do not use.
networks IEnumerable A collection of identifiers for networks to initially connect to the server. These are obtained from CloudNetwork.Id
personality IEnumerable A collection of objects describing the paths and contents of files to inject in the target file system during the creation process. If the value is , no files are injected.
return Networks