google_cloudevents/google/events/cloud/eventarc/v1/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
// This file is @generated by prost-build.
/// A representation of the Channel resource.
/// A Channel is a resource on which event providers publish their events.
/// The published events are delivered through the transport associated with the
/// channel. Note that a channel is associated with exactly one event provider.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Channel {
/// Required. The resource name of the channel. Must be unique within the
/// location on the project and must be in
/// `projects/{project}/locations/{location}/channels/{channel_id}` format.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::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.
#[prost(string, tag = "2")]
pub uid: ::prost::alloc::string::String,
/// Output only. The creation time.
#[prost(message, optional, tag = "5")]
pub create_time: ::core::option::Option<::pbjson_types::Timestamp>,
/// Output only. The last-modified time.
#[prost(message, optional, tag = "6")]
pub update_time: ::core::option::Option<::pbjson_types::Timestamp>,
/// The name of the event provider (e.g. Eventarc SaaS partner) associated
/// with the channel. This provider will be granted permissions to publish
/// events to the channel. Format:
/// `projects/{project}/locations/{location}/providers/{provider_id}`.
#[prost(string, tag = "7")]
pub provider: ::prost::alloc::string::String,
/// Output only. The state of a Channel.
#[prost(enumeration = "channel::State", tag = "9")]
pub state: i32,
/// Output only. The activation token for the channel. The token must be used
/// by the provider to register the channel for publishing.
#[prost(string, tag = "10")]
pub activation_token: ::prost::alloc::string::String,
/// 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/*`.
#[prost(string, tag = "11")]
pub crypto_key_name: ::prost::alloc::string::String,
#[prost(oneof = "channel::Transport", tags = "8")]
pub transport: ::core::option::Option<channel::Transport>,
}
/// Nested message and enum types in `Channel`.
pub mod channel {
/// State lists all the possible states of a Channel
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Default value. This value is unused.
Unspecified = 0,
/// The PENDING state indicates that a Channel has been created successfully
/// and there is a new activation token available for the subscriber to use
/// to convey the Channel to the provider in order to create a Connection.
Pending = 1,
/// The ACTIVE state indicates that a Channel has been successfully
/// connected with the event provider.
/// An ACTIVE Channel is ready to receive and route events from the
/// event provider.
Active = 2,
/// The INACTIVE state indicates that the Channel cannot receive events
/// permanently. There are two possible cases this state can happen:
///
/// 1. The SaaS provider disconnected from this Channel.
/// 2. The Channel activation token has expired but the SaaS provider
/// wasn't connected.
///
/// To re-establish a Connection with a provider, the subscriber
/// should create a new Channel and give it to the provider.
Inactive = 3,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "STATE_UNSPECIFIED",
Self::Pending => "PENDING",
Self::Active => "ACTIVE",
Self::Inactive => "INACTIVE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"PENDING" => Some(Self::Pending),
"ACTIVE" => Some(Self::Active),
"INACTIVE" => Some(Self::Inactive),
_ => None,
}
}
}
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Transport {
/// Output only. The name of the Pub/Sub topic created and managed by
/// Eventarc system as a transport for the event delivery. Format:
/// `projects/{project}/topics/{topic_id}`.
#[prost(string, tag = "8")]
PubsubTopic(::prost::alloc::string::String),
}
}
/// A representation of the ChannelConnection resource.
/// A ChannelConnection is a resource which event providers create during the
/// activation process to establish a connection between the provider and the
/// subscriber channel.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ChannelConnection {
/// Required. The name of the connection.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. Server assigned ID of the resource.
/// The server guarantees uniqueness and immutability until deleted.
#[prost(string, tag = "2")]
pub uid: ::prost::alloc::string::String,
/// Required. The name of the connected subscriber Channel.
/// This is a weak reference to avoid cross project and cross accounts
/// references. This must be in
/// `projects/{project}/location/{location}/channels/{channel_id}` format.
#[prost(string, tag = "5")]
pub channel: ::prost::alloc::string::String,
/// Output only. The creation time.
#[prost(message, optional, tag = "6")]
pub create_time: ::core::option::Option<::pbjson_types::Timestamp>,
/// Output only. The last-modified time.
#[prost(message, optional, tag = "7")]
pub update_time: ::core::option::Option<::pbjson_types::Timestamp>,
}
/// A representation of the trigger resource.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Trigger {
/// Required. The resource name of the trigger. Must be unique within the
/// location of the project and must be in
/// `projects/{project}/locations/{location}/triggers/{trigger}` format.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. Server-assigned unique identifier for the trigger. The value
/// is a UUID4 string and guaranteed to remain unchanged until the resource is
/// deleted.
#[prost(string, tag = "2")]
pub uid: ::prost::alloc::string::String,
/// Output only. The creation time.
#[prost(message, optional, tag = "5")]
pub create_time: ::core::option::Option<::pbjson_types::Timestamp>,
/// Output only. The last-modified time.
#[prost(message, optional, tag = "6")]
pub update_time: ::core::option::Option<::pbjson_types::Timestamp>,
/// Required. Unordered list. The list of filters that applies to event
/// attributes. Only events that match all the provided filters are sent to the
/// destination.
#[prost(message, repeated, tag = "8")]
pub event_filters: ::prost::alloc::vec::Vec<EventFilter>,
/// Optional. The IAM service account email associated with the trigger. The
/// service account represents the identity of the trigger.
///
/// The principal who calls this API must have the `iam.serviceAccounts.actAs`
/// permission in the service account. See
/// <https://cloud.google.com/iam/docs/understanding-service-accounts?hl=en#sa_common>
/// for more information.
///
/// For Cloud Run destinations, this service account is used to generate
/// identity tokens when invoking the service. See
/// <https://cloud.google.com/run/docs/triggering/pubsub-push#create-service-account>
/// for information on how to invoke authenticated Cloud Run services.
/// To create Audit Log triggers, the service account should also
/// have the `roles/eventarc.eventReceiver` IAM role.
#[prost(string, tag = "9")]
pub service_account: ::prost::alloc::string::String,
/// Required. Destination specifies where the events should be sent to.
#[prost(message, optional, tag = "10")]
pub destination: ::core::option::Option<Destination>,
/// Optional. To deliver messages, Eventarc might use other Google Cloud
/// products as a transport intermediary. This field contains a reference to
/// that transport intermediary. This information can be used for debugging
/// purposes.
#[prost(message, optional, tag = "11")]
pub transport: ::core::option::Option<Transport>,
/// Optional. User labels attached to the triggers that can be used to group
/// resources.
#[prost(map = "string, string", tag = "12")]
pub labels: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Optional. The name of the channel associated with the trigger in
/// `projects/{project}/locations/{location}/channels/{channel}` format.
/// You must provide a channel to receive events from Eventarc SaaS partners.
#[prost(string, tag = "13")]
pub channel: ::prost::alloc::string::String,
/// Output only. The reason(s) why a trigger is in FAILED state.
#[prost(map = "string, message", tag = "15")]
pub conditions: ::std::collections::HashMap<
::prost::alloc::string::String,
StateCondition,
>,
/// Optional. EventDataContentType specifies the type of payload in MIME
/// format that is expected from the CloudEvent data field. This is set to
/// `application/json` if the value is not defined.
#[prost(string, tag = "16")]
pub event_data_content_type: ::prost::alloc::string::String,
/// Output only. This checksum is computed by the server based on the value of
/// other fields, and might be sent only on create requests to ensure that the
/// client has an up-to-date value before proceeding.
#[prost(string, tag = "99")]
pub etag: ::prost::alloc::string::String,
}
/// Filters events based on exact matches on the CloudEvents attributes.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventFilter {
/// Required. The name of a CloudEvents attribute. Currently, only a subset of
/// attributes are supported for filtering.
///
/// All triggers MUST provide a filter for the 'type' attribute.
#[prost(string, tag = "1")]
pub attribute: ::prost::alloc::string::String,
/// Required. The value for the attribute.
#[prost(string, tag = "2")]
pub value: ::prost::alloc::string::String,
/// Optional. The operator used for matching the events with the value of the
/// filter. If not specified, only events that have an exact key-value pair
/// specified in the filter are matched. The only allowed value is
/// `match-path-pattern`.
#[prost(string, tag = "3")]
pub operator: ::prost::alloc::string::String,
}
/// A condition that is part of the trigger state computation.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StateCondition {
/// The canonical code of the condition.
#[prost(enumeration = "super::super::super::super::rpc::Code", tag = "1")]
pub code: i32,
/// Human-readable message.
#[prost(string, tag = "2")]
pub message: ::prost::alloc::string::String,
}
/// Represents a target of an invocation over HTTP.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Destination {
#[prost(oneof = "destination::Descriptor", tags = "1, 2, 3, 4")]
pub descriptor: ::core::option::Option<destination::Descriptor>,
}
/// Nested message and enum types in `Destination`.
pub mod destination {
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Descriptor {
/// Cloud Run fully-managed resource that receives the events. The resource
/// should be in the same project as the trigger.
#[prost(message, tag = "1")]
CloudRun(super::CloudRun),
/// The Cloud Function resource name. Only Cloud Functions V2 is supported.
/// Format: `projects/{project}/locations/{location}/functions/{function}`
///
/// This is a read-only field. Creating Cloud Functions V2 triggers is only
/// supported via the Cloud Functions product. An error will be returned if
/// the user sets this value.
#[prost(string, tag = "2")]
CloudFunction(::prost::alloc::string::String),
/// A GKE service capable of receiving events. The service should be running
/// in the same project as the trigger.
#[prost(message, tag = "3")]
Gke(super::Gke),
/// The resource name of the Workflow whose Executions are triggered by
/// the events. The Workflow resource should be deployed in the same project
/// as the trigger.
/// Format: `projects/{project}/locations/{location}/workflows/{workflow}`
#[prost(string, tag = "4")]
Workflow(::prost::alloc::string::String),
}
}
/// Represents the transport intermediaries created for the trigger to
/// deliver events.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Transport {
#[prost(oneof = "transport::Intermediary", tags = "1")]
pub intermediary: ::core::option::Option<transport::Intermediary>,
}
/// Nested message and enum types in `Transport`.
pub mod transport {
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Intermediary {
/// The Pub/Sub topic and subscription used by Eventarc as a transport
/// intermediary.
#[prost(message, tag = "1")]
Pubsub(super::Pubsub),
}
}
/// Represents a Cloud Run destination.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CloudRun {
/// Required. The name of the Cloud Run service being addressed. See
/// <https://cloud.google.com/run/docs/reference/rest/v1/namespaces.services.>
///
/// Only services located in the same project as the trigger object
/// can be addressed.
#[prost(string, tag = "1")]
pub service: ::prost::alloc::string::String,
/// Optional. The relative path on the Cloud Run service the events should be
/// sent to.
///
/// The value must conform to the definition of a URI path segment (section 3.3
/// of RFC2396). Examples: "/route", "route", "route/subroute".
#[prost(string, tag = "2")]
pub path: ::prost::alloc::string::String,
/// Required. The region the Cloud Run service is deployed in.
#[prost(string, tag = "3")]
pub region: ::prost::alloc::string::String,
}
/// Represents a GKE destination.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Gke {
/// Required. The name of the cluster the GKE service is running in. The
/// cluster must be running in the same project as the trigger being created.
#[prost(string, tag = "1")]
pub cluster: ::prost::alloc::string::String,
/// Required. The name of the Google Compute Engine in which the cluster
/// resides, which can either be compute zone (for example, us-central1-a) for
/// the zonal clusters or region (for example, us-central1) for regional
/// clusters.
#[prost(string, tag = "2")]
pub location: ::prost::alloc::string::String,
/// Required. The namespace the GKE service is running in.
#[prost(string, tag = "3")]
pub namespace: ::prost::alloc::string::String,
/// Required. Name of the GKE service.
#[prost(string, tag = "4")]
pub service: ::prost::alloc::string::String,
/// Optional. The relative path on the GKE service the events should be sent
/// to.
///
/// The value must conform to the definition of a URI path segment (section 3.3
/// of RFC2396). Examples: "/route", "route", "route/subroute".
#[prost(string, tag = "5")]
pub path: ::prost::alloc::string::String,
}
/// Represents a Pub/Sub transport.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Pubsub {
/// Optional. The name of the Pub/Sub topic created and managed by Eventarc as
/// a transport for the event delivery. Format:
/// `projects/{PROJECT_ID}/topics/{TOPIC_NAME}`.
///
/// You can set an existing topic for triggers of the type
/// `google.cloud.pubsub.topic.v1.messagePublished`. The topic you provide
/// here is not deleted by Eventarc at trigger deletion.
#[prost(string, tag = "1")]
pub topic: ::prost::alloc::string::String,
/// Output only. The name of the Pub/Sub subscription created and managed by
/// Eventarc as a transport for the event delivery. Format:
/// `projects/{PROJECT_ID}/subscriptions/{SUBSCRIPTION_NAME}`.
#[prost(string, tag = "2")]
pub subscription: ::prost::alloc::string::String,
}
/// The data within all Trigger events.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TriggerEventData {
/// The Trigger event payload.
#[prost(message, optional, tag = "1")]
pub payload: ::core::option::Option<Trigger>,
}
/// The data within all Channel events.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ChannelEventData {
/// The Channel event payload.
#[prost(message, optional, tag = "1")]
pub payload: ::core::option::Option<Channel>,
}
/// The data within all ChannelConnection events.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ChannelConnectionEventData {
/// The ChannelConnection event payload.
#[prost(message, optional, tag = "1")]
pub payload: ::core::option::Option<ChannelConnection>,
}
/// The CloudEvent raised when a Trigger is created.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TriggerCreatedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<TriggerEventData>,
}
/// The CloudEvent raised when a Trigger is updated.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TriggerUpdatedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<TriggerEventData>,
}
/// The CloudEvent raised when a Trigger is deleted.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TriggerDeletedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<TriggerEventData>,
}
/// The CloudEvent raised when a Channel is created.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ChannelCreatedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<ChannelEventData>,
}
/// The CloudEvent raised when a Channel is updated.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ChannelUpdatedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<ChannelEventData>,
}
/// The CloudEvent raised when a Channel is deleted.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ChannelDeletedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<ChannelEventData>,
}
/// The CloudEvent raised when a ChannelConnection is created.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ChannelConnectionCreatedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<ChannelConnectionEventData>,
}
/// The CloudEvent raised when a ChannelConnection is deleted.
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ChannelConnectionDeletedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<ChannelConnectionEventData>,
}