Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaRuntimeEntitySchema
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaRuntimeEntitySchema
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
Metadata of an entity, including a schema for its properties.
Instance Attribute Summary collapse
-
#array_field_schema ⇒ String
The above schema, but for an array of the associated entity.
-
#entity ⇒ String
Name of the entity.
-
#field_schema ⇒ String
List of fields in the entity.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaRuntimeEntitySchema
constructor
A new instance of GoogleCloudIntegrationsV1alphaRuntimeEntitySchema.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaRuntimeEntitySchema
Returns a new instance of GoogleCloudIntegrationsV1alphaRuntimeEntitySchema.
7950 7951 7952 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7950 def initialize(**args) update!(**args) end |
Instance Attribute Details
#array_field_schema ⇒ String
The above schema, but for an array of the associated entity.
Corresponds to the JSON property arrayFieldSchema
7938 7939 7940 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7938 def array_field_schema @array_field_schema end |
#entity ⇒ String
Name of the entity.
Corresponds to the JSON property entity
7943 7944 7945 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7943 def entity @entity end |
#field_schema ⇒ String
List of fields in the entity.
Corresponds to the JSON property fieldSchema
7948 7949 7950 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7948 def field_schema @field_schema end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7955 7956 7957 7958 7959 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7955 def update!(**args) @array_field_schema = args[:array_field_schema] if args.key?(:array_field_schema) @entity = args[:entity] if args.key?(:entity) @field_schema = args[:field_schema] if args.key?(:field_schema) end |