
com.oracle.bmc.identity.responses.CreateGroupResponse Maven / Gradle / Ivy
/**
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
*/
package com.oracle.bmc.identity.responses;
import com.oracle.bmc.identity.model.*;
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918")
@lombok.Builder(builderClassName = "Builder")
@lombok.Getter
public class CreateGroupResponse {
/**
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
* particular request, please provide the request ID.
*
*/
private String opcRequestId;
/**
* For optimistic concurrency control. See `if-match`.
*/
private String etag;
/**
* The returned Group instance.
*/
private Group group;
public static class Builder {
/**
* Copy method to populate the builder with values from the given instance.
* @return this builder instance
*/
public Builder copy(CreateGroupResponse o) {
opcRequestId(o.getOpcRequestId());
etag(o.getEtag());
group(o.getGroup());
return this;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy