Sha256: 0fedb939f94e235a6eb7ce0385bd4fb49f6534a474126b7505ade01e94c2edc6
Contents?: true
Size: 540 Bytes
Versions: 26
Compression:
Stored size: 540 Bytes
Contents
class SageMaker < Mapper # # Returns an array of resources. # def collect resources = [] # # list_notebook_instances # @client.list_notebook_instances.each_with_index do |response, page| log(response.context.operation_name, page) response.notebook_instances.each do |instance| struct = OpenStruct.new(instance.to_h) struct.type = 'notebook_instance' struct.arn = instance.notebook_instance_arn resources.push(struct.to_h) end end resources end end
Version data entries
26 entries across 26 versions & 1 rubygems