public final class CreatePolicyRequest extends GeneratedMessageV3 implements CreatePolicyRequestOrBuilder
Request message for CreatePolicy
.
Protobuf type google.iam.v2beta.CreatePolicyRequest
Inheritance
Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > CreatePolicyRequestImplements
CreatePolicyRequestOrBuilderStatic Fields
PARENT_FIELD_NUMBER
public static final int PARENT_FIELD_NUMBER
Type | Description |
int |
POLICY_FIELD_NUMBER
public static final int POLICY_FIELD_NUMBER
Type | Description |
int |
POLICY_ID_FIELD_NUMBER
public static final int POLICY_ID_FIELD_NUMBER
Type | Description |
int |
Static Methods
getDefaultInstance()
public static CreatePolicyRequest getDefaultInstance()
Type | Description |
CreatePolicyRequest |
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Type | Description |
Descriptor |
newBuilder()
public static CreatePolicyRequest.Builder newBuilder()
Type | Description |
CreatePolicyRequest.Builder |
newBuilder(CreatePolicyRequest prototype)
public static CreatePolicyRequest.Builder newBuilder(CreatePolicyRequest prototype)
Name | Description |
prototype | CreatePolicyRequest |
Type | Description |
CreatePolicyRequest.Builder |
parseDelimitedFrom(InputStream input)
public static CreatePolicyRequest parseDelimitedFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
CreatePolicyRequest |
Type | Description |
IOException |
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static CreatePolicyRequest parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
CreatePolicyRequest |
Type | Description |
IOException |
parseFrom(byte[] data)
public static CreatePolicyRequest parseFrom(byte[] data)
Name | Description |
data | byte[] |
Type | Description |
CreatePolicyRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static CreatePolicyRequest parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | byte[] |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
CreatePolicyRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data)
public static CreatePolicyRequest parseFrom(ByteString data)
Name | Description |
data | ByteString |
Type | Description |
CreatePolicyRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static CreatePolicyRequest parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteString |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
CreatePolicyRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(CodedInputStream input)
public static CreatePolicyRequest parseFrom(CodedInputStream input)
Name | Description |
input | CodedInputStream |
Type | Description |
CreatePolicyRequest |
Type | Description |
IOException |
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static CreatePolicyRequest parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | CodedInputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
CreatePolicyRequest |
Type | Description |
IOException |
parseFrom(InputStream input)
public static CreatePolicyRequest parseFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
CreatePolicyRequest |
Type | Description |
IOException |
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static CreatePolicyRequest parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
CreatePolicyRequest |
Type | Description |
IOException |
parseFrom(ByteBuffer data)
public static CreatePolicyRequest parseFrom(ByteBuffer data)
Name | Description |
data | ByteBuffer |
Type | Description |
CreatePolicyRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static CreatePolicyRequest parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteBuffer |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
CreatePolicyRequest |
Type | Description |
InvalidProtocolBufferException |
parser()
public static Parser<CreatePolicyRequest> parser()
Type | Description |
Parser<CreatePolicyRequest> |
Methods
equals(Object obj)
public boolean equals(Object obj)
Name | Description |
obj | Object |
Type | Description |
boolean |
getDefaultInstanceForType()
public CreatePolicyRequest getDefaultInstanceForType()
Type | Description |
CreatePolicyRequest |
getParent()
public String getParent()
Required. The resource that the policy is attached to, along with the kind of policy
to create. Format: policies/{attachment_point}/denypolicies
The attachment point is identified by its URL-encoded full resource name,
which means that the forward-slash character, /
, must be written as
%2F
. For example,
policies/cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/denypolicies
.
For organizations and folders, use the numeric ID in the full resource
name. For projects, you can use the alphanumeric or the numeric ID.
string parent = 1 [(.google.api.field_behavior) = REQUIRED];
Type | Description |
String | The parent. |
getParentBytes()
public ByteString getParentBytes()
Required. The resource that the policy is attached to, along with the kind of policy
to create. Format: policies/{attachment_point}/denypolicies
The attachment point is identified by its URL-encoded full resource name,
which means that the forward-slash character, /
, must be written as
%2F
. For example,
policies/cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/denypolicies
.
For organizations and folders, use the numeric ID in the full resource
name. For projects, you can use the alphanumeric or the numeric ID.
string parent = 1 [(.google.api.field_behavior) = REQUIRED];
Type | Description |
ByteString | The bytes for parent. |
getParserForType()
public Parser<CreatePolicyRequest> getParserForType()
Type | Description |
Parser<CreatePolicyRequest> |
getPolicy()
public Policy getPolicy()
Required. The policy to create.
.google.iam.v2beta.Policy policy = 2 [(.google.api.field_behavior) = REQUIRED];
Type | Description |
Policy | The policy. |
getPolicyId()
public String getPolicyId()
The ID to use for this policy, which will become the final component of
the policy's resource name. The ID must contain 3 to 63 characters. It can
contain lowercase letters and numbers, as well as dashes (-
) and periods
(.
). The first character must be a lowercase letter.
string policy_id = 3;
Type | Description |
String | The policyId. |
getPolicyIdBytes()
public ByteString getPolicyIdBytes()
The ID to use for this policy, which will become the final component of
the policy's resource name. The ID must contain 3 to 63 characters. It can
contain lowercase letters and numbers, as well as dashes (-
) and periods
(.
). The first character must be a lowercase letter.
string policy_id = 3;
Type | Description |
ByteString | The bytes for policyId. |
getPolicyOrBuilder()
public PolicyOrBuilder getPolicyOrBuilder()
Required. The policy to create.
.google.iam.v2beta.Policy policy = 2 [(.google.api.field_behavior) = REQUIRED];
Type | Description |
PolicyOrBuilder |
getSerializedSize()
public int getSerializedSize()
Type | Description |
int |
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Type | Description |
UnknownFieldSet |
hasPolicy()
public boolean hasPolicy()
Required. The policy to create.
.google.iam.v2beta.Policy policy = 2 [(.google.api.field_behavior) = REQUIRED];
Type | Description |
boolean | Whether the policy field is set. |
hashCode()
public int hashCode()
Type | Description |
int |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Type | Description |
boolean |
newBuilderForType()
public CreatePolicyRequest.Builder newBuilderForType()
Type | Description |
CreatePolicyRequest.Builder |
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected CreatePolicyRequest.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Name | Description |
parent | BuilderParent |
Type | Description |
CreatePolicyRequest.Builder |
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Name | Description |
unused | UnusedPrivateParameter |
Type | Description |
Object |
toBuilder()
public CreatePolicyRequest.Builder toBuilder()
Type | Description |
CreatePolicyRequest.Builder |
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Name | Description |
output | CodedOutputStream |
Type | Description |
IOException |