io.github.springwolf.asyncapi.v3.bindings.googlepubsub.GooglePubSubMessageStoragePolicy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springwolf-asyncapi Show documentation
Show all versions of springwolf-asyncapi Show documentation
Springwolf implementation of the AsyncApi specification
// SPDX-License-Identifier: Apache-2.0
package io.github.springwolf.asyncapi.v3.bindings.googlepubsub;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import java.util.List;
/**
* The Message Storage Policy Object is used to describe the Google Cloud Pub/Sub MessageStoragePolicy Object
* with AsyncAPI.
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode
public class GooglePubSubMessageStoragePolicy {
/**
* A list of IDs of GCP regions where messages that are published to the topic may be persisted in storage
*/
@JsonProperty("allowedPersistenceRegions")
private List allowedPersistenceRegions;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy