Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointRestriction

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Restriction of a datapoint which describe its attributes(tokens) from each of several attribute categories(namespaces).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1IndexDatapointRestriction

Returns a new instance of GoogleCloudAiplatformV1IndexDatapointRestriction.



13428
13429
13430
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13428

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#allow_listArray<String>

The attributes to allow in this namespace. e.g.: 'red' Corresponds to the JSON property allowList

Returns:

  • (Array<String>)


13416
13417
13418
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13416

def allow_list
  @allow_list
end

#deny_listArray<String>

The attributes to deny in this namespace. e.g.: 'blue' Corresponds to the JSON property denyList

Returns:

  • (Array<String>)


13421
13422
13423
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13421

def deny_list
  @deny_list
end

#namespaceString

The namespace of this restriction. e.g.: color. Corresponds to the JSON property namespace

Returns:

  • (String)


13426
13427
13428
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13426

def namespace
  @namespace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13433
13434
13435
13436
13437
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13433

def update!(**args)
  @allow_list = args[:allow_list] if args.key?(:allow_list)
  @deny_list = args[:deny_list] if args.key?(:deny_list)
  @namespace = args[:namespace] if args.key?(:namespace)
end