Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExamplesRestrictionsNamespace

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

Restrictions namespace for example-based explanations overrides.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ExamplesRestrictionsNamespace

Returns a new instance of GoogleCloudAiplatformV1ExamplesRestrictionsNamespace.



6454
6455
6456
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6454

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

Instance Attribute Details

#allowArray<String>

The list of allowed tags. Corresponds to the JSON property allow

Returns:

  • (Array<String>)


6442
6443
6444
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6442

def allow
  @allow
end

#denyArray<String>

The list of deny tags. Corresponds to the JSON property deny

Returns:

  • (Array<String>)


6447
6448
6449
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6447

def deny
  @deny
end

#namespace_nameString

The namespace name. Corresponds to the JSON property namespaceName

Returns:

  • (String)


6452
6453
6454
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6452

def namespace_name
  @namespace_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6459
6460
6461
6462
6463
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6459

def update!(**args)
  @allow = args[:allow] if args.key?(:allow)
  @deny = args[:deny] if args.key?(:deny)
  @namespace_name = args[:namespace_name] if args.key?(:namespace_name)
end