Interface IamBindingOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    IamBinding, IamBinding.Builder

    public interface IamBindingOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      IamBinding.Action getAction()
      The action that was performed on a Binding.
      int getActionValue()
      The action that was performed on a Binding.
      String getMember()
      A single identity requesting access for a Cloud Platform resource, for example, "foo@google.com".
      com.google.protobuf.ByteString getMemberBytes()
      A single identity requesting access for a Cloud Platform resource, for example, "foo@google.com".
      String getRole()
      Role that is assigned to "members".
      com.google.protobuf.ByteString getRoleBytes()
      Role that is assigned to "members".
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getActionValue

        int getActionValue()
         The action that was performed on a Binding.
         
        .google.cloud.securitycenter.v1.IamBinding.Action action = 1;
        Returns:
        The enum numeric value on the wire for action.
      • getAction

        IamBinding.Action getAction()
         The action that was performed on a Binding.
         
        .google.cloud.securitycenter.v1.IamBinding.Action action = 1;
        Returns:
        The action.
      • getRole

        String getRole()
         Role that is assigned to "members".
         For example, "roles/viewer", "roles/editor", or "roles/owner".
         
        string role = 2;
        Returns:
        The role.
      • getRoleBytes

        com.google.protobuf.ByteString getRoleBytes()
         Role that is assigned to "members".
         For example, "roles/viewer", "roles/editor", or "roles/owner".
         
        string role = 2;
        Returns:
        The bytes for role.
      • getMember

        String getMember()
         A single identity requesting access for a Cloud Platform resource, for
         example, "foo@google.com".
         
        string member = 3;
        Returns:
        The member.
      • getMemberBytes

        com.google.protobuf.ByteString getMemberBytes()
         A single identity requesting access for a Cloud Platform resource, for
         example, "foo@google.com".
         
        string member = 3;
        Returns:
        The bytes for member.