@pulumi/pulumi 3.186.0-alpha.xce6e7c2 → 3.186.0-alpha.xf689850
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 +0 -5
- package/proto/analyzer_pb.js +1 -34
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/analyzer_pb.d.ts
CHANGED
|
@@ -26,9 +26,6 @@ export class AnalyzerStackConfigureRequest extends jspb.Message {
|
|
|
26
26
|
getConfigMap(): jspb.Map<string, string>;
|
|
27
27
|
clearConfigMap(): void;
|
|
28
28
|
|
|
29
|
-
getTagsMap(): jspb.Map<string, string>;
|
|
30
|
-
clearTagsMap(): void;
|
|
31
|
-
|
|
32
29
|
serializeBinary(): Uint8Array;
|
|
33
30
|
toObject(includeInstance?: boolean): AnalyzerStackConfigureRequest.AsObject;
|
|
34
31
|
static toObject(includeInstance: boolean, msg: AnalyzerStackConfigureRequest): AnalyzerStackConfigureRequest.AsObject;
|
|
@@ -48,8 +45,6 @@ export namespace AnalyzerStackConfigureRequest {
|
|
|
48
45
|
configSecretKeysList: Array<string>,
|
|
49
46
|
|
|
50
47
|
configMap: Array<[string, string]>,
|
|
51
|
-
|
|
52
|
-
tagsMap: Array<[string, string]>,
|
|
53
48
|
}
|
|
54
49
|
}
|
|
55
50
|
|
package/proto/analyzer_pb.js
CHANGED
|
@@ -506,8 +506,7 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.toObject = function(includeInstanc
|
|
|
506
506
|
organization: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
507
507
|
dryRun: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
508
508
|
configSecretKeysList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
509
|
-
configMap: (f = msg.getConfigMap()) ? f.toObject(includeInstance, undefined) : []
|
|
510
|
-
tagsMap: (f = msg.getTagsMap()) ? f.toObject(includeInstance, undefined) : []
|
|
509
|
+
configMap: (f = msg.getConfigMap()) ? f.toObject(includeInstance, undefined) : []
|
|
511
510
|
};
|
|
512
511
|
|
|
513
512
|
if (includeInstance) {
|
|
@@ -570,12 +569,6 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.deserializeBinaryFromReader = func
|
|
|
570
569
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
571
570
|
});
|
|
572
571
|
break;
|
|
573
|
-
case 8:
|
|
574
|
-
var value = msg.getTagsMap();
|
|
575
|
-
reader.readMessage(value, function(message, reader) {
|
|
576
|
-
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
577
|
-
});
|
|
578
|
-
break;
|
|
579
572
|
default:
|
|
580
573
|
reader.skipField();
|
|
581
574
|
break;
|
|
@@ -644,10 +637,6 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.serializeBinaryToWriter = function
|
|
|
644
637
|
if (f && f.getLength() > 0) {
|
|
645
638
|
f.serializeBinary(7, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
646
639
|
}
|
|
647
|
-
f = message.getTagsMap(true);
|
|
648
|
-
if (f && f.getLength() > 0) {
|
|
649
|
-
f.serializeBinary(8, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
650
|
-
}
|
|
651
640
|
};
|
|
652
641
|
|
|
653
642
|
|
|
@@ -782,28 +771,6 @@ proto.pulumirpc.AnalyzerStackConfigureRequest.prototype.clearConfigMap = functio
|
|
|
782
771
|
return this;};
|
|
783
772
|
|
|
784
773
|
|
|
785
|
-
/**
|
|
786
|
-
* map<string, string> tags = 8;
|
|
787
|
-
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
|
788
|
-
* empty, instead returning `undefined`
|
|
789
|
-
* @return {!jspb.Map<string,string>}
|
|
790
|
-
*/
|
|
791
|
-
proto.pulumirpc.AnalyzerStackConfigureRequest.prototype.getTagsMap = function(opt_noLazyCreate) {
|
|
792
|
-
return /** @type {!jspb.Map<string,string>} */ (
|
|
793
|
-
jspb.Message.getMapField(this, 8, opt_noLazyCreate,
|
|
794
|
-
null));
|
|
795
|
-
};
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
/**
|
|
799
|
-
* Clears values from the map. The map will be non-null.
|
|
800
|
-
* @return {!proto.pulumirpc.AnalyzerStackConfigureRequest} returns this
|
|
801
|
-
*/
|
|
802
|
-
proto.pulumirpc.AnalyzerStackConfigureRequest.prototype.clearTagsMap = function() {
|
|
803
|
-
this.getTagsMap().clear();
|
|
804
|
-
return this;};
|
|
805
|
-
|
|
806
|
-
|
|
807
774
|
|
|
808
775
|
|
|
809
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.186.0-alpha.
|
|
16
|
+
exports.version = "3.186.0-alpha.xf689850";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|