Class: OpenAI::Models::Admin::Organization::UsageVectorStoresParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Admin::Organization::UsageVectorStoresParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/openai/models/admin/organization/usage_vector_stores_params.rb
Overview
Defined Under Namespace
Modules: BucketWidth, GroupBy
Instance Attribute Summary collapse
-
#bucket_width ⇒ Symbol, ...
Width of each time bucket in response.
-
#end_time ⇒ Integer?
End time (Unix seconds) of the query time range, exclusive.
-
#group_by ⇒ Array<Symbol, OpenAI::Models::Admin::Organization::UsageVectorStoresParams::GroupBy>?
Group the usage data by the specified fields.
-
#limit ⇒ Integer?
Specifies the number of buckets to return.
-
#page ⇒ String?
A cursor for use in pagination.
-
#project_ids ⇒ Array<String>?
Return only usage for these projects.
-
#start_time ⇒ Integer
Start time (Unix seconds) of the query time range, inclusive.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(start_time:, bucket_width: nil, end_time: nil, group_by: nil, limit: nil, page: nil, project_ids: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see UsageVectorStoresParams for more details.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(start_time:, bucket_width: nil, end_time: nil, group_by: nil, limit: nil, page: nil, project_ids: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see OpenAI::Models::Admin::Organization::UsageVectorStoresParams for more details.
|
|
# File 'lib/openai/models/admin/organization/usage_vector_stores_params.rb', line 62
|
Instance Attribute Details
#bucket_width ⇒ Symbol, ...
Width of each time bucket in response. Currently ‘1m`, `1h` and `1d` are supported, default to `1d`.
23 |
# File 'lib/openai/models/admin/organization/usage_vector_stores_params.rb', line 23 optional :bucket_width, enum: -> { OpenAI::Admin::Organization::UsageVectorStoresParams::BucketWidth } |
#end_time ⇒ Integer?
End time (Unix seconds) of the query time range, exclusive.
29 |
# File 'lib/openai/models/admin/organization/usage_vector_stores_params.rb', line 29 optional :end_time, Integer |
#group_by ⇒ Array<Symbol, OpenAI::Models::Admin::Organization::UsageVectorStoresParams::GroupBy>?
Group the usage data by the specified fields. Support fields include ‘project_id`.
36 37 |
# File 'lib/openai/models/admin/organization/usage_vector_stores_params.rb', line 36 optional :group_by, -> { OpenAI::Internal::Type::ArrayOf[enum: OpenAI::Admin::Organization::UsageVectorStoresParams::GroupBy] } |
#limit ⇒ Integer?
Specifies the number of buckets to return.
-
‘bucket_width=1d`: default: 7, max: 31
-
‘bucket_width=1h`: default: 24, max: 168
-
‘bucket_width=1m`: default: 60, max: 1440
47 |
# File 'lib/openai/models/admin/organization/usage_vector_stores_params.rb', line 47 optional :limit, Integer |
#page ⇒ String?
A cursor for use in pagination. Corresponding to the ‘next_page` field from the previous response.
54 |
# File 'lib/openai/models/admin/organization/usage_vector_stores_params.rb', line 54 optional :page, String |
#project_ids ⇒ Array<String>?
Return only usage for these projects.
60 |
# File 'lib/openai/models/admin/organization/usage_vector_stores_params.rb', line 60 optional :project_ids, OpenAI::Internal::Type::ArrayOf[String] |
#start_time ⇒ Integer
Start time (Unix seconds) of the query time range, inclusive.
16 |
# File 'lib/openai/models/admin/organization/usage_vector_stores_params.rb', line 16 required :start_time, Integer |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/openai/models/admin/organization/usage_vector_stores_params.rb', line 91
|