Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class DeploymentExtendedInner {
/**
* The ID of the deployment.
*/
@JsonProperty(value = "id")
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;

/**
Expand All @@ -42,17 +42,6 @@ public String id() {
return this.id;
}

/**
* Set the id value.
*
* @param id the id value to set
* @return the DeploymentExtendedInner object itself.
*/
public DeploymentExtendedInner withId(String id) {
this.id = id;
return this;
}

/**
* Get the name value.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class PolicyDefinitionInner {
/**
* The ID of the policy definition.
*/
@JsonProperty(value = "id")
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;

/**
Expand Down Expand Up @@ -145,17 +145,6 @@ public String id() {
return this.id;
}

/**
* Set the id value.
*
* @param id the id value to set
* @return the PolicyDefinitionInner object itself.
*/
public PolicyDefinitionInner withId(String id) {
this.id = id;
return this;
}

/**
* Get the name value.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class TagDetailsInner {
/**
* The tag ID.
*/
@JsonProperty(value = "id")
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;

/**
Expand Down Expand Up @@ -50,17 +50,6 @@ public String id() {
return this.id;
}

/**
* Set the id value.
*
* @param id the id value to set
* @return the TagDetailsInner object itself.
*/
public TagDetailsInner withId(String id) {
this.id = id;
return this;
}

/**
* Get the tagName value.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class TagValueInner {
/**
* The tag ID.
*/
@JsonProperty(value = "id")
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;

/**
Expand All @@ -42,17 +42,6 @@ public String id() {
return this.id;
}

/**
* Set the id value.
*
* @param id the id value to set
* @return the TagValueInner object itself.
*/
public TagValueInner withId(String id) {
this.id = id;
return this;
}

/**
* Get the tagValue value.
*
Expand Down