
com.pulumi.azurenative.logic.outputs.GetIntegrationAccountPartnerResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.logic.outputs;
import com.pulumi.azurenative.logic.outputs.PartnerContentResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetIntegrationAccountPartnerResult {
/**
* @return The changed time.
*
*/
private String changedTime;
/**
* @return The partner content.
*
*/
private PartnerContentResponse content;
/**
* @return The created time.
*
*/
private String createdTime;
/**
* @return The resource id.
*
*/
private String id;
/**
* @return The resource location.
*
*/
private @Nullable String location;
/**
* @return The metadata.
*
*/
private @Nullable Object metadata;
/**
* @return Gets the resource name.
*
*/
private String name;
/**
* @return The partner type.
*
*/
private String partnerType;
/**
* @return The resource tags.
*
*/
private @Nullable Map tags;
/**
* @return Gets the resource type.
*
*/
private String type;
private GetIntegrationAccountPartnerResult() {}
/**
* @return The changed time.
*
*/
public String changedTime() {
return this.changedTime;
}
/**
* @return The partner content.
*
*/
public PartnerContentResponse content() {
return this.content;
}
/**
* @return The created time.
*
*/
public String createdTime() {
return this.createdTime;
}
/**
* @return The resource id.
*
*/
public String id() {
return this.id;
}
/**
* @return The resource location.
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return The metadata.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy