opt_ins
Creates, updates, deletes, gets or lists a opt_ins
resource.
Overview
Name | opt_ins |
Type | Resource |
Id | confluent.stream_sharing.opt_ins |
Fields
Name | Datatype | Description |
---|---|---|
api_version | string | APIVersion defines the schema version of this representation of a resource. |
kind | string | Kind defines the object this REST resource represents. |
stream_share_enabled | boolean | Enable stream sharing for the organization |
Methods
SELECT
examples
Returns the organization's stream sharing opt-in settings.
SELECT
api_version,
kind,
stream_share_enabled
FROM confluent.stream_sharing.opt_ins
;
UPDATE
example
Updates a opt_ins
resource.
/*+ update */
UPDATE confluent.stream_sharing.opt_ins
SET
stream_share_enabled = true|false
WHERE
;