/** * Copy method to populate the builder with values from the given instance. * @return this builder instance */ public Builder copy(GetTagNamespaceRequest o) { tagNamespaceId(o.getTagNamespaceId()); invocationCallback(o.getInvocationCallback()); return this; }
/** * Build the instance of GetTagNamespaceRequest as configured by this builder * * Note that this method takes calls to {@link Builder#invocationCallback(com.oracle.bmc.util.internal.Consumer)} into account, * while the method {@link Builder#buildWithoutInvocationCallback} does not. * * This is the preferred method to build an instance. * * @return instance of GetTagNamespaceRequest */ public GetTagNamespaceRequest build() { GetTagNamespaceRequest request = buildWithoutInvocationCallback(); request.setInvocationCallback(invocationCallback); return request; } }
GetTagNamespaceRequest.builder().tagNamespaceId(tagNamespace1.getId()).build();
public static com.oracle.bmc.http.internal.WrappedInvocationBuilder fromRequest( com.oracle.bmc.http.internal.RestClient client, GetTagNamespaceRequest request) { Validate.notNull(request, "request instance is required"); Validate.notBlank(request.getTagNamespaceId(), "tagNamespaceId must not be blank"); com.oracle.bmc.http.internal.WrappedWebTarget target = client.getBaseTarget() .path("/20160918") .path("tagNamespaces") .path( com.oracle.bmc.util.internal.HttpUtils.encodePathSegment( request.getTagNamespaceId())); com.oracle.bmc.http.internal.WrappedInvocationBuilder ib = target.request(); ib.accept(javax.ws.rs.core.MediaType.APPLICATION_JSON); return ib; }
identityClient .getTagNamespace( GetTagNamespaceRequest.builder() .tagNamespaceId(tagNamespaceId) .build())