org.apache.cloudstack.api.Parameter.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(5.3k)|赞(0)|评价(0)|浏览(88)

本文整理了Java中org.apache.cloudstack.api.Parameter.<init>()方法的一些代码示例,展示了Parameter.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Parameter.<init>()方法的具体详情如下:
包路径:org.apache.cloudstack.api.Parameter
类名称:Parameter
方法名:<init>

Parameter.<init>介绍

暂无

代码示例

代码示例来源:origin: apache/cloudstack

@Parameter(name=ApiConstants.HOST_ID, type=CommandType.UUID, entityType=HostResponse.class,
    description="the host ID")
private Long hostId;
@Parameter(name=ApiConstants.POD_ID, type=CommandType.UUID, entityType=PodResponse.class,
    description="the pod ID")
private Long podId;
@Parameter(name=ApiConstants.STORAGE_ID, type=CommandType.UUID, entityType=StoragePoolResponse.class,
    description="the storage ID where vm's volumes belong to")
private Long storageId;

代码示例来源:origin: apache/cloudstack

@Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType = DiskOfferingResponse.class, description = "ID of the disk offering")
private Long id;
@Parameter(name = ApiConstants.NAME, type = CommandType.STRING, description = "name of the disk offering")
private String diskOfferingName;

代码示例来源:origin: apache/cloudstack

@Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType = InstanceGroupResponse.class, description = "list instance groups by ID")
private Long id;
@Parameter(name = ApiConstants.NAME, type = CommandType.STRING, description = "list instance groups by name")
private String groupName;

代码示例来源:origin: apache/cloudstack

private static final String NAME = "getsolidfireaccountidresponse";
@Parameter(name = ApiConstants.ACCOUNT_ID, type = CommandType.STRING, description = "CloudStack Account UUID", required = true)
private String csAccountUuid;
@Parameter(name = ApiConstants.STORAGE_ID, type = CommandType.STRING, description = "Storage Pool UUID", required = true)
private String storagePoolUuid;

代码示例来源:origin: apache/cloudstack

QuotaResponseBuilder _quotaResponseBuilder;
@Parameter(name = "templatetype", type = CommandType.STRING, description = "List by type of the quota email template, allowed types: QUOTA_LOW, QUOTA_EMPTY")
private String templateName;

代码示例来源:origin: apache/cloudstack

@Parameter(name = ApiConstants.ID, type = CommandType.STRING, required = true, description = "the id of the annotation")
private String uuid;

代码示例来源:origin: apache/cloudstack

private static final String NAME = "getpathforvolumeresponse";
@Parameter(name = ApiConstants.VOLUME_ID, type = CommandType.STRING, description = "CloudStack Volume UUID", required = true)
private String _volumeUuid;

代码示例来源:origin: apache/cloudstack

private static final String NAME = "getvolumesnapshotdetailsresponse";
@Parameter(name = ApiConstants.SNAPSHOT_ID, type = CommandType.STRING, description = "CloudStack Snapshot UUID", required = true)
private String snapshotUuid;

代码示例来源:origin: apache/cloudstack

private static final String NAME = "getsolidfirevolumesizeresponse";
@Parameter(name = ApiConstants.VOLUME_ID, type = CommandType.STRING, description = "Volume UUID", required = true)
private String volumeUuid;

代码示例来源:origin: apache/cloudstack

private static final String s_name = "liststorageprovidersresponse";
@Parameter(name = ApiConstants.TYPE, type = CommandType.STRING, description = "the type of storage provider: either primary or image", required = true)
private String type;

代码示例来源:origin: apache/cloudstack

SspService _service;
@Parameter(name = ApiConstants.HOST_ID, type = CommandType.UUID, entityType = HostResponse.class, required = true, description = "the host ID of ssp server")
private Long hostId;

代码示例来源:origin: apache/cloudstack

private static final String NAME = "getvolumeiscsinameresponse";
@Parameter(name = ApiConstants.VOLUME_ID, type = CommandType.STRING, description = "CloudStack Volume UUID", required = true)
private String volumeUuid;

代码示例来源:origin: apache/cloudstack

@Parameter(name = ApiConstants.START_DATE, type = CommandType.TZDATE, description = "the start date of the async job")
private Date startDate;

代码示例来源:origin: apache/cloudstack

@Parameter(name = ApiConstants.ID, type = CommandType.LONG, description = "the id of the swift")
private Long id;

代码示例来源:origin: apache/cloudstack

@Parameter(name = ApiConstants.JOB_ID, type = CommandType.UUID, entityType = AsyncJobResponse.class, required = true, description = "the ID of the asychronous job")
private Long id;

代码示例来源:origin: apache/cloudstack

@Parameter(name = VspConstants.NUAGE_VSP_API_UNDERLAY, type = CommandType.BOOLEAN, description = "true to list only underlay enabled, false if not, empty for all")
private Boolean underlay;

代码示例来源:origin: apache/cloudstack

@Parameter(name= ApiConstants.ID, type = CommandType.UUID, entityType = UserResponse.class, required = true, description = "ID of the user whose keys are required")
private Long id;

代码示例来源:origin: apache/cloudstack

ApiDiscoveryService _apiDiscoveryService;
@Parameter(name = ApiConstants.NAME, type = CommandType.STRING, description = "API name")
private String name;

代码示例来源:origin: apache/cloudstack

@Parameter(name = ApiConstants.INTERVAL, type = CommandType.INTEGER, required = true,
    description = "Specify the number of days (greater than zero) to remove records that are older than those number of days from today. For example, specifying 10 would result in removing all the records created before 10 days from today")
private Integer interval;

代码示例来源:origin: apache/cloudstack

@Parameter(name = ApiConstants.ID, type = CommandType.LONG, description = "the ID of the Pool")
private Long                id;

相关文章