All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.iam.model.PolicyVersion Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS IAM module holds the client classes that are used for communicating with AWS Identity and Access Management Service

There is a newer version: 2.29.15
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.iam.model;

import java.io.Serializable;
import java.time.Instant;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* Contains information about a version of a managed policy. *

*

* This data type is used as a response element in the CreatePolicyVersion, GetPolicyVersion, * ListPolicyVersions, and GetAccountAuthorizationDetails operations. *

*

* For more information about managed policies, refer to Managed policies and inline * policies in the IAM User Guide. *

*/ @Generated("software.amazon.awssdk:codegen") public final class PolicyVersion implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField DOCUMENT_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("Document").getter(getter(PolicyVersion::document)).setter(setter(Builder::document)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Document").build()).build(); private static final SdkField VERSION_ID_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("VersionId").getter(getter(PolicyVersion::versionId)).setter(setter(Builder::versionId)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("VersionId").build()).build(); private static final SdkField IS_DEFAULT_VERSION_FIELD = SdkField. builder(MarshallingType.BOOLEAN) .memberName("IsDefaultVersion").getter(getter(PolicyVersion::isDefaultVersion)) .setter(setter(Builder::isDefaultVersion)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("IsDefaultVersion").build()).build(); private static final SdkField CREATE_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT) .memberName("CreateDate").getter(getter(PolicyVersion::createDate)).setter(setter(Builder::createDate)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreateDate").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(DOCUMENT_FIELD, VERSION_ID_FIELD, IS_DEFAULT_VERSION_FIELD, CREATE_DATE_FIELD)); private static final Map> SDK_NAME_TO_FIELD = memberNameToFieldInitializer(); private static final long serialVersionUID = 1L; private final String document; private final String versionId; private final Boolean isDefaultVersion; private final Instant createDate; private PolicyVersion(BuilderImpl builder) { this.document = builder.document; this.versionId = builder.versionId; this.isDefaultVersion = builder.isDefaultVersion; this.createDate = builder.createDate; } /** *

* The policy document. *

*

* The policy document is returned in the response to the GetPolicyVersion and * GetAccountAuthorizationDetails operations. It is not returned in the response to the * CreatePolicyVersion or ListPolicyVersions operations. *

*

* The policy document returned in this structure is URL-encoded compliant with RFC 3986. You can use a URL decoding method to convert the policy * back to plain JSON text. For example, if you use Java, you can use the decode method of the * java.net.URLDecoder utility class in the Java SDK. Other languages and SDKs provide similar * functionality. *

* * @return The policy document.

*

* The policy document is returned in the response to the GetPolicyVersion and * GetAccountAuthorizationDetails operations. It is not returned in the response to the * CreatePolicyVersion or ListPolicyVersions operations. *

*

* The policy document returned in this structure is URL-encoded compliant with RFC 3986. You can use a URL decoding method to convert the * policy back to plain JSON text. For example, if you use Java, you can use the decode method * of the java.net.URLDecoder utility class in the Java SDK. Other languages and SDKs provide * similar functionality. */ public final String document() { return document; } /** *

* The identifier for the policy version. *

*

* Policy version identifiers always begin with v (always lowercase). When a policy is created, the * first policy version is v1. *

* * @return The identifier for the policy version.

*

* Policy version identifiers always begin with v (always lowercase). When a policy is created, * the first policy version is v1. */ public final String versionId() { return versionId; } /** *

* Specifies whether the policy version is set as the policy's default version. *

* * @return Specifies whether the policy version is set as the policy's default version. */ public final Boolean isDefaultVersion() { return isDefaultVersion; } /** *

* The date and time, in ISO 8601 date-time format, when the policy * version was created. *

* * @return The date and time, in ISO 8601 date-time format, when the * policy version was created. */ public final Instant createDate() { return createDate; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(document()); hashCode = 31 * hashCode + Objects.hashCode(versionId()); hashCode = 31 * hashCode + Objects.hashCode(isDefaultVersion()); hashCode = 31 * hashCode + Objects.hashCode(createDate()); return hashCode; } @Override public final boolean equals(Object obj) { return equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof PolicyVersion)) { return false; } PolicyVersion other = (PolicyVersion) obj; return Objects.equals(document(), other.document()) && Objects.equals(versionId(), other.versionId()) && Objects.equals(isDefaultVersion(), other.isDefaultVersion()) && Objects.equals(createDate(), other.createDate()); } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. */ @Override public final String toString() { return ToString.builder("PolicyVersion").add("Document", document()).add("VersionId", versionId()) .add("IsDefaultVersion", isDefaultVersion()).add("CreateDate", createDate()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "Document": return Optional.ofNullable(clazz.cast(document())); case "VersionId": return Optional.ofNullable(clazz.cast(versionId())); case "IsDefaultVersion": return Optional.ofNullable(clazz.cast(isDefaultVersion())); case "CreateDate": return Optional.ofNullable(clazz.cast(createDate())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } @Override public final Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } private static Map> memberNameToFieldInitializer() { Map> map = new HashMap<>(); map.put("Document", DOCUMENT_FIELD); map.put("VersionId", VERSION_ID_FIELD); map.put("IsDefaultVersion", IS_DEFAULT_VERSION_FIELD); map.put("CreateDate", CREATE_DATE_FIELD); return Collections.unmodifiableMap(map); } private static Function getter(Function g) { return obj -> g.apply((PolicyVersion) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The policy document. *

*

* The policy document is returned in the response to the GetPolicyVersion and * GetAccountAuthorizationDetails operations. It is not returned in the response to the * CreatePolicyVersion or ListPolicyVersions operations. *

*

* The policy document returned in this structure is URL-encoded compliant with RFC 3986. You can use a URL decoding method to convert the * policy back to plain JSON text. For example, if you use Java, you can use the decode method of * the java.net.URLDecoder utility class in the Java SDK. Other languages and SDKs provide similar * functionality. *

* * @param document * The policy document.

*

* The policy document is returned in the response to the GetPolicyVersion and * GetAccountAuthorizationDetails operations. It is not returned in the response to the * CreatePolicyVersion or ListPolicyVersions operations. *

*

* The policy document returned in this structure is URL-encoded compliant with RFC 3986. You can use a URL decoding method to convert * the policy back to plain JSON text. For example, if you use Java, you can use the decode * method of the java.net.URLDecoder utility class in the Java SDK. Other languages and SDKs * provide similar functionality. * @return Returns a reference to this object so that method calls can be chained together. */ Builder document(String document); /** *

* The identifier for the policy version. *

*

* Policy version identifiers always begin with v (always lowercase). When a policy is created, the * first policy version is v1. *

* * @param versionId * The identifier for the policy version.

*

* Policy version identifiers always begin with v (always lowercase). When a policy is * created, the first policy version is v1. * @return Returns a reference to this object so that method calls can be chained together. */ Builder versionId(String versionId); /** *

* Specifies whether the policy version is set as the policy's default version. *

* * @param isDefaultVersion * Specifies whether the policy version is set as the policy's default version. * @return Returns a reference to this object so that method calls can be chained together. */ Builder isDefaultVersion(Boolean isDefaultVersion); /** *

* The date and time, in ISO 8601 date-time format, when the policy * version was created. *

* * @param createDate * The date and time, in ISO 8601 date-time format, when the * policy version was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createDate(Instant createDate); } static final class BuilderImpl implements Builder { private String document; private String versionId; private Boolean isDefaultVersion; private Instant createDate; private BuilderImpl() { } private BuilderImpl(PolicyVersion model) { document(model.document); versionId(model.versionId); isDefaultVersion(model.isDefaultVersion); createDate(model.createDate); } public final String getDocument() { return document; } public final void setDocument(String document) { this.document = document; } @Override public final Builder document(String document) { this.document = document; return this; } public final String getVersionId() { return versionId; } public final void setVersionId(String versionId) { this.versionId = versionId; } @Override public final Builder versionId(String versionId) { this.versionId = versionId; return this; } public final Boolean getIsDefaultVersion() { return isDefaultVersion; } public final void setIsDefaultVersion(Boolean isDefaultVersion) { this.isDefaultVersion = isDefaultVersion; } @Override public final Builder isDefaultVersion(Boolean isDefaultVersion) { this.isDefaultVersion = isDefaultVersion; return this; } public final Instant getCreateDate() { return createDate; } public final void setCreateDate(Instant createDate) { this.createDate = createDate; } @Override public final Builder createDate(Instant createDate) { this.createDate = createDate; return this; } @Override public PolicyVersion build() { return new PolicyVersion(this); } @Override public List> sdkFields() { return SDK_FIELDS; } @Override public Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy