@pulumi/cloud
Advanced tools
Comparing version 0.9.12 to 0.10.0-rc1
@@ -153,3 +153,3 @@ /// <reference types="node" /> | ||
*/ | ||
proxy(path: string, target: string | pulumi.Computed<Endpoint>): void; | ||
proxy(path: string, target: string | pulumi.Output<Endpoint>): void; | ||
/** | ||
@@ -229,3 +229,3 @@ * Routes any requests with given HTTP method on the given path to the | ||
*/ | ||
url: pulumi.Computed<string>; | ||
url: pulumi.Output<string>; | ||
/** | ||
@@ -236,3 +236,3 @@ * An optional list of custom domain names, each corresponding to a | ||
*/ | ||
customDomainNames: pulumi.Computed<string>[]; | ||
customDomainNames: pulumi.Output<string>[]; | ||
} | ||
@@ -239,0 +239,0 @@ /** |
{ | ||
"name": "@pulumi/cloud", | ||
"version": "v0.9.12", | ||
"version": "v0.10.0-rc1", | ||
"description": "A highly productive, cloud neutral programming model.", | ||
@@ -18,4 +18,4 @@ "keywords": [ | ||
"peerDependencies": { | ||
"pulumi": "*" | ||
"pulumi": "latest" | ||
} | ||
} |
@@ -46,3 +46,3 @@ import * as pulumi from "pulumi"; | ||
environment?: { | ||
[name: string]: pulumi.ComputedValue<string>; | ||
[name: string]: pulumi.Input<string>; | ||
}; | ||
@@ -54,3 +54,3 @@ /** | ||
*/ | ||
memory?: pulumi.ComputedValue<number>; | ||
memory?: pulumi.Input<number>; | ||
/** | ||
@@ -63,3 +63,3 @@ * The amount of memory to reserve for the container, but the container will | ||
*/ | ||
memoryReservation?: pulumi.ComputedValue<number>; | ||
memoryReservation?: pulumi.Input<number>; | ||
/** | ||
@@ -89,3 +89,3 @@ * An array of ports to publish from the container. Ports are exposed using the TCP protocol. If the [external] | ||
*/ | ||
command?: pulumi.ComputedValue<string[]>; | ||
command?: pulumi.Input<string[]>; | ||
} | ||
@@ -197,3 +197,3 @@ /** | ||
*/ | ||
endpoints: Promise<{ | ||
endpoints: pulumi.Output<{ | ||
[containerName: string]: { | ||
@@ -230,5 +230,3 @@ [port: number]: Endpoint; | ||
*/ | ||
environment?: { | ||
[name: string]: pulumi.ComputedValue<string>; | ||
}; | ||
environment?: Record<string, string>; | ||
/** | ||
@@ -235,0 +233,0 @@ * The properties of the host where this task can run. |
@@ -16,3 +16,3 @@ import * as pulumi from "pulumi"; | ||
*/ | ||
new (name: string, primaryKey?: string, primaryKeyType?: PrimaryKeyType, opts?: pulumi.ResourceOptions): Table; | ||
new (name: string, primaryKey?: pulumi.Input<string>, primaryKeyType?: pulumi.Input<PrimaryKeyType>, opts?: pulumi.ResourceOptions): Table; | ||
} | ||
@@ -41,7 +41,7 @@ export declare let Table: TableConstructor; | ||
*/ | ||
readonly primaryKey: string; | ||
readonly primaryKey: pulumi.Output<string>; | ||
/** | ||
* The type of the primary key. | ||
*/ | ||
readonly primaryKeyType: string; | ||
readonly primaryKeyType: pulumi.Output<string>; | ||
/** | ||
@@ -48,0 +48,0 @@ * Get a document from the table. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
36697
832