class Google::Apis::ConnectorsV1::ListRuntimeEntitySchemasResponse

Response message for ConnectorsService.ListRuntimeEntitySchemas.

Attributes

next_page_token[RW]

Next page token. Corresponds to the JSON property ‘nextPageToken` @return [String]

runtime_entity_schemas[RW]

Runtime entity schemas. Corresponds to the JSON property ‘runtimeEntitySchemas` @return [Array<Google::Apis::ConnectorsV1::RuntimeEntitySchema>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 1220
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/connectors_v1/classes.rb, line 1225
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @runtime_entity_schemas = args[:runtime_entity_schemas] if args.key?(:runtime_entity_schemas)
end