@pulumi/pulumi 3.174.0-alpha.x380d763 → 3.174.0-alpha.x70245c2
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/proto/analyzer_pb.d.ts +4 -4
- package/proto/analyzer_pb.js +33 -33
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/analyzer_pb.d.ts
CHANGED
|
@@ -18,14 +18,14 @@ export class AnalyzerStackConfigureRequest extends jspb.Message {
|
|
|
18
18
|
setOrganization(value: string): AnalyzerStackConfigureRequest;
|
|
19
19
|
getDryRun(): boolean;
|
|
20
20
|
setDryRun(value: boolean): AnalyzerStackConfigureRequest;
|
|
21
|
-
|
|
22
|
-
getConfigMap(): jspb.Map<string, string>;
|
|
23
|
-
clearConfigMap(): void;
|
|
24
21
|
clearConfigSecretKeysList(): void;
|
|
25
22
|
getConfigSecretKeysList(): Array<string>;
|
|
26
23
|
setConfigSecretKeysList(value: Array<string>): AnalyzerStackConfigureRequest;
|
|
27
24
|
addConfigSecretKeys(value: string, index?: number): string;
|
|
28
25
|
|
|
26
|
+
getConfigMap(): jspb.Map<string, string>;
|
|
27
|
+
clearConfigMap(): void;
|
|
28
|
+
|
|
29
29
|
serializeBinary(): Uint8Array;
|
|
30
30
|
toObject(includeInstance?: boolean): AnalyzerStackConfigureRequest.AsObject;
|
|
31
31
|
static toObject(includeInstance: boolean, msg: AnalyzerStackConfigureRequest): AnalyzerStackConfigureRequest.AsObject;
|
|
@@ -42,9 +42,9 @@ export namespace AnalyzerStackConfigureRequest {
|
|
|
42
42
|
project: string,
|
|
43
43
|
organization: string,
|
|
44
44
|
dryRun: boolean,
|
|
45
|
+
configSecretKeysList: Array<string>,
|
|
45
46
|
|
|
46
47
|
configMap: Array<[string, string]>,
|
|
47
|
-
configSecretKeysList: Array<string>,
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
package/proto/analyzer_pb.js
CHANGED
|
@@ -505,8 +505,8 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.toObject = function(includeInstanc
|
|
|
505
505
|
project: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
506
506
|
organization: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
507
507
|
dryRun: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
508
|
-
|
|
509
|
-
|
|
508
|
+
configSecretKeysList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
509
|
+
configMap: (f = msg.getConfigMap()) ? f.toObject(includeInstance, undefined) : []
|
|
510
510
|
};
|
|
511
511
|
|
|
512
512
|
if (includeInstance) {
|
|
@@ -559,16 +559,16 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.deserializeBinaryFromReader = func
|
|
|
559
559
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
560
560
|
msg.setDryRun(value);
|
|
561
561
|
break;
|
|
562
|
-
case
|
|
562
|
+
case 6:
|
|
563
|
+
var value = /** @type {string} */ (reader.readString());
|
|
564
|
+
msg.addConfigSecretKeys(value);
|
|
565
|
+
break;
|
|
566
|
+
case 7:
|
|
563
567
|
var value = msg.getConfigMap();
|
|
564
568
|
reader.readMessage(value, function(message, reader) {
|
|
565
569
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
566
570
|
});
|
|
567
571
|
break;
|
|
568
|
-
case 6:
|
|
569
|
-
var value = /** @type {string} */ (reader.readString());
|
|
570
|
-
msg.addConfigSecretKeys(value);
|
|
571
|
-
break;
|
|
572
572
|
default:
|
|
573
573
|
reader.skipField();
|
|
574
574
|
break;
|
|
@@ -626,10 +626,6 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.serializeBinaryToWriter = function
|
|
|
626
626
|
f
|
|
627
627
|
);
|
|
628
628
|
}
|
|
629
|
-
f = message.getConfigMap(true);
|
|
630
|
-
if (f && f.getLength() > 0) {
|
|
631
|
-
f.serializeBinary(5, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
632
|
-
}
|
|
633
629
|
f = message.getConfigSecretKeysList();
|
|
634
630
|
if (f.length > 0) {
|
|
635
631
|
writer.writeRepeatedString(
|
|
@@ -637,6 +633,10 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.serializeBinaryToWriter = function
|
|
|
637
633
|
f
|
|
638
634
|
);
|
|
639
635
|
}
|
|
636
|
+
f = message.getConfigMap(true);
|
|
637
|
+
if (f && f.getLength() > 0) {
|
|
638
|
+
f.serializeBinary(7, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
639
|
+
}
|
|
640
640
|
};
|
|
641
641
|
|
|
642
642
|
|
|
@@ -712,28 +712,6 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.prototype.setDryRun = function(val
|
|
|
712
712
|
};
|
|
713
713
|
|
|
714
714
|
|
|
715
|
-
/**
|
|
716
|
-
* map<string, string> config = 5;
|
|
717
|
-
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
718
|
-
* empty, instead returning `undefined`
|
|
719
|
-
* @return {!jspb.Map<string,string>}
|
|
720
|
-
*/
|
|
721
|
-
proto.pulumirpc.AnalyzerStackConfigureRequest.prototype.getConfigMap = function(opt_noLazyCreate) {
|
|
722
|
-
return /** @type {!jspb.Map<string,string>} */ (
|
|
723
|
-
jspb.Message.getMapField(this, 5, opt_noLazyCreate,
|
|
724
|
-
null));
|
|
725
|
-
};
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
/**
|
|
729
|
-
* Clears values from the map. The map will be non-null.
|
|
730
|
-
* @return {!proto.pulumirpc.AnalyzerStackConfigureRequest} returns this
|
|
731
|
-
*/
|
|
732
|
-
proto.pulumirpc.AnalyzerStackConfigureRequest.prototype.clearConfigMap = function() {
|
|
733
|
-
this.getConfigMap().clear();
|
|
734
|
-
return this;};
|
|
735
|
-
|
|
736
|
-
|
|
737
715
|
/**
|
|
738
716
|
* repeated string config_secret_keys = 6;
|
|
739
717
|
* @return {!Array<string>}
|
|
@@ -771,6 +749,28 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.prototype.clearConfigSecretKeysLis
|
|
|
771
749
|
};
|
|
772
750
|
|
|
773
751
|
|
|
752
|
+
/**
|
|
753
|
+
* map<string, string> config = 7;
|
|
754
|
+
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
755
|
+
* empty, instead returning `undefined`
|
|
756
|
+
* @return {!jspb.Map<string,string>}
|
|
757
|
+
*/
|
|
758
|
+
proto.pulumirpc.AnalyzerStackConfigureRequest.prototype.getConfigMap = function(opt_noLazyCreate) {
|
|
759
|
+
return /** @type {!jspb.Map<string,string>} */ (
|
|
760
|
+
jspb.Message.getMapField(this, 7, opt_noLazyCreate,
|
|
761
|
+
null));
|
|
762
|
+
};
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
/**
|
|
766
|
+
* Clears values from the map. The map will be non-null.
|
|
767
|
+
* @return {!proto.pulumirpc.AnalyzerStackConfigureRequest} returns this
|
|
768
|
+
*/
|
|
769
|
+
proto.pulumirpc.AnalyzerStackConfigureRequest.prototype.clearConfigMap = function() {
|
|
770
|
+
this.getConfigMap().clear();
|
|
771
|
+
return this;};
|
|
772
|
+
|
|
773
|
+
|
|
774
774
|
|
|
775
775
|
|
|
776
776
|
|
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.174.0-alpha.
|
|
16
|
+
exports.version = "3.174.0-alpha.x70245c2";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|