Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RuntimeArtifact

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

Overview

The definition of a runtime artifact.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1RuntimeArtifact

Returns a new instance of GoogleCloudAiplatformV1beta1RuntimeArtifact.



50871
50872
50873
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50871

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

Instance Attribute Details

#custom_propertiesHash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Value>

The custom properties of the artifact. Deprecated. Use RuntimeArtifact. metadata instead. Corresponds to the JSON property customProperties



50843
50844
50845
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50843

def custom_properties
  @custom_properties
end

#metadataHash<String,Object>

Properties of the Artifact. Corresponds to the JSON property metadata

Returns:

  • (Hash<String,Object>)


50848
50849
50850
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50848

def 
  @metadata
end

#nameString

The name of an artifact. Corresponds to the JSON property name

Returns:

  • (String)


50853
50854
50855
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50853

def name
  @name
end

#propertiesHash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Value>

The properties of the artifact. Deprecated. Use RuntimeArtifact.metadata instead. Corresponds to the JSON property properties



50859
50860
50861
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50859

def properties
  @properties
end

#typeGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ArtifactTypeSchema

The definition of a artifact type in MLMD. Corresponds to the JSON property type



50864
50865
50866
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50864

def type
  @type
end

#uriString

The URI of the artifact. Corresponds to the JSON property uri

Returns:

  • (String)


50869
50870
50871
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50869

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



50876
50877
50878
50879
50880
50881
50882
50883
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50876

def update!(**args)
  @custom_properties = args[:custom_properties] if args.key?(:custom_properties)
  @metadata = args[:metadata] if args.key?(:metadata)
  @name = args[:name] if args.key?(:name)
  @properties = args[:properties] if args.key?(:properties)
  @type = args[:type] if args.key?(:type)
  @uri = args[:uri] if args.key?(:uri)
end