UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

59 lines (58 loc) 1.58 kB
import * as pulumi from "@pulumi/pulumi"; /** * Generate credentials for publishing SKU images. * * Uses Azure REST API version 2022-01-01-preview. */ export declare function listVendorSkusCredential(args: ListVendorSkusCredentialArgs, opts?: pulumi.InvokeOptions): Promise<ListVendorSkusCredentialResult>; export interface ListVendorSkusCredentialArgs { /** * The name of the sku. */ skuName: string; /** * The name of the vendor. */ vendorName: string; } /** * The Sku credential definition. */ export interface ListVendorSkusCredentialResult { /** * The Acr server url */ readonly acrServerUrl?: string; /** * The credential value. */ readonly acrToken?: string; /** * The UTC time when credential will expire. */ readonly expiry?: string; /** * The repositories that could be accessed using the current credential. */ readonly repositories?: string[]; /** * The username of the sku credential. */ readonly username?: string; } /** * Generate credentials for publishing SKU images. * * Uses Azure REST API version 2022-01-01-preview. */ export declare function listVendorSkusCredentialOutput(args: ListVendorSkusCredentialOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListVendorSkusCredentialResult>; export interface ListVendorSkusCredentialOutputArgs { /** * The name of the sku. */ skuName: pulumi.Input<string>; /** * The name of the vendor. */ vendorName: pulumi.Input<string>; }