com.pulumi.azurenative.logic.outputs.GetWorkflowResult 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.FlowAccessControlConfigurationResponse;
import com.pulumi.azurenative.logic.outputs.FlowEndpointsConfigurationResponse;
import com.pulumi.azurenative.logic.outputs.ManagedServiceIdentityResponse;
import com.pulumi.azurenative.logic.outputs.ResourceReferenceResponse;
import com.pulumi.azurenative.logic.outputs.SkuResponse;
import com.pulumi.azurenative.logic.outputs.WorkflowParameterResponse;
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 GetWorkflowResult {
/**
* @return The access control configuration.
*
*/
private @Nullable FlowAccessControlConfigurationResponse accessControl;
/**
* @return Gets the access endpoint.
*
*/
private String accessEndpoint;
/**
* @return Gets the changed time.
*
*/
private String changedTime;
/**
* @return Gets the created time.
*
*/
private String createdTime;
/**
* @return The definition.
*
*/
private @Nullable Object definition;
/**
* @return The endpoints configuration.
*
*/
private @Nullable FlowEndpointsConfigurationResponse endpointsConfiguration;
/**
* @return The resource id.
*
*/
private String id;
/**
* @return Managed service identity properties.
*
*/
private @Nullable ManagedServiceIdentityResponse identity;
/**
* @return The integration account.
*
*/
private @Nullable ResourceReferenceResponse integrationAccount;
/**
* @return The integration service environment.
*
*/
private @Nullable ResourceReferenceResponse integrationServiceEnvironment;
/**
* @return The resource location.
*
*/
private @Nullable String location;
/**
* @return Gets the resource name.
*
*/
private String name;
/**
* @return The parameters.
*
*/
private @Nullable Map parameters;
/**
* @return Gets the provisioning state.
*
*/
private String provisioningState;
/**
* @return The sku.
*
*/
private SkuResponse sku;
/**
* @return The state.
*
*/
private @Nullable String state;
/**
* @return The resource tags.
*
*/
private @Nullable Map tags;
/**
* @return Gets the resource type.
*
*/
private String type;
/**
* @return Gets the version.
*
*/
private String version;
private GetWorkflowResult() {}
/**
* @return The access control configuration.
*
*/
public Optional accessControl() {
return Optional.ofNullable(this.accessControl);
}
/**
* @return Gets the access endpoint.
*
*/
public String accessEndpoint() {
return this.accessEndpoint;
}
/**
* @return Gets the changed time.
*
*/
public String changedTime() {
return this.changedTime;
}
/**
* @return Gets the created time.
*
*/
public String createdTime() {
return this.createdTime;
}
/**
* @return The definition.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy