Class: Google::Cloud::StorageInsights::V1::Identity

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/storageinsights/v1/storageinsights.rb

Overview

Identity lets the user provide the type of identity to use, and outputs the identity string that can be used for IAM policy changes.

Defined Under Namespace

Modules: IdentityType

Instance Attribute Summary collapse

Instance Attribute Details

#name::String (readonly)

Returns Output only. Name of the identity.

Returns:

  • (::String)

    Output only. Name of the identity.



445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
# File 'proto_docs/google/cloud/storageinsights/v1/storageinsights.rb', line 445

class Identity
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Type of service account to use for the dataset configuration.
  module IdentityType
    # Default is unspecified and should not be used.
    IDENTITY_TYPE_UNSPECIFIED = 0

    # Google managed service account per resource.
    IDENTITY_TYPE_PER_CONFIG = 1

    # Google managed service account per project.
    IDENTITY_TYPE_PER_PROJECT = 2
  end
end

#type::Google::Cloud::StorageInsights::V1::Identity::IdentityType

Returns Type of identity to use for the datasetConfig.

Returns:



445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
# File 'proto_docs/google/cloud/storageinsights/v1/storageinsights.rb', line 445

class Identity
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Type of service account to use for the dataset configuration.
  module IdentityType
    # Default is unspecified and should not be used.
    IDENTITY_TYPE_UNSPECIFIED = 0

    # Google managed service account per resource.
    IDENTITY_TYPE_PER_CONFIG = 1

    # Google managed service account per project.
    IDENTITY_TYPE_PER_PROJECT = 2
  end
end