All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.eventbridge.models.GetEventBusResponse Maven / Gradle / Ivy

There is a newer version: 1.3.14
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eventbridge.models;

import com.aliyun.tea.*;

/**
 * The response of get the detail of EventBus
 */
public class GetEventBusResponse extends TeaModel {
    @NameInMap("RequestId")
    @Validation(required = true)
    public String requestId;

    @NameInMap("ResourceOwnerAccountId")
    @Validation(required = true)
    public String resourceOwnerAccountId;

    @NameInMap("EventBusARN")
    @Validation(required = true)
    public String eventBusARN;

    @NameInMap("EventBusName")
    @Validation(required = true)
    public String eventBusName;

    @NameInMap("Description")
    @Validation(required = true)
    public String description;

    @NameInMap("CreateTimestamp")
    @Validation(required = true)
    public Long createTimestamp;

    @NameInMap("Tags")
    public java.util.Map tags;

    public static GetEventBusResponse build(java.util.Map map) {
        GetEventBusResponse self = new GetEventBusResponse();
        return TeaModel.build(map, self);
    }

    public GetEventBusResponse setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public GetEventBusResponse setResourceOwnerAccountId(String resourceOwnerAccountId) {
        this.resourceOwnerAccountId = resourceOwnerAccountId;
        return this;
    }
    public String getResourceOwnerAccountId() {
        return this.resourceOwnerAccountId;
    }

    public GetEventBusResponse setEventBusARN(String eventBusARN) {
        this.eventBusARN = eventBusARN;
        return this;
    }
    public String getEventBusARN() {
        return this.eventBusARN;
    }

    public GetEventBusResponse setEventBusName(String eventBusName) {
        this.eventBusName = eventBusName;
        return this;
    }
    public String getEventBusName() {
        return this.eventBusName;
    }

    public GetEventBusResponse setDescription(String description) {
        this.description = description;
        return this;
    }
    public String getDescription() {
        return this.description;
    }

    public GetEventBusResponse setCreateTimestamp(Long createTimestamp) {
        this.createTimestamp = createTimestamp;
        return this;
    }
    public Long getCreateTimestamp() {
        return this.createTimestamp;
    }

    public GetEventBusResponse setTags(java.util.Map tags) {
        this.tags = tags;
        return this;
    }
    public java.util.Map getTags() {
        return this.tags;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy