@pulumi/pulumi 3.68.0 → 3.69.0

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/README.md CHANGED
@@ -17,7 +17,7 @@ $ yarn add @pulumi/pulumi
17
17
  ```
18
18
 
19
19
  This SDK is meant for use with the Pulumi CLI. Visit
20
- [Pulumi's Download & Install](https://www.pulumi.com/docs/get-started/install/) to install the CLI.
20
+ [Pulumi's Download & Install](https://www.pulumi.com/docs/install/) to install the CLI.
21
21
 
22
22
  ## Building and Testing
23
23
 
@@ -14,7 +14,7 @@ export declare class RemoteStack {
14
14
  get name(): string;
15
15
  /**
16
16
  * Creates or updates the resources in a stack by executing the program in the Workspace.
17
- * https://www.pulumi.com/docs/reference/cli/pulumi_up/
17
+ * https://www.pulumi.com/docs/cli/commands/pulumi_up/
18
18
  * This operation runs remotely.
19
19
  *
20
20
  * @param opts Options to customize the behavior of the update.
@@ -22,7 +22,7 @@ export declare class RemoteStack {
22
22
  up(opts?: RemoteUpOptions): Promise<UpResult>;
23
23
  /**
24
24
  * Performs a dry-run update to a stack, returning pending changes.
25
- * https://www.pulumi.com/docs/reference/cli/pulumi_preview/
25
+ * https://www.pulumi.com/docs/cli/commands/pulumi_preview/
26
26
  * This operation runs remotely.
27
27
  *
28
28
  * @param opts Options to customize the behavior of the preview.
@@ -38,7 +38,7 @@ class RemoteStack {
38
38
  }
39
39
  /**
40
40
  * Creates or updates the resources in a stack by executing the program in the Workspace.
41
- * https://www.pulumi.com/docs/reference/cli/pulumi_up/
41
+ * https://www.pulumi.com/docs/cli/commands/pulumi_up/
42
42
  * This operation runs remotely.
43
43
  *
44
44
  * @param opts Options to customize the behavior of the update.
@@ -48,7 +48,7 @@ class RemoteStack {
48
48
  }
49
49
  /**
50
50
  * Performs a dry-run update to a stack, returning pending changes.
51
- * https://www.pulumi.com/docs/reference/cli/pulumi_preview/
51
+ * https://www.pulumi.com/docs/cli/commands/pulumi_preview/
52
52
  * This operation runs remotely.
53
53
  *
54
54
  * @param opts Options to customize the behavior of the preview.
@@ -50,14 +50,14 @@ export declare class Stack {
50
50
  private readLines;
51
51
  /**
52
52
  * Creates or updates the resources in a stack by executing the program in the Workspace.
53
- * https://www.pulumi.com/docs/reference/cli/pulumi_up/
53
+ * https://www.pulumi.com/docs/cli/commands/pulumi_up/
54
54
  *
55
55
  * @param opts Options to customize the behavior of the update.
56
56
  */
57
57
  up(opts?: UpOptions): Promise<UpResult>;
58
58
  /**
59
59
  * Performs a dry-run update to a stack, returning pending changes.
60
- * https://www.pulumi.com/docs/reference/cli/pulumi_preview/
60
+ * https://www.pulumi.com/docs/cli/commands/pulumi_preview/
61
61
  *
62
62
  * @param opts Options to customize the behavior of the preview.
63
63
  */
@@ -149,7 +149,7 @@ Event: ${line}\n${e.toString()}`);
149
149
  }
150
150
  /**
151
151
  * Creates or updates the resources in a stack by executing the program in the Workspace.
152
- * https://www.pulumi.com/docs/reference/cli/pulumi_up/
152
+ * https://www.pulumi.com/docs/cli/commands/pulumi_up/
153
153
  *
154
154
  * @param opts Options to customize the behavior of the update.
155
155
  */
@@ -273,7 +273,7 @@ Event: ${line}\n${e.toString()}`);
273
273
  }
274
274
  /**
275
275
  * Performs a dry-run update to a stack, returning pending changes.
276
- * https://www.pulumi.com/docs/reference/cli/pulumi_preview/
276
+ * https://www.pulumi.com/docs/cli/commands/pulumi_preview/
277
277
  *
278
278
  * @param opts Options to customize the behavior of the preview.
279
279
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/pulumi",
3
- "version": "3.68.0",
3
+ "version": "3.69.0",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -95,7 +95,8 @@ proto.codegen.GetMappingRequest.prototype.toObject = function(opt_includeInstanc
95
95
  */
96
96
  proto.codegen.GetMappingRequest.toObject = function(includeInstance, msg) {
97
97
  var f, obj = {
98
- provider: jspb.Message.getFieldWithDefault(msg, 1, "")
98
+ provider: jspb.Message.getFieldWithDefault(msg, 1, ""),
99
+ pulumiProvider: jspb.Message.getFieldWithDefault(msg, 2, "")
99
100
  };
100
101
 
101
102
  if (includeInstance) {
@@ -136,6 +137,10 @@ proto.codegen.GetMappingRequest.deserializeBinaryFromReader = function(msg, read
136
137
  var value = /** @type {string} */ (reader.readString());
137
138
  msg.setProvider(value);
138
139
  break;
140
+ case 2:
141
+ var value = /** @type {string} */ (reader.readString());
142
+ msg.setPulumiProvider(value);
143
+ break;
139
144
  default:
140
145
  reader.skipField();
141
146
  break;
@@ -172,6 +177,13 @@ proto.codegen.GetMappingRequest.serializeBinaryToWriter = function(message, writ
172
177
  f
173
178
  );
174
179
  }
180
+ f = message.getPulumiProvider();
181
+ if (f.length > 0) {
182
+ writer.writeString(
183
+ 2,
184
+ f
185
+ );
186
+ }
175
187
  };
176
188
 
177
189
 
@@ -193,6 +205,24 @@ proto.codegen.GetMappingRequest.prototype.setProvider = function(value) {
193
205
  };
194
206
 
195
207
 
208
+ /**
209
+ * optional string pulumi_provider = 2;
210
+ * @return {string}
211
+ */
212
+ proto.codegen.GetMappingRequest.prototype.getPulumiProvider = function() {
213
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
214
+ };
215
+
216
+
217
+ /**
218
+ * @param {string} value
219
+ * @return {!proto.codegen.GetMappingRequest} returns this
220
+ */
221
+ proto.codegen.GetMappingRequest.prototype.setPulumiProvider = function(value) {
222
+ return jspb.Message.setProto3StringField(this, 2, value);
223
+ };
224
+
225
+
196
226
 
197
227
 
198
228
 
package/version.js CHANGED
@@ -13,5 +13,5 @@
13
13
  // See the License for the specific language governing permissions and
14
14
  // limitations under the License.
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.version = "3.68.0";
16
+ exports.version = "3.69.0";
17
17
  //# sourceMappingURL=version.js.map