Function
SecretItemcreate
Declaration [src]
void
secret_item_create (
  SecretCollection* collection,
  const SecretSchema* schema,
  GHashTable* attributes,
  const gchar* label,
  SecretValue* value,
  SecretItemCreateFlags flags,
  GCancellable* cancellable,
  GAsyncReadyCallback callback,
  gpointer user_data
)
Description [src]
Create a new item in the secret service.
If the flags contains SECRET_ITEM_CREATE_REPLACE, then the secret
service will search for an item matching the attributes, and update that item
instead of creating a new one.
This method may block indefinitely and should not be used in user interface
threads. The secret service may prompt the user. secret_service_prompt()
will be used to handle any prompts that are required.
Parameters
- collection
- 
            Type: SecretCollectionA secret collection to create this item in. The data is owned by the caller of the function. 
- schema
- 
            Type: SecretSchemaThe schema for the attributes. The argument can be NULL.The data is owned by the caller of the function. 
- attributes
- 
            Type: GHashTableAttributes for the new item. The data is owned by the caller of the function. 
- label
- 
            Type: const gchar*Label for the new item. The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. 
- value
- 
            Type: SecretValueSecret value for the new item. The data is owned by the caller of the function. 
- flags
- 
            Type: SecretItemCreateFlagsFlags for the creation of the new item. 
- cancellable
- 
            Type: GCancellableOptional cancellation object. The argument can be NULL.The data is owned by the caller of the function. 
- callback
- 
            Type: GAsyncReadyCallbackCalled when the operation completes. 
- user_data
- 
            Type: gpointerData to pass to the callback. The argument can be NULL.The data is owned by the caller of the function.