// Code generated by smithy-go-codegen DO NOT EDIT. package types type AccessPolicyType string // Enum values for AccessPolicyType const ( // data policy type AccessPolicyTypeData AccessPolicyType = "data" ) // Values returns all known values for AccessPolicyType. Note that this can be // expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (AccessPolicyType) Values() []AccessPolicyType { return []AccessPolicyType{ "data", } } type CollectionStatus string // Enum values for CollectionStatus const ( // Creating collection resource CollectionStatusCreating CollectionStatus = "CREATING" // Deleting collection resource CollectionStatusDeleting CollectionStatus = "DELETING" // Collection resource is ready to use CollectionStatusActive CollectionStatus = "ACTIVE" // Collection resource create or delete failed CollectionStatusFailed CollectionStatus = "FAILED" ) // Values returns all known values for CollectionStatus. Note that this can be // expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (CollectionStatus) Values() []CollectionStatus { return []CollectionStatus{ "CREATING", "DELETING", "ACTIVE", "FAILED", } } type CollectionType string // Enum values for CollectionType const ( // Search collection type CollectionTypeSearch CollectionType = "SEARCH" // Timeseries collection type CollectionTypeTimeseries CollectionType = "TIMESERIES" // Vectorsearch collection type CollectionTypeVectorsearch CollectionType = "VECTORSEARCH" ) // Values returns all known values for CollectionType. Note that this can be // expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (CollectionType) Values() []CollectionType { return []CollectionType{ "SEARCH", "TIMESERIES", "VECTORSEARCH", } } type SecurityConfigType string // Enum values for SecurityConfigType const ( // saml provider SecurityConfigTypeSaml SecurityConfigType = "saml" ) // Values returns all known values for SecurityConfigType. Note that this can be // expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (SecurityConfigType) Values() []SecurityConfigType { return []SecurityConfigType{ "saml", } } type SecurityPolicyType string // Enum values for SecurityPolicyType const ( // encryption policy type SecurityPolicyTypeEncryption SecurityPolicyType = "encryption" // network policy type SecurityPolicyTypeNetwork SecurityPolicyType = "network" ) // Values returns all known values for SecurityPolicyType. Note that this can be // expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (SecurityPolicyType) Values() []SecurityPolicyType { return []SecurityPolicyType{ "encryption", "network", } } type VpcEndpointStatus string // Enum values for VpcEndpointStatus const ( // Pending VPCEndpoint resource VpcEndpointStatusPending VpcEndpointStatus = "PENDING" // Deleting VPCEndpoint resource VpcEndpointStatusDeleting VpcEndpointStatus = "DELETING" // VPCEndpoint resource is ready to use VpcEndpointStatusActive VpcEndpointStatus = "ACTIVE" // VPCEndpoint resource create or delete failed VpcEndpointStatusFailed VpcEndpointStatus = "FAILED" ) // Values returns all known values for VpcEndpointStatus. Note that this can be // expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (VpcEndpointStatus) Values() []VpcEndpointStatus { return []VpcEndpointStatus{ "PENDING", "DELETING", "ACTIVE", "FAILED", } }