Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderData

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

Defines data for an application builder.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderData

Returns a new instance of GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderData.



51803
51804
51805
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 51803

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

Instance Attribute Details

#code_repository_stateString

Serialized state of the code repository. This string will typically contain a JSON representation of the UI's CodeRepositoryService state (files, folders, content, and any metadata). The UI is responsible for serialization and deserialization. Corresponds to the JSON property codeRepositoryState

Returns:

  • (String)


51791
51792
51793
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 51791

def code_repository_state
  @code_repository_state
end

#frameworkString

Optional. Framework used to build the application. Corresponds to the JSON property framework

Returns:

  • (String)


51796
51797
51798
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 51796

def framework
  @framework
end

#linked_resourcesArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderDataLinkedResource>

Linked resources attached to the application by the user. Corresponds to the JSON property linkedResources



51801
51802
51803
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 51801

def linked_resources
  @linked_resources
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



51808
51809
51810
51811
51812
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 51808

def update!(**args)
  @code_repository_state = args[:code_repository_state] if args.key?(:code_repository_state)
  @framework = args[:framework] if args.key?(:framework)
  @linked_resources = args[:linked_resources] if args.key?(:linked_resources)
end