import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * A owner can set up authorization permissions on their resources. */ export declare function getOwner(args: GetOwnerArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetOwnerArgs { /** * The ID of the domain in which you want to add the entity owner. */ domainIdentifier: string; /** * The ID of the entity to which you want to add an owner. */ entityIdentifier: string; /** * The type of an entity. */ entityType: enums.datazone.OwnerEntityType; /** * The ID of the entity to which you want to add an owner. */ ownerIdentifier: string; /** * The owner that you want to add to the entity. */ ownerType: enums.datazone.OwnerType; } export interface GetOwnerResult { /** * The ID of the entity to which you want to add an owner. */ readonly ownerIdentifier?: string; /** * The owner that you want to add to the entity. */ readonly ownerType?: enums.datazone.OwnerType; } /** * A owner can set up authorization permissions on their resources. */ export declare function getOwnerOutput(args: GetOwnerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetOwnerOutputArgs { /** * The ID of the domain in which you want to add the entity owner. */ domainIdentifier: pulumi.Input; /** * The ID of the entity to which you want to add an owner. */ entityIdentifier: pulumi.Input; /** * The type of an entity. */ entityType: pulumi.Input; /** * The ID of the entity to which you want to add an owner. */ ownerIdentifier: pulumi.Input; /** * The owner that you want to add to the entity. */ ownerType: pulumi.Input; }