Class: LiterLlm::CatalogRefreshConfig

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCatalogRefreshConfig

Returns a new instance of CatalogRefreshConfig.

Parameters:

  • enabled: (Boolean)
  • source_url: (String)
  • ttl_seconds: (Integer)
  • cache_path: (String)


828
# File 'sig/types.rbs', line 828

def initialize: (?enabled: bool, ?source_url: String, ?ttl_seconds: Integer, ?cache_path: String) -> void

Instance Attribute Details

#cache_pathString?

Returns the value of attribute cache_path.

Returns:

  • (String, nil)


826
827
828
# File 'sig/types.rbs', line 826

def cache_path
  @cache_path
end

#enabledBoolean?

Returns the value of attribute enabled.

Returns:

  • (Boolean, nil)


823
824
825
# File 'sig/types.rbs', line 823

def enabled
  @enabled
end

#source_urlString?

Returns the value of attribute source_url.

Returns:

  • (String, nil)


824
825
826
# File 'sig/types.rbs', line 824

def source_url
  @source_url
end

#ttl_secondsInteger?

Returns the value of attribute ttl_seconds.

Returns:

  • (Integer, nil)


825
826
827
# File 'sig/types.rbs', line 825

def ttl_seconds
  @ttl_seconds
end

Class Method Details

.defaultCatalogRefreshConfig



829
# File 'sig/types.rbs', line 829

def self.default: () -> CatalogRefreshConfig