Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Generated from be4b9c83e9d49face2ad12d82c2cc978a0e7701b
Camel-case property names
  • Loading branch information
AutorestCI committed Mar 27, 2019
commit 3bf448187331a8d445cb84bcc0c13c5d45b2a560
Original file line number Diff line number Diff line change
Expand Up @@ -19,34 +19,34 @@ public class LeaseContainerRequest {
* Possible values include: 'Acquire', 'Renew', 'Change', 'Release',
* 'Break'.
*/
@JsonProperty(value = "Action", required = true)
@JsonProperty(value = "action", required = true)
private String action;

/**
* Identifies the lease. Can be specified in any valid GUID string format.
*/
@JsonProperty(value = "LeaseId")
@JsonProperty(value = "leaseId")
private String leaseId;

/**
* Optional. For a break action, proposed duration the lease should
* continue before it is broken, in seconds, between 0 and 60.
*/
@JsonProperty(value = "BreakPeriod")
@JsonProperty(value = "breakPeriod")
private Integer breakPeriod;

/**
* Required for acquire. Specifies the duration of the lease, in seconds,
* or negative one (-1) for a lease that never expires.
*/
@JsonProperty(value = "LeaseDuration")
@JsonProperty(value = "leaseDuration")
private Integer leaseDuration;

/**
* Optional for acquire, required for change. Proposed lease ID, in a GUID
* string format.
*/
@JsonProperty(value = "ProposedLeaseId")
@JsonProperty(value = "proposedLeaseId")
private String proposedLeaseId;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ public class LeaseContainerResponseInner {
* Returned unique lease ID that must be included with any request to
* delete the container, or to renew, change, or release the lease.
*/
@JsonProperty(value = "LeaseId")
@JsonProperty(value = "leaseId")
private String leaseId;

/**
* Approximate time remaining in the lease period, in seconds.
*/
@JsonProperty(value = "LeaseTimeSeconds")
@JsonProperty(value = "leaseTimeSeconds")
private String leaseTimeSeconds;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,34 +19,34 @@ public class LeaseContainerRequest {
* Possible values include: 'Acquire', 'Renew', 'Change', 'Release',
* 'Break'.
*/
@JsonProperty(value = "Action", required = true)
@JsonProperty(value = "action", required = true)
private String action;

/**
* Identifies the lease. Can be specified in any valid GUID string format.
*/
@JsonProperty(value = "LeaseId")
@JsonProperty(value = "leaseId")
private String leaseId;

/**
* Optional. For a break action, proposed duration the lease should
* continue before it is broken, in seconds, between 0 and 60.
*/
@JsonProperty(value = "BreakPeriod")
@JsonProperty(value = "breakPeriod")
private Integer breakPeriod;

/**
* Required for acquire. Specifies the duration of the lease, in seconds,
* or negative one (-1) for a lease that never expires.
*/
@JsonProperty(value = "LeaseDuration")
@JsonProperty(value = "leaseDuration")
private Integer leaseDuration;

/**
* Optional for acquire, required for change. Proposed lease ID, in a GUID
* string format.
*/
@JsonProperty(value = "ProposedLeaseId")
@JsonProperty(value = "proposedLeaseId")
private String proposedLeaseId;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ public class LeaseContainerResponseInner {
* Returned unique lease ID that must be included with any request to
* delete the container, or to renew, change, or release the lease.
*/
@JsonProperty(value = "LeaseId")
@JsonProperty(value = "leaseId")
private String leaseId;

/**
* Approximate time remaining in the lease period, in seconds.
*/
@JsonProperty(value = "LeaseTimeSeconds")
@JsonProperty(value = "leaseTimeSeconds")
private String leaseTimeSeconds;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,34 +19,34 @@ public class LeaseContainerRequest {
* Possible values include: 'Acquire', 'Renew', 'Change', 'Release',
* 'Break'.
*/
@JsonProperty(value = "Action", required = true)
@JsonProperty(value = "action", required = true)
private String action;

/**
* Identifies the lease. Can be specified in any valid GUID string format.
*/
@JsonProperty(value = "LeaseId")
@JsonProperty(value = "leaseId")
private String leaseId;

/**
* Optional. For a break action, proposed duration the lease should
* continue before it is broken, in seconds, between 0 and 60.
*/
@JsonProperty(value = "BreakPeriod")
@JsonProperty(value = "breakPeriod")
private Integer breakPeriod;

/**
* Required for acquire. Specifies the duration of the lease, in seconds,
* or negative one (-1) for a lease that never expires.
*/
@JsonProperty(value = "LeaseDuration")
@JsonProperty(value = "leaseDuration")
private Integer leaseDuration;

/**
* Optional for acquire, required for change. Proposed lease ID, in a GUID
* string format.
*/
@JsonProperty(value = "ProposedLeaseId")
@JsonProperty(value = "proposedLeaseId")
private String proposedLeaseId;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ public class LeaseContainerResponseInner {
* Returned unique lease ID that must be included with any request to
* delete the container, or to renew, change, or release the lease.
*/
@JsonProperty(value = "LeaseId")
@JsonProperty(value = "leaseId")
private String leaseId;

/**
* Approximate time remaining in the lease period, in seconds.
*/
@JsonProperty(value = "LeaseTimeSeconds")
@JsonProperty(value = "leaseTimeSeconds")
private String leaseTimeSeconds;

/**
Expand Down