import * as pulumi from "@pulumi/pulumi"; export declare function getArchitecture(args: GetArchitectureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getArchitecture. */ export interface GetArchitectureArgs { name: string; } /** * A collection of values returned by getArchitecture. */ export interface GetArchitectureResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly operatingsystemIds: number[]; } export declare function getArchitectureOutput(args: GetArchitectureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getArchitecture. */ export interface GetArchitectureOutputArgs { name: pulumi.Input; }