class Google::Apis::ConnectorsV1::ListRuntimeActionSchemasResponse

Response message for ConnectorsService.ListRuntimeActionSchemas.

Attributes

next_page_token[RW]

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

runtime_action_schemas[RW]

Runtime action schemas. Corresponds to the JSON property ‘runtimeActionSchemas` @return [Array<Google::Apis::ConnectorsV1::RuntimeActionSchema>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 1195
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 1200
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @runtime_action_schemas = args[:runtime_action_schemas] if args.key?(:runtime_action_schemas)
end