pub struct MessageBus {
pub annotations: Option<HashMap<String, String>>,
pub create_time: Option<DateTime<Utc>>,
pub crypto_key_name: Option<String>,
pub display_name: Option<String>,
pub etag: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub logging_config: Option<LoggingConfig>,
pub name: Option<String>,
pub uid: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
MessageBus for the messages flowing through the system. The admin has visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations message buses create projects (request)
- locations message buses get projects (response)
- locations message buses patch projects (request)
Fields§
§annotations: Option<HashMap<String, String>>Optional. Resource annotations.
create_time: Option<DateTime<Utc>>Output only. The creation time.
crypto_key_name: Option<String>Optional. Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt their event data. It must match the pattern projects/*/locations/*/keyRings/*/cryptoKeys/*.
display_name: Option<String>Optional. Resource display name.
etag: Option<String>Output only. This checksum is computed by the server based on the value of other fields, and might be sent only on update and delete requests to ensure that the client has an up-to-date value before proceeding.
labels: Option<HashMap<String, String>>Optional. Resource labels.
logging_config: Option<LoggingConfig>Optional. Config to control Platform logging for the Message Bus. This log configuration is applied to the Message Bus itself, and all the Enrollments attached to it.
name: Option<String>Identifier. Resource name of the form projects/{project}/locations/{location}/messageBuses/{message_bus}
uid: Option<String>Output only. Server assigned unique identifier for the channel. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted.
update_time: Option<DateTime<Utc>>Output only. The last-modified time.
Trait Implementations§
Source§impl Clone for MessageBus
impl Clone for MessageBus
Source§fn clone(&self) -> MessageBus
fn clone(&self) -> MessageBus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more