@datarobot/pulumi-datarobot 0.10.37 → 0.10.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/input.d.ts +14 -2
- package/types/output.d.ts +14 -2
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -127,14 +127,26 @@ export interface ArtifactSpecContainerGroupContainer {
|
|
|
127
127
|
startupProbe?: pulumi.Input<inputs.ArtifactSpecContainerGroupContainerStartupProbe>;
|
|
128
128
|
}
|
|
129
129
|
export interface ArtifactSpecContainerGroupContainerEnvironmentVar {
|
|
130
|
+
/**
|
|
131
|
+
* DataRobot credential ID. Required when source is "dr-credential".
|
|
132
|
+
*/
|
|
133
|
+
credentialId?: pulumi.Input<string>;
|
|
134
|
+
/**
|
|
135
|
+
* Key within the credential. Required when source is "dr-credential".
|
|
136
|
+
*/
|
|
137
|
+
key?: pulumi.Input<string>;
|
|
130
138
|
/**
|
|
131
139
|
* Name of the environment variable.
|
|
132
140
|
*/
|
|
133
141
|
name: pulumi.Input<string>;
|
|
134
142
|
/**
|
|
135
|
-
*
|
|
143
|
+
* Source type: "string" for plain text values, "dr-credential" for DataRobot credentials. Defaults to "string".
|
|
136
144
|
*/
|
|
137
|
-
|
|
145
|
+
source?: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* Value of the environment variable. Required when source is "string".
|
|
148
|
+
*/
|
|
149
|
+
value?: pulumi.Input<string>;
|
|
138
150
|
}
|
|
139
151
|
export interface ArtifactSpecContainerGroupContainerLivenessProbe {
|
|
140
152
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -126,14 +126,26 @@ export interface ArtifactSpecContainerGroupContainer {
|
|
|
126
126
|
startupProbe?: outputs.ArtifactSpecContainerGroupContainerStartupProbe;
|
|
127
127
|
}
|
|
128
128
|
export interface ArtifactSpecContainerGroupContainerEnvironmentVar {
|
|
129
|
+
/**
|
|
130
|
+
* DataRobot credential ID. Required when source is "dr-credential".
|
|
131
|
+
*/
|
|
132
|
+
credentialId?: string;
|
|
133
|
+
/**
|
|
134
|
+
* Key within the credential. Required when source is "dr-credential".
|
|
135
|
+
*/
|
|
136
|
+
key?: string;
|
|
129
137
|
/**
|
|
130
138
|
* Name of the environment variable.
|
|
131
139
|
*/
|
|
132
140
|
name: string;
|
|
133
141
|
/**
|
|
134
|
-
*
|
|
142
|
+
* Source type: "string" for plain text values, "dr-credential" for DataRobot credentials. Defaults to "string".
|
|
135
143
|
*/
|
|
136
|
-
|
|
144
|
+
source: string;
|
|
145
|
+
/**
|
|
146
|
+
* Value of the environment variable. Required when source is "string".
|
|
147
|
+
*/
|
|
148
|
+
value?: string;
|
|
137
149
|
}
|
|
138
150
|
export interface ArtifactSpecContainerGroupContainerLivenessProbe {
|
|
139
151
|
/**
|