pulumi/sdk/nodejs/proto/analyzer_pb.js

3948 lines
117 KiB
JavaScript
Raw Normal View History

2020-02-28 12:53:47 +01:00
// source: analyzer.proto
/**
* @fileoverview
* @enhanceable
Implement components This change implements core support for "components" in the Pulumi Fabric. This work is described further in pulumi/pulumi#340, where we are still discussing some of the finer points. In a nutshell, resources no longer imply external providers. It's entirely possible to have a resource that logically represents something but without having a physical manifestation that needs to be tracked and managed by our typical CRUD operations. For example, the aws/serverless/Function helper is one such type. It aggregates Lambda-related resources and exposes a nice interface. All of the Pulumi Cloud Framework resources are also examples. To indicate that a resource does participate in the usual CRUD resource provider, it simply derives from ExternalResource instead of Resource. All resources now have the ability to adopt children. This is purely a metadata/tagging thing, and will help us roll up displays, provide attribution to the developer, and even hide aspects of the resource graph as appropriate (e.g., when they are implementation details). Our use of this capability is ultra limited right now; in fact, the only place we display children is in the CLI output. For instance: + aws:serverless:Function: (create) [urn=urn:pulumi:demo::serverless::aws:serverless:Function::mylambda] => urn:pulumi:demo::serverless::aws:iam/role:Role::mylambda-iamrole => urn:pulumi:demo::serverless::aws:iam/rolePolicyAttachment:RolePolicyAttachment::mylambda-iampolicy-0 => urn:pulumi:demo::serverless::aws:lambda/function:Function::mylambda The bit indicating whether a resource is external or not is tracked in the resulting checkpoint file, along with any of its children.
2017-10-14 23:18:43 +02:00
* @suppress {messageConventions} JS Compiler reports an error if a variable or
* field starts with 'MSG_' and isn't a translatable message.
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
var jspb = require('google-protobuf');
var goog = jspb;
var proto = { pulumirpc: {} }, global = proto;
var plugin_pb = require('./plugin_pb.js');
2020-02-28 12:53:47 +01:00
goog.object.extend(proto, plugin_pb);
var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js');
2020-02-28 12:53:47 +01:00
goog.object.extend(proto, google_protobuf_empty_pb);
var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js');
2020-02-28 12:53:47 +01:00
goog.object.extend(proto, google_protobuf_struct_pb);
2019-06-11 00:20:22 +02:00
goog.exportSymbol('proto.pulumirpc.AnalyzeDiagnostic', null, global);
goog.exportSymbol('proto.pulumirpc.AnalyzeRequest', null, global);
goog.exportSymbol('proto.pulumirpc.AnalyzeResponse', null, global);
goog.exportSymbol('proto.pulumirpc.AnalyzeStackRequest', null, global);
goog.exportSymbol('proto.pulumirpc.AnalyzerInfo', null, global);
goog.exportSymbol('proto.pulumirpc.AnalyzerPropertyDependencies', null, global);
goog.exportSymbol('proto.pulumirpc.AnalyzerProviderResource', null, global);
goog.exportSymbol('proto.pulumirpc.AnalyzerResource', null, global);
goog.exportSymbol('proto.pulumirpc.AnalyzerResourceOptions', null, global);
goog.exportSymbol('proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts', null, global);
goog.exportSymbol('proto.pulumirpc.ConfigureAnalyzerRequest', null, global);
goog.exportSymbol('proto.pulumirpc.EnforcementLevel', null, global);
goog.exportSymbol('proto.pulumirpc.PolicyConfig', null, global);
goog.exportSymbol('proto.pulumirpc.PolicyConfigSchema', null, global);
goog.exportSymbol('proto.pulumirpc.PolicyInfo', null, global);
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzeRequest = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.pulumirpc.AnalyzeRequest, jspb.Message);
if (goog.DEBUG && !COMPILED) {
2020-02-28 12:53:47 +01:00
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzeRequest.displayName = 'proto.pulumirpc.AnalyzeRequest';
}
2020-02-28 12:53:47 +01:00
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzerResource = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.AnalyzerResource.repeatedFields_, null);
};
goog.inherits(proto.pulumirpc.AnalyzerResource, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzerResource.displayName = 'proto.pulumirpc.AnalyzerResource';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzerResourceOptions = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.AnalyzerResourceOptions.repeatedFields_, null);
};
goog.inherits(proto.pulumirpc.AnalyzerResourceOptions, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzerResourceOptions.displayName = 'proto.pulumirpc.AnalyzerResourceOptions';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.displayName = 'proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzerProviderResource = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.pulumirpc.AnalyzerProviderResource, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzerProviderResource.displayName = 'proto.pulumirpc.AnalyzerProviderResource';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzerPropertyDependencies = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.AnalyzerPropertyDependencies.repeatedFields_, null);
};
goog.inherits(proto.pulumirpc.AnalyzerPropertyDependencies, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzerPropertyDependencies.displayName = 'proto.pulumirpc.AnalyzerPropertyDependencies';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzeStackRequest = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.AnalyzeStackRequest.repeatedFields_, null);
};
goog.inherits(proto.pulumirpc.AnalyzeStackRequest, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzeStackRequest.displayName = 'proto.pulumirpc.AnalyzeStackRequest';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzeResponse = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.AnalyzeResponse.repeatedFields_, null);
};
goog.inherits(proto.pulumirpc.AnalyzeResponse, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzeResponse.displayName = 'proto.pulumirpc.AnalyzeResponse';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzeDiagnostic = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.AnalyzeDiagnostic.repeatedFields_, null);
};
goog.inherits(proto.pulumirpc.AnalyzeDiagnostic, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzeDiagnostic.displayName = 'proto.pulumirpc.AnalyzeDiagnostic';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.AnalyzerInfo = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.AnalyzerInfo.repeatedFields_, null);
};
goog.inherits(proto.pulumirpc.AnalyzerInfo, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.AnalyzerInfo.displayName = 'proto.pulumirpc.AnalyzerInfo';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.PolicyInfo = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.pulumirpc.PolicyInfo, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.PolicyInfo.displayName = 'proto.pulumirpc.PolicyInfo';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.PolicyConfigSchema = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.PolicyConfigSchema.repeatedFields_, null);
};
goog.inherits(proto.pulumirpc.PolicyConfigSchema, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.PolicyConfigSchema.displayName = 'proto.pulumirpc.PolicyConfigSchema';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.PolicyConfig = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.pulumirpc.PolicyConfig, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.PolicyConfig.displayName = 'proto.pulumirpc.PolicyConfig';
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.pulumirpc.ConfigureAnalyzerRequest = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.pulumirpc.ConfigureAnalyzerRequest, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.pulumirpc.ConfigureAnalyzerRequest.displayName = 'proto.pulumirpc.ConfigureAnalyzerRequest';
}
2020-02-28 12:53:47 +01:00
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.AnalyzeRequest.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzeRequest.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.AnalyzeRequest} msg The msg instance to transform.
* @return {!Object}
Implement components This change implements core support for "components" in the Pulumi Fabric. This work is described further in pulumi/pulumi#340, where we are still discussing some of the finer points. In a nutshell, resources no longer imply external providers. It's entirely possible to have a resource that logically represents something but without having a physical manifestation that needs to be tracked and managed by our typical CRUD operations. For example, the aws/serverless/Function helper is one such type. It aggregates Lambda-related resources and exposes a nice interface. All of the Pulumi Cloud Framework resources are also examples. To indicate that a resource does participate in the usual CRUD resource provider, it simply derives from ExternalResource instead of Resource. All resources now have the ability to adopt children. This is purely a metadata/tagging thing, and will help us roll up displays, provide attribution to the developer, and even hide aspects of the resource graph as appropriate (e.g., when they are implementation details). Our use of this capability is ultra limited right now; in fact, the only place we display children is in the CLI output. For instance: + aws:serverless:Function: (create) [urn=urn:pulumi:demo::serverless::aws:serverless:Function::mylambda] => urn:pulumi:demo::serverless::aws:iam/role:Role::mylambda-iamrole => urn:pulumi:demo::serverless::aws:iam/rolePolicyAttachment:RolePolicyAttachment::mylambda-iampolicy-0 => urn:pulumi:demo::serverless::aws:lambda/function:Function::mylambda The bit indicating whether a resource is external or not is tracked in the resulting checkpoint file, along with any of its children.
2017-10-14 23:18:43 +02:00
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzeRequest.toObject = function(includeInstance, msg) {
var f, obj = {
type: jspb.Message.getFieldWithDefault(msg, 1, ""),
properties: (f = msg.getProperties()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
urn: jspb.Message.getFieldWithDefault(msg, 3, ""),
name: jspb.Message.getFieldWithDefault(msg, 4, ""),
options: (f = msg.getOptions()) && proto.pulumirpc.AnalyzerResourceOptions.toObject(includeInstance, f),
provider: (f = msg.getProvider()) && proto.pulumirpc.AnalyzerProviderResource.toObject(includeInstance, f)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.AnalyzeRequest}
*/
proto.pulumirpc.AnalyzeRequest.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.AnalyzeRequest;
return proto.pulumirpc.AnalyzeRequest.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.AnalyzeRequest} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.AnalyzeRequest}
*/
proto.pulumirpc.AnalyzeRequest.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setType(value);
break;
case 2:
var value = new google_protobuf_struct_pb.Struct;
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
msg.setProperties(value);
break;
case 3:
var value = /** @type {string} */ (reader.readString());
msg.setUrn(value);
break;
case 4:
var value = /** @type {string} */ (reader.readString());
msg.setName(value);
break;
case 5:
var value = new proto.pulumirpc.AnalyzerResourceOptions;
reader.readMessage(value,proto.pulumirpc.AnalyzerResourceOptions.deserializeBinaryFromReader);
msg.setOptions(value);
break;
case 6:
var value = new proto.pulumirpc.AnalyzerProviderResource;
reader.readMessage(value,proto.pulumirpc.AnalyzerProviderResource.deserializeBinaryFromReader);
msg.setProvider(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.AnalyzeRequest.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.AnalyzeRequest.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.AnalyzeRequest} message
* @param {!jspb.BinaryWriter} writer
Implement components This change implements core support for "components" in the Pulumi Fabric. This work is described further in pulumi/pulumi#340, where we are still discussing some of the finer points. In a nutshell, resources no longer imply external providers. It's entirely possible to have a resource that logically represents something but without having a physical manifestation that needs to be tracked and managed by our typical CRUD operations. For example, the aws/serverless/Function helper is one such type. It aggregates Lambda-related resources and exposes a nice interface. All of the Pulumi Cloud Framework resources are also examples. To indicate that a resource does participate in the usual CRUD resource provider, it simply derives from ExternalResource instead of Resource. All resources now have the ability to adopt children. This is purely a metadata/tagging thing, and will help us roll up displays, provide attribution to the developer, and even hide aspects of the resource graph as appropriate (e.g., when they are implementation details). Our use of this capability is ultra limited right now; in fact, the only place we display children is in the CLI output. For instance: + aws:serverless:Function: (create) [urn=urn:pulumi:demo::serverless::aws:serverless:Function::mylambda] => urn:pulumi:demo::serverless::aws:iam/role:Role::mylambda-iamrole => urn:pulumi:demo::serverless::aws:iam/rolePolicyAttachment:RolePolicyAttachment::mylambda-iampolicy-0 => urn:pulumi:demo::serverless::aws:lambda/function:Function::mylambda The bit indicating whether a resource is external or not is tracked in the resulting checkpoint file, along with any of its children.
2017-10-14 23:18:43 +02:00
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzeRequest.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getType();
if (f.length > 0) {
writer.writeString(
1,
f
);
}
f = message.getProperties();
if (f != null) {
writer.writeMessage(
2,
f,
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
);
}
f = message.getUrn();
if (f.length > 0) {
writer.writeString(
3,
f
);
}
f = message.getName();
if (f.length > 0) {
writer.writeString(
4,
f
);
}
f = message.getOptions();
if (f != null) {
writer.writeMessage(
5,
f,
proto.pulumirpc.AnalyzerResourceOptions.serializeBinaryToWriter
);
}
f = message.getProvider();
if (f != null) {
writer.writeMessage(
6,
f,
proto.pulumirpc.AnalyzerProviderResource.serializeBinaryToWriter
);
}
};
/**
* optional string type = 1;
* @return {string}
*/
proto.pulumirpc.AnalyzeRequest.prototype.getType = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzeRequest} returns this
*/
proto.pulumirpc.AnalyzeRequest.prototype.setType = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 1, value);
};
/**
* optional google.protobuf.Struct properties = 2;
* @return {?proto.google.protobuf.Struct}
*/
proto.pulumirpc.AnalyzeRequest.prototype.getProperties = function() {
return /** @type{?proto.google.protobuf.Struct} */ (
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 2));
};
2020-02-28 12:53:47 +01:00
/**
* @param {?proto.google.protobuf.Struct|undefined} value
* @return {!proto.pulumirpc.AnalyzeRequest} returns this
*/
proto.pulumirpc.AnalyzeRequest.prototype.setProperties = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setWrapperField(this, 2, value);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.AnalyzeRequest} returns this
*/
proto.pulumirpc.AnalyzeRequest.prototype.clearProperties = function() {
2020-02-28 12:53:47 +01:00
return this.setProperties(undefined);
};
/**
* Returns whether this field is set.
2020-02-28 12:53:47 +01:00
* @return {boolean}
*/
proto.pulumirpc.AnalyzeRequest.prototype.hasProperties = function() {
return jspb.Message.getField(this, 2) != null;
};
/**
* optional string urn = 3;
* @return {string}
*/
proto.pulumirpc.AnalyzeRequest.prototype.getUrn = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzeRequest} returns this
*/
proto.pulumirpc.AnalyzeRequest.prototype.setUrn = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 3, value);
};
/**
* optional string name = 4;
* @return {string}
*/
proto.pulumirpc.AnalyzeRequest.prototype.getName = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzeRequest} returns this
*/
proto.pulumirpc.AnalyzeRequest.prototype.setName = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 4, value);
};
/**
* optional AnalyzerResourceOptions options = 5;
* @return {?proto.pulumirpc.AnalyzerResourceOptions}
*/
proto.pulumirpc.AnalyzeRequest.prototype.getOptions = function() {
return /** @type{?proto.pulumirpc.AnalyzerResourceOptions} */ (
jspb.Message.getWrapperField(this, proto.pulumirpc.AnalyzerResourceOptions, 5));
};
2020-02-28 12:53:47 +01:00
/**
* @param {?proto.pulumirpc.AnalyzerResourceOptions|undefined} value
* @return {!proto.pulumirpc.AnalyzeRequest} returns this
*/
proto.pulumirpc.AnalyzeRequest.prototype.setOptions = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setWrapperField(this, 5, value);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.AnalyzeRequest} returns this
*/
proto.pulumirpc.AnalyzeRequest.prototype.clearOptions = function() {
2020-02-28 12:53:47 +01:00
return this.setOptions(undefined);
};
/**
* Returns whether this field is set.
2020-02-28 12:53:47 +01:00
* @return {boolean}
*/
proto.pulumirpc.AnalyzeRequest.prototype.hasOptions = function() {
return jspb.Message.getField(this, 5) != null;
};
/**
* optional AnalyzerProviderResource provider = 6;
* @return {?proto.pulumirpc.AnalyzerProviderResource}
*/
proto.pulumirpc.AnalyzeRequest.prototype.getProvider = function() {
return /** @type{?proto.pulumirpc.AnalyzerProviderResource} */ (
jspb.Message.getWrapperField(this, proto.pulumirpc.AnalyzerProviderResource, 6));
};
2020-02-28 12:53:47 +01:00
/**
* @param {?proto.pulumirpc.AnalyzerProviderResource|undefined} value
* @return {!proto.pulumirpc.AnalyzeRequest} returns this
*/
proto.pulumirpc.AnalyzeRequest.prototype.setProvider = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setWrapperField(this, 6, value);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.AnalyzeRequest} returns this
*/
proto.pulumirpc.AnalyzeRequest.prototype.clearProvider = function() {
2020-02-28 12:53:47 +01:00
return this.setProvider(undefined);
};
/**
* Returns whether this field is set.
2020-02-28 12:53:47 +01:00
* @return {boolean}
*/
proto.pulumirpc.AnalyzeRequest.prototype.hasProvider = function() {
return jspb.Message.getField(this, 6) != null;
};
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.pulumirpc.AnalyzerResource.repeatedFields_ = [8];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.AnalyzerResource.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzerResource.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.AnalyzerResource} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerResource.toObject = function(includeInstance, msg) {
var f, obj = {
type: jspb.Message.getFieldWithDefault(msg, 1, ""),
properties: (f = msg.getProperties()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
urn: jspb.Message.getFieldWithDefault(msg, 3, ""),
name: jspb.Message.getFieldWithDefault(msg, 4, ""),
options: (f = msg.getOptions()) && proto.pulumirpc.AnalyzerResourceOptions.toObject(includeInstance, f),
provider: (f = msg.getProvider()) && proto.pulumirpc.AnalyzerProviderResource.toObject(includeInstance, f),
parent: jspb.Message.getFieldWithDefault(msg, 7, ""),
2020-02-28 12:53:47 +01:00
dependenciesList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
propertydependenciesMap: (f = msg.getPropertydependenciesMap()) ? f.toObject(includeInstance, proto.pulumirpc.AnalyzerPropertyDependencies.toObject) : []
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.AnalyzerResource}
*/
proto.pulumirpc.AnalyzerResource.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.AnalyzerResource;
return proto.pulumirpc.AnalyzerResource.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.AnalyzerResource} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.AnalyzerResource}
*/
proto.pulumirpc.AnalyzerResource.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setType(value);
break;
case 2:
var value = new google_protobuf_struct_pb.Struct;
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
msg.setProperties(value);
break;
case 3:
var value = /** @type {string} */ (reader.readString());
msg.setUrn(value);
break;
case 4:
var value = /** @type {string} */ (reader.readString());
msg.setName(value);
break;
case 5:
var value = new proto.pulumirpc.AnalyzerResourceOptions;
reader.readMessage(value,proto.pulumirpc.AnalyzerResourceOptions.deserializeBinaryFromReader);
msg.setOptions(value);
break;
case 6:
var value = new proto.pulumirpc.AnalyzerProviderResource;
reader.readMessage(value,proto.pulumirpc.AnalyzerProviderResource.deserializeBinaryFromReader);
msg.setProvider(value);
break;
case 7:
var value = /** @type {string} */ (reader.readString());
msg.setParent(value);
break;
case 8:
var value = /** @type {string} */ (reader.readString());
msg.addDependencies(value);
break;
case 9:
var value = msg.getPropertydependenciesMap();
reader.readMessage(value, function(message, reader) {
2020-02-28 12:53:47 +01:00
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.pulumirpc.AnalyzerPropertyDependencies.deserializeBinaryFromReader, "", new proto.pulumirpc.AnalyzerPropertyDependencies());
});
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.AnalyzerResource.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.AnalyzerResource.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.AnalyzerResource} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerResource.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getType();
if (f.length > 0) {
writer.writeString(
1,
f
);
}
f = message.getProperties();
if (f != null) {
writer.writeMessage(
2,
f,
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
);
}
f = message.getUrn();
if (f.length > 0) {
writer.writeString(
3,
f
);
}
f = message.getName();
if (f.length > 0) {
writer.writeString(
4,
f
);
}
f = message.getOptions();
if (f != null) {
writer.writeMessage(
5,
f,
proto.pulumirpc.AnalyzerResourceOptions.serializeBinaryToWriter
);
}
f = message.getProvider();
if (f != null) {
writer.writeMessage(
6,
f,
proto.pulumirpc.AnalyzerProviderResource.serializeBinaryToWriter
);
}
f = message.getParent();
if (f.length > 0) {
writer.writeString(
7,
f
);
}
f = message.getDependenciesList();
if (f.length > 0) {
writer.writeRepeatedString(
8,
f
);
}
f = message.getPropertydependenciesMap(true);
if (f && f.getLength() > 0) {
f.serializeBinary(9, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeMessage, proto.pulumirpc.AnalyzerPropertyDependencies.serializeBinaryToWriter);
}
};
/**
* optional string type = 1;
* @return {string}
*/
proto.pulumirpc.AnalyzerResource.prototype.getType = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.setType = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 1, value);
};
/**
* optional google.protobuf.Struct properties = 2;
* @return {?proto.google.protobuf.Struct}
*/
proto.pulumirpc.AnalyzerResource.prototype.getProperties = function() {
return /** @type{?proto.google.protobuf.Struct} */ (
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 2));
};
2020-02-28 12:53:47 +01:00
/**
* @param {?proto.google.protobuf.Struct|undefined} value
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.setProperties = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setWrapperField(this, 2, value);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.clearProperties = function() {
2020-02-28 12:53:47 +01:00
return this.setProperties(undefined);
};
/**
* Returns whether this field is set.
2020-02-28 12:53:47 +01:00
* @return {boolean}
*/
proto.pulumirpc.AnalyzerResource.prototype.hasProperties = function() {
return jspb.Message.getField(this, 2) != null;
};
/**
* optional string urn = 3;
* @return {string}
*/
proto.pulumirpc.AnalyzerResource.prototype.getUrn = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.setUrn = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 3, value);
};
/**
* optional string name = 4;
* @return {string}
*/
proto.pulumirpc.AnalyzerResource.prototype.getName = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.setName = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 4, value);
};
/**
* optional AnalyzerResourceOptions options = 5;
* @return {?proto.pulumirpc.AnalyzerResourceOptions}
*/
proto.pulumirpc.AnalyzerResource.prototype.getOptions = function() {
return /** @type{?proto.pulumirpc.AnalyzerResourceOptions} */ (
jspb.Message.getWrapperField(this, proto.pulumirpc.AnalyzerResourceOptions, 5));
};
2020-02-28 12:53:47 +01:00
/**
* @param {?proto.pulumirpc.AnalyzerResourceOptions|undefined} value
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.setOptions = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setWrapperField(this, 5, value);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.clearOptions = function() {
2020-02-28 12:53:47 +01:00
return this.setOptions(undefined);
};
/**
* Returns whether this field is set.
2020-02-28 12:53:47 +01:00
* @return {boolean}
*/
proto.pulumirpc.AnalyzerResource.prototype.hasOptions = function() {
return jspb.Message.getField(this, 5) != null;
};
/**
* optional AnalyzerProviderResource provider = 6;
* @return {?proto.pulumirpc.AnalyzerProviderResource}
*/
proto.pulumirpc.AnalyzerResource.prototype.getProvider = function() {
return /** @type{?proto.pulumirpc.AnalyzerProviderResource} */ (
jspb.Message.getWrapperField(this, proto.pulumirpc.AnalyzerProviderResource, 6));
};
2020-02-28 12:53:47 +01:00
/**
* @param {?proto.pulumirpc.AnalyzerProviderResource|undefined} value
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.setProvider = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setWrapperField(this, 6, value);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.clearProvider = function() {
2020-02-28 12:53:47 +01:00
return this.setProvider(undefined);
};
/**
* Returns whether this field is set.
2020-02-28 12:53:47 +01:00
* @return {boolean}
*/
proto.pulumirpc.AnalyzerResource.prototype.hasProvider = function() {
return jspb.Message.getField(this, 6) != null;
};
/**
* optional string parent = 7;
* @return {string}
*/
proto.pulumirpc.AnalyzerResource.prototype.getParent = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.setParent = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 7, value);
};
/**
* repeated string dependencies = 8;
2020-02-28 12:53:47 +01:00
* @return {!Array<string>}
*/
proto.pulumirpc.AnalyzerResource.prototype.getDependenciesList = function() {
2020-02-28 12:53:47 +01:00
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 8));
};
2020-02-28 12:53:47 +01:00
/**
* @param {!Array<string>} value
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.setDependenciesList = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setField(this, 8, value || []);
};
/**
2020-02-28 12:53:47 +01:00
* @param {string} value
* @param {number=} opt_index
2020-02-28 12:53:47 +01:00
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.addDependencies = function(value, opt_index) {
2020-02-28 12:53:47 +01:00
return jspb.Message.addToRepeatedField(this, 8, value, opt_index);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.clearDependenciesList = function() {
2020-02-28 12:53:47 +01:00
return this.setDependenciesList([]);
};
/**
* map<string, AnalyzerPropertyDependencies> propertyDependencies = 9;
* @param {boolean=} opt_noLazyCreate Do not create the map if
* empty, instead returning `undefined`
* @return {!jspb.Map<string,!proto.pulumirpc.AnalyzerPropertyDependencies>}
*/
proto.pulumirpc.AnalyzerResource.prototype.getPropertydependenciesMap = function(opt_noLazyCreate) {
return /** @type {!jspb.Map<string,!proto.pulumirpc.AnalyzerPropertyDependencies>} */ (
jspb.Message.getMapField(this, 9, opt_noLazyCreate,
proto.pulumirpc.AnalyzerPropertyDependencies));
};
2020-02-28 12:53:47 +01:00
/**
* Clears values from the map. The map will be non-null.
* @return {!proto.pulumirpc.AnalyzerResource} returns this
*/
proto.pulumirpc.AnalyzerResource.prototype.clearPropertydependenciesMap = function() {
this.getPropertydependenciesMap().clear();
2020-02-28 12:53:47 +01:00
return this;};
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.pulumirpc.AnalyzerResourceOptions.repeatedFields_ = [2,5,6];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzerResourceOptions.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.AnalyzerResourceOptions} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerResourceOptions.toObject = function(includeInstance, msg) {
var f, obj = {
2020-02-28 12:53:47 +01:00
protect: jspb.Message.getBooleanFieldWithDefault(msg, 1, false),
ignorechangesList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
deletebeforereplace: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
deletebeforereplacedefined: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
additionalsecretoutputsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
aliasesList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
customtimeouts: (f = msg.getCustomtimeouts()) && proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.toObject(includeInstance, f)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.AnalyzerResourceOptions}
*/
proto.pulumirpc.AnalyzerResourceOptions.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.AnalyzerResourceOptions;
return proto.pulumirpc.AnalyzerResourceOptions.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.AnalyzerResourceOptions} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.AnalyzerResourceOptions}
*/
proto.pulumirpc.AnalyzerResourceOptions.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {boolean} */ (reader.readBool());
msg.setProtect(value);
break;
case 2:
var value = /** @type {string} */ (reader.readString());
msg.addIgnorechanges(value);
break;
case 3:
var value = /** @type {boolean} */ (reader.readBool());
msg.setDeletebeforereplace(value);
break;
case 4:
var value = /** @type {boolean} */ (reader.readBool());
msg.setDeletebeforereplacedefined(value);
break;
case 5:
var value = /** @type {string} */ (reader.readString());
msg.addAdditionalsecretoutputs(value);
break;
case 6:
var value = /** @type {string} */ (reader.readString());
msg.addAliases(value);
break;
case 7:
var value = new proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts;
reader.readMessage(value,proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.deserializeBinaryFromReader);
msg.setCustomtimeouts(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.AnalyzerResourceOptions.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.AnalyzerResourceOptions} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerResourceOptions.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getProtect();
if (f) {
writer.writeBool(
1,
f
);
}
f = message.getIgnorechangesList();
if (f.length > 0) {
writer.writeRepeatedString(
2,
f
);
}
f = message.getDeletebeforereplace();
if (f) {
writer.writeBool(
3,
f
);
}
f = message.getDeletebeforereplacedefined();
if (f) {
writer.writeBool(
4,
f
);
}
f = message.getAdditionalsecretoutputsList();
if (f.length > 0) {
writer.writeRepeatedString(
5,
f
);
}
f = message.getAliasesList();
if (f.length > 0) {
writer.writeRepeatedString(
6,
f
);
}
f = message.getCustomtimeouts();
if (f != null) {
writer.writeMessage(
7,
f,
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.serializeBinaryToWriter
);
}
};
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.toObject = function(includeInstance, msg) {
var f, obj = {
2020-02-28 12:53:47 +01:00
create: jspb.Message.getFloatingPointFieldWithDefault(msg, 1, 0.0),
update: jspb.Message.getFloatingPointFieldWithDefault(msg, 2, 0.0),
pb_delete: jspb.Message.getFloatingPointFieldWithDefault(msg, 3, 0.0)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts}
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts;
return proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts}
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {number} */ (reader.readDouble());
msg.setCreate(value);
break;
case 2:
var value = /** @type {number} */ (reader.readDouble());
msg.setUpdate(value);
break;
case 3:
var value = /** @type {number} */ (reader.readDouble());
msg.setDelete(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getCreate();
if (f !== 0.0) {
writer.writeDouble(
1,
f
);
}
f = message.getUpdate();
if (f !== 0.0) {
writer.writeDouble(
2,
f
);
}
f = message.getDelete();
if (f !== 0.0) {
writer.writeDouble(
3,
f
);
}
};
/**
* optional double create = 1;
* @return {number}
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.prototype.getCreate = function() {
2020-02-28 12:53:47 +01:00
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 1, 0.0));
};
2020-02-28 12:53:47 +01:00
/**
* @param {number} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.prototype.setCreate = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3FloatField(this, 1, value);
};
/**
* optional double update = 2;
* @return {number}
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.prototype.getUpdate = function() {
2020-02-28 12:53:47 +01:00
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 2, 0.0));
};
2020-02-28 12:53:47 +01:00
/**
* @param {number} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.prototype.setUpdate = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3FloatField(this, 2, value);
};
/**
* optional double delete = 3;
* @return {number}
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.prototype.getDelete = function() {
2020-02-28 12:53:47 +01:00
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 3, 0.0));
};
2020-02-28 12:53:47 +01:00
/**
* @param {number} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts.prototype.setDelete = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3FloatField(this, 3, value);
};
/**
* optional bool protect = 1;
* @return {boolean}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.getProtect = function() {
2020-02-28 12:53:47 +01:00
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 1, false));
};
2020-02-28 12:53:47 +01:00
/**
* @param {boolean} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.setProtect = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3BooleanField(this, 1, value);
};
/**
* repeated string ignoreChanges = 2;
2020-02-28 12:53:47 +01:00
* @return {!Array<string>}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.getIgnorechangesList = function() {
2020-02-28 12:53:47 +01:00
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 2));
};
2020-02-28 12:53:47 +01:00
/**
* @param {!Array<string>} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.setIgnorechangesList = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setField(this, 2, value || []);
};
/**
2020-02-28 12:53:47 +01:00
* @param {string} value
* @param {number=} opt_index
2020-02-28 12:53:47 +01:00
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.addIgnorechanges = function(value, opt_index) {
2020-02-28 12:53:47 +01:00
return jspb.Message.addToRepeatedField(this, 2, value, opt_index);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.clearIgnorechangesList = function() {
2020-02-28 12:53:47 +01:00
return this.setIgnorechangesList([]);
};
/**
* optional bool deleteBeforeReplace = 3;
* @return {boolean}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.getDeletebeforereplace = function() {
2020-02-28 12:53:47 +01:00
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
};
2020-02-28 12:53:47 +01:00
/**
* @param {boolean} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.setDeletebeforereplace = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3BooleanField(this, 3, value);
};
/**
* optional bool deleteBeforeReplaceDefined = 4;
* @return {boolean}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.getDeletebeforereplacedefined = function() {
2020-02-28 12:53:47 +01:00
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 4, false));
};
2020-02-28 12:53:47 +01:00
/**
* @param {boolean} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.setDeletebeforereplacedefined = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3BooleanField(this, 4, value);
};
/**
* repeated string additionalSecretOutputs = 5;
2020-02-28 12:53:47 +01:00
* @return {!Array<string>}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.getAdditionalsecretoutputsList = function() {
2020-02-28 12:53:47 +01:00
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
};
2020-02-28 12:53:47 +01:00
/**
* @param {!Array<string>} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.setAdditionalsecretoutputsList = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setField(this, 5, value || []);
};
/**
2020-02-28 12:53:47 +01:00
* @param {string} value
* @param {number=} opt_index
2020-02-28 12:53:47 +01:00
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.addAdditionalsecretoutputs = function(value, opt_index) {
2020-02-28 12:53:47 +01:00
return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.clearAdditionalsecretoutputsList = function() {
2020-02-28 12:53:47 +01:00
return this.setAdditionalsecretoutputsList([]);
};
/**
* repeated string aliases = 6;
2020-02-28 12:53:47 +01:00
* @return {!Array<string>}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.getAliasesList = function() {
2020-02-28 12:53:47 +01:00
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
};
2020-02-28 12:53:47 +01:00
/**
* @param {!Array<string>} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.setAliasesList = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setField(this, 6, value || []);
};
/**
2020-02-28 12:53:47 +01:00
* @param {string} value
* @param {number=} opt_index
2020-02-28 12:53:47 +01:00
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.addAliases = function(value, opt_index) {
2020-02-28 12:53:47 +01:00
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.clearAliasesList = function() {
2020-02-28 12:53:47 +01:00
return this.setAliasesList([]);
};
/**
* optional CustomTimeouts customTimeouts = 7;
* @return {?proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.getCustomtimeouts = function() {
return /** @type{?proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts} */ (
jspb.Message.getWrapperField(this, proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts, 7));
};
2020-02-28 12:53:47 +01:00
/**
* @param {?proto.pulumirpc.AnalyzerResourceOptions.CustomTimeouts|undefined} value
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.setCustomtimeouts = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setWrapperField(this, 7, value);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.AnalyzerResourceOptions} returns this
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.clearCustomtimeouts = function() {
2020-02-28 12:53:47 +01:00
return this.setCustomtimeouts(undefined);
};
/**
* Returns whether this field is set.
2020-02-28 12:53:47 +01:00
* @return {boolean}
*/
proto.pulumirpc.AnalyzerResourceOptions.prototype.hasCustomtimeouts = function() {
return jspb.Message.getField(this, 7) != null;
};
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzerProviderResource.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.AnalyzerProviderResource} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerProviderResource.toObject = function(includeInstance, msg) {
var f, obj = {
type: jspb.Message.getFieldWithDefault(msg, 1, ""),
properties: (f = msg.getProperties()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
urn: jspb.Message.getFieldWithDefault(msg, 3, ""),
name: jspb.Message.getFieldWithDefault(msg, 4, "")
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.AnalyzerProviderResource}
*/
proto.pulumirpc.AnalyzerProviderResource.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.AnalyzerProviderResource;
return proto.pulumirpc.AnalyzerProviderResource.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.AnalyzerProviderResource} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.AnalyzerProviderResource}
*/
proto.pulumirpc.AnalyzerProviderResource.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setType(value);
break;
case 2:
var value = new google_protobuf_struct_pb.Struct;
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
msg.setProperties(value);
break;
case 3:
var value = /** @type {string} */ (reader.readString());
msg.setUrn(value);
break;
case 4:
var value = /** @type {string} */ (reader.readString());
msg.setName(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.AnalyzerProviderResource.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.AnalyzerProviderResource} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerProviderResource.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getType();
if (f.length > 0) {
writer.writeString(
1,
f
);
}
f = message.getProperties();
if (f != null) {
writer.writeMessage(
2,
f,
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
);
}
f = message.getUrn();
if (f.length > 0) {
writer.writeString(
3,
f
);
}
f = message.getName();
if (f.length > 0) {
writer.writeString(
4,
f
);
}
};
/**
* optional string type = 1;
* @return {string}
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.getType = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerProviderResource} returns this
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.setType = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 1, value);
};
/**
* optional google.protobuf.Struct properties = 2;
* @return {?proto.google.protobuf.Struct}
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.getProperties = function() {
return /** @type{?proto.google.protobuf.Struct} */ (
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 2));
};
2020-02-28 12:53:47 +01:00
/**
* @param {?proto.google.protobuf.Struct|undefined} value
* @return {!proto.pulumirpc.AnalyzerProviderResource} returns this
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.setProperties = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setWrapperField(this, 2, value);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.AnalyzerProviderResource} returns this
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.clearProperties = function() {
2020-02-28 12:53:47 +01:00
return this.setProperties(undefined);
};
/**
* Returns whether this field is set.
2020-02-28 12:53:47 +01:00
* @return {boolean}
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.hasProperties = function() {
return jspb.Message.getField(this, 2) != null;
};
/**
* optional string urn = 3;
* @return {string}
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.getUrn = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerProviderResource} returns this
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.setUrn = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 3, value);
};
/**
* optional string name = 4;
* @return {string}
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.getName = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerProviderResource} returns this
*/
proto.pulumirpc.AnalyzerProviderResource.prototype.setName = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 4, value);
};
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.pulumirpc.AnalyzerPropertyDependencies.repeatedFields_ = [1];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.AnalyzerPropertyDependencies.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzerPropertyDependencies.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.AnalyzerPropertyDependencies} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerPropertyDependencies.toObject = function(includeInstance, msg) {
var f, obj = {
2020-02-28 12:53:47 +01:00
urnsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.AnalyzerPropertyDependencies}
*/
proto.pulumirpc.AnalyzerPropertyDependencies.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.AnalyzerPropertyDependencies;
return proto.pulumirpc.AnalyzerPropertyDependencies.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.AnalyzerPropertyDependencies} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.AnalyzerPropertyDependencies}
*/
proto.pulumirpc.AnalyzerPropertyDependencies.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.addUrns(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.AnalyzerPropertyDependencies.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.AnalyzerPropertyDependencies.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.AnalyzerPropertyDependencies} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerPropertyDependencies.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getUrnsList();
if (f.length > 0) {
writer.writeRepeatedString(
1,
f
);
}
};
/**
* repeated string urns = 1;
2020-02-28 12:53:47 +01:00
* @return {!Array<string>}
*/
proto.pulumirpc.AnalyzerPropertyDependencies.prototype.getUrnsList = function() {
2020-02-28 12:53:47 +01:00
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 1));
};
2020-02-28 12:53:47 +01:00
/**
* @param {!Array<string>} value
* @return {!proto.pulumirpc.AnalyzerPropertyDependencies} returns this
*/
proto.pulumirpc.AnalyzerPropertyDependencies.prototype.setUrnsList = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setField(this, 1, value || []);
};
/**
2020-02-28 12:53:47 +01:00
* @param {string} value
* @param {number=} opt_index
2020-02-28 12:53:47 +01:00
* @return {!proto.pulumirpc.AnalyzerPropertyDependencies} returns this
*/
proto.pulumirpc.AnalyzerPropertyDependencies.prototype.addUrns = function(value, opt_index) {
2020-02-28 12:53:47 +01:00
return jspb.Message.addToRepeatedField(this, 1, value, opt_index);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.AnalyzerPropertyDependencies} returns this
*/
proto.pulumirpc.AnalyzerPropertyDependencies.prototype.clearUrnsList = function() {
2020-02-28 12:53:47 +01:00
return this.setUrnsList([]);
};
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.pulumirpc.AnalyzeStackRequest.repeatedFields_ = [1];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.AnalyzeStackRequest.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzeStackRequest.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.AnalyzeStackRequest} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzeStackRequest.toObject = function(includeInstance, msg) {
var f, obj = {
resourcesList: jspb.Message.toObjectList(msg.getResourcesList(),
proto.pulumirpc.AnalyzerResource.toObject, includeInstance)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.AnalyzeStackRequest}
*/
proto.pulumirpc.AnalyzeStackRequest.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.AnalyzeStackRequest;
return proto.pulumirpc.AnalyzeStackRequest.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.AnalyzeStackRequest} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.AnalyzeStackRequest}
*/
proto.pulumirpc.AnalyzeStackRequest.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = new proto.pulumirpc.AnalyzerResource;
reader.readMessage(value,proto.pulumirpc.AnalyzerResource.deserializeBinaryFromReader);
msg.addResources(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.AnalyzeStackRequest.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.AnalyzeStackRequest.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.AnalyzeStackRequest} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzeStackRequest.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getResourcesList();
if (f.length > 0) {
writer.writeRepeatedMessage(
1,
f,
proto.pulumirpc.AnalyzerResource.serializeBinaryToWriter
);
}
};
/**
* repeated AnalyzerResource resources = 1;
2020-02-28 12:53:47 +01:00
* @return {!Array<!proto.pulumirpc.AnalyzerResource>}
*/
proto.pulumirpc.AnalyzeStackRequest.prototype.getResourcesList = function() {
2020-02-28 12:53:47 +01:00
return /** @type{!Array<!proto.pulumirpc.AnalyzerResource>} */ (
jspb.Message.getRepeatedWrapperField(this, proto.pulumirpc.AnalyzerResource, 1));
};
2020-02-28 12:53:47 +01:00
/**
* @param {!Array<!proto.pulumirpc.AnalyzerResource>} value
* @return {!proto.pulumirpc.AnalyzeStackRequest} returns this
*/
proto.pulumirpc.AnalyzeStackRequest.prototype.setResourcesList = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setRepeatedWrapperField(this, 1, value);
};
/**
* @param {!proto.pulumirpc.AnalyzerResource=} opt_value
* @param {number=} opt_index
* @return {!proto.pulumirpc.AnalyzerResource}
*/
proto.pulumirpc.AnalyzeStackRequest.prototype.addResources = function(opt_value, opt_index) {
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.pulumirpc.AnalyzerResource, opt_index);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.AnalyzeStackRequest} returns this
*/
proto.pulumirpc.AnalyzeStackRequest.prototype.clearResourcesList = function() {
2020-02-28 12:53:47 +01:00
return this.setResourcesList([]);
};
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeResponse.repeatedFields_ = [2];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.AnalyzeResponse.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzeResponse.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.AnalyzeResponse} msg The msg instance to transform.
* @return {!Object}
Implement components This change implements core support for "components" in the Pulumi Fabric. This work is described further in pulumi/pulumi#340, where we are still discussing some of the finer points. In a nutshell, resources no longer imply external providers. It's entirely possible to have a resource that logically represents something but without having a physical manifestation that needs to be tracked and managed by our typical CRUD operations. For example, the aws/serverless/Function helper is one such type. It aggregates Lambda-related resources and exposes a nice interface. All of the Pulumi Cloud Framework resources are also examples. To indicate that a resource does participate in the usual CRUD resource provider, it simply derives from ExternalResource instead of Resource. All resources now have the ability to adopt children. This is purely a metadata/tagging thing, and will help us roll up displays, provide attribution to the developer, and even hide aspects of the resource graph as appropriate (e.g., when they are implementation details). Our use of this capability is ultra limited right now; in fact, the only place we display children is in the CLI output. For instance: + aws:serverless:Function: (create) [urn=urn:pulumi:demo::serverless::aws:serverless:Function::mylambda] => urn:pulumi:demo::serverless::aws:iam/role:Role::mylambda-iamrole => urn:pulumi:demo::serverless::aws:iam/rolePolicyAttachment:RolePolicyAttachment::mylambda-iampolicy-0 => urn:pulumi:demo::serverless::aws:lambda/function:Function::mylambda The bit indicating whether a resource is external or not is tracked in the resulting checkpoint file, along with any of its children.
2017-10-14 23:18:43 +02:00
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzeResponse.toObject = function(includeInstance, msg) {
var f, obj = {
2019-06-11 00:20:22 +02:00
diagnosticsList: jspb.Message.toObjectList(msg.getDiagnosticsList(),
proto.pulumirpc.AnalyzeDiagnostic.toObject, includeInstance)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.AnalyzeResponse}
*/
proto.pulumirpc.AnalyzeResponse.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.AnalyzeResponse;
return proto.pulumirpc.AnalyzeResponse.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.AnalyzeResponse} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.AnalyzeResponse}
*/
proto.pulumirpc.AnalyzeResponse.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
2019-06-11 00:20:22 +02:00
case 2:
var value = new proto.pulumirpc.AnalyzeDiagnostic;
reader.readMessage(value,proto.pulumirpc.AnalyzeDiagnostic.deserializeBinaryFromReader);
msg.addDiagnostics(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.AnalyzeResponse.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.AnalyzeResponse.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.AnalyzeResponse} message
* @param {!jspb.BinaryWriter} writer
Implement components This change implements core support for "components" in the Pulumi Fabric. This work is described further in pulumi/pulumi#340, where we are still discussing some of the finer points. In a nutshell, resources no longer imply external providers. It's entirely possible to have a resource that logically represents something but without having a physical manifestation that needs to be tracked and managed by our typical CRUD operations. For example, the aws/serverless/Function helper is one such type. It aggregates Lambda-related resources and exposes a nice interface. All of the Pulumi Cloud Framework resources are also examples. To indicate that a resource does participate in the usual CRUD resource provider, it simply derives from ExternalResource instead of Resource. All resources now have the ability to adopt children. This is purely a metadata/tagging thing, and will help us roll up displays, provide attribution to the developer, and even hide aspects of the resource graph as appropriate (e.g., when they are implementation details). Our use of this capability is ultra limited right now; in fact, the only place we display children is in the CLI output. For instance: + aws:serverless:Function: (create) [urn=urn:pulumi:demo::serverless::aws:serverless:Function::mylambda] => urn:pulumi:demo::serverless::aws:iam/role:Role::mylambda-iamrole => urn:pulumi:demo::serverless::aws:iam/rolePolicyAttachment:RolePolicyAttachment::mylambda-iampolicy-0 => urn:pulumi:demo::serverless::aws:lambda/function:Function::mylambda The bit indicating whether a resource is external or not is tracked in the resulting checkpoint file, along with any of its children.
2017-10-14 23:18:43 +02:00
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzeResponse.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
2019-06-11 00:20:22 +02:00
f = message.getDiagnosticsList();
if (f.length > 0) {
writer.writeRepeatedMessage(
2019-06-11 00:20:22 +02:00
2,
f,
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.serializeBinaryToWriter
);
}
};
/**
2019-06-11 00:20:22 +02:00
* repeated AnalyzeDiagnostic diagnostics = 2;
2020-02-28 12:53:47 +01:00
* @return {!Array<!proto.pulumirpc.AnalyzeDiagnostic>}
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeResponse.prototype.getDiagnosticsList = function() {
2020-02-28 12:53:47 +01:00
return /** @type{!Array<!proto.pulumirpc.AnalyzeDiagnostic>} */ (
2019-06-11 00:20:22 +02:00
jspb.Message.getRepeatedWrapperField(this, proto.pulumirpc.AnalyzeDiagnostic, 2));
};
2020-02-28 12:53:47 +01:00
/**
* @param {!Array<!proto.pulumirpc.AnalyzeDiagnostic>} value
* @return {!proto.pulumirpc.AnalyzeResponse} returns this
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeResponse.prototype.setDiagnosticsList = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setRepeatedWrapperField(this, 2, value);
};
/**
2019-06-11 00:20:22 +02:00
* @param {!proto.pulumirpc.AnalyzeDiagnostic=} opt_value
* @param {number=} opt_index
2019-06-11 00:20:22 +02:00
* @return {!proto.pulumirpc.AnalyzeDiagnostic}
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeResponse.prototype.addDiagnostics = function(opt_value, opt_index) {
return jspb.Message.addToRepeatedWrapperField(this, 2, opt_value, proto.pulumirpc.AnalyzeDiagnostic, opt_index);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.AnalyzeResponse} returns this
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeResponse.prototype.clearDiagnosticsList = function() {
2020-02-28 12:53:47 +01:00
return this.setDiagnosticsList([]);
};
2019-06-11 00:20:22 +02:00
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.pulumirpc.AnalyzeDiagnostic.repeatedFields_ = [6];
2019-06-11 00:20:22 +02:00
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzeDiagnostic.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
2019-06-11 00:20:22 +02:00
* @param {!proto.pulumirpc.AnalyzeDiagnostic} msg The msg instance to transform.
* @return {!Object}
Implement components This change implements core support for "components" in the Pulumi Fabric. This work is described further in pulumi/pulumi#340, where we are still discussing some of the finer points. In a nutshell, resources no longer imply external providers. It's entirely possible to have a resource that logically represents something but without having a physical manifestation that needs to be tracked and managed by our typical CRUD operations. For example, the aws/serverless/Function helper is one such type. It aggregates Lambda-related resources and exposes a nice interface. All of the Pulumi Cloud Framework resources are also examples. To indicate that a resource does participate in the usual CRUD resource provider, it simply derives from ExternalResource instead of Resource. All resources now have the ability to adopt children. This is purely a metadata/tagging thing, and will help us roll up displays, provide attribution to the developer, and even hide aspects of the resource graph as appropriate (e.g., when they are implementation details). Our use of this capability is ultra limited right now; in fact, the only place we display children is in the CLI output. For instance: + aws:serverless:Function: (create) [urn=urn:pulumi:demo::serverless::aws:serverless:Function::mylambda] => urn:pulumi:demo::serverless::aws:iam/role:Role::mylambda-iamrole => urn:pulumi:demo::serverless::aws:iam/rolePolicyAttachment:RolePolicyAttachment::mylambda-iampolicy-0 => urn:pulumi:demo::serverless::aws:lambda/function:Function::mylambda The bit indicating whether a resource is external or not is tracked in the resulting checkpoint file, along with any of its children.
2017-10-14 23:18:43 +02:00
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.toObject = function(includeInstance, msg) {
var f, obj = {
policyname: jspb.Message.getFieldWithDefault(msg, 1, ""),
policypackname: jspb.Message.getFieldWithDefault(msg, 2, ""),
policypackversion: jspb.Message.getFieldWithDefault(msg, 3, ""),
description: jspb.Message.getFieldWithDefault(msg, 4, ""),
message: jspb.Message.getFieldWithDefault(msg, 5, ""),
2020-02-28 12:53:47 +01:00
tagsList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
enforcementlevel: jspb.Message.getFieldWithDefault(msg, 7, 0),
urn: jspb.Message.getFieldWithDefault(msg, 8, "")
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
2019-06-11 00:20:22 +02:00
* @return {!proto.pulumirpc.AnalyzeDiagnostic}
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
2019-06-11 00:20:22 +02:00
var msg = new proto.pulumirpc.AnalyzeDiagnostic;
return proto.pulumirpc.AnalyzeDiagnostic.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
2019-06-11 00:20:22 +02:00
* @param {!proto.pulumirpc.AnalyzeDiagnostic} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
2019-06-11 00:20:22 +02:00
* @return {!proto.pulumirpc.AnalyzeDiagnostic}
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setPolicyname(value);
break;
case 2:
var value = /** @type {string} */ (reader.readString());
msg.setPolicypackname(value);
2019-06-11 00:20:22 +02:00
break;
case 3:
var value = /** @type {string} */ (reader.readString());
msg.setPolicypackversion(value);
2019-06-11 00:20:22 +02:00
break;
case 4:
var value = /** @type {string} */ (reader.readString());
msg.setDescription(value);
2019-06-11 00:20:22 +02:00
break;
case 5:
var value = /** @type {string} */ (reader.readString());
msg.setMessage(value);
break;
case 6:
var value = /** @type {string} */ (reader.readString());
msg.addTags(value);
break;
case 7:
var value = /** @type {!proto.pulumirpc.EnforcementLevel} */ (reader.readEnum());
2019-06-11 00:20:22 +02:00
msg.setEnforcementlevel(value);
break;
case 8:
var value = /** @type {string} */ (reader.readString());
msg.setUrn(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
2019-06-11 00:20:22 +02:00
* @param {!proto.pulumirpc.AnalyzeDiagnostic} message
* @param {!jspb.BinaryWriter} writer
Implement components This change implements core support for "components" in the Pulumi Fabric. This work is described further in pulumi/pulumi#340, where we are still discussing some of the finer points. In a nutshell, resources no longer imply external providers. It's entirely possible to have a resource that logically represents something but without having a physical manifestation that needs to be tracked and managed by our typical CRUD operations. For example, the aws/serverless/Function helper is one such type. It aggregates Lambda-related resources and exposes a nice interface. All of the Pulumi Cloud Framework resources are also examples. To indicate that a resource does participate in the usual CRUD resource provider, it simply derives from ExternalResource instead of Resource. All resources now have the ability to adopt children. This is purely a metadata/tagging thing, and will help us roll up displays, provide attribution to the developer, and even hide aspects of the resource graph as appropriate (e.g., when they are implementation details). Our use of this capability is ultra limited right now; in fact, the only place we display children is in the CLI output. For instance: + aws:serverless:Function: (create) [urn=urn:pulumi:demo::serverless::aws:serverless:Function::mylambda] => urn:pulumi:demo::serverless::aws:iam/role:Role::mylambda-iamrole => urn:pulumi:demo::serverless::aws:iam/rolePolicyAttachment:RolePolicyAttachment::mylambda-iampolicy-0 => urn:pulumi:demo::serverless::aws:lambda/function:Function::mylambda The bit indicating whether a resource is external or not is tracked in the resulting checkpoint file, along with any of its children.
2017-10-14 23:18:43 +02:00
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getPolicyname();
if (f.length > 0) {
writer.writeString(
1,
f
);
}
f = message.getPolicypackname();
if (f.length > 0) {
writer.writeString(
2,
f
);
}
f = message.getPolicypackversion();
2019-06-11 00:20:22 +02:00
if (f.length > 0) {
writer.writeString(
3,
f
);
}
f = message.getDescription();
if (f.length > 0) {
writer.writeString(
4,
f
);
}
f = message.getMessage();
if (f.length > 0) {
writer.writeString(
5,
f
);
}
2019-06-11 00:20:22 +02:00
f = message.getTagsList();
if (f.length > 0) {
writer.writeRepeatedString(
6,
2019-06-11 00:20:22 +02:00
f
);
}
f = message.getEnforcementlevel();
if (f !== 0.0) {
writer.writeEnum(
7,
2019-06-11 00:20:22 +02:00
f
);
}
f = message.getUrn();
if (f.length > 0) {
writer.writeString(
8,
f
);
}
};
2019-06-11 00:20:22 +02:00
/**
* optional string policyName = 1;
* @return {string}
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.getPolicyname = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.setPolicyname = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 1, value);
};
/**
* optional string policyPackName = 2;
* @return {string}
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.getPolicypackname = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.setPolicypackname = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 2, value);
};
2019-06-11 00:20:22 +02:00
/**
* optional string policyPackVersion = 3;
2019-06-11 00:20:22 +02:00
* @return {string}
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.getPolicypackversion = function() {
2019-06-11 00:20:22 +02:00
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.setPolicypackversion = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 3, value);
2019-06-11 00:20:22 +02:00
};
/**
* optional string description = 4;
* @return {string}
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.getDescription = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.setDescription = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 4, value);
};
/**
* optional string message = 5;
* @return {string}
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.getMessage = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.setMessage = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 5, value);
};
/**
* repeated string tags = 6;
2020-02-28 12:53:47 +01:00
* @return {!Array<string>}
2019-06-11 00:20:22 +02:00
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.getTagsList = function() {
2020-02-28 12:53:47 +01:00
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
2019-06-11 00:20:22 +02:00
};
2020-02-28 12:53:47 +01:00
/**
* @param {!Array<string>} value
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.prototype.setTagsList = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setField(this, 6, value || []);
2019-06-11 00:20:22 +02:00
};
/**
2020-02-28 12:53:47 +01:00
* @param {string} value
2019-06-11 00:20:22 +02:00
* @param {number=} opt_index
2020-02-28 12:53:47 +01:00
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
2019-06-11 00:20:22 +02:00
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.addTags = function(value, opt_index) {
2020-02-28 12:53:47 +01:00
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
2019-06-11 00:20:22 +02:00
};
2020-02-28 12:53:47 +01:00
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.prototype.clearTagsList = function() {
2020-02-28 12:53:47 +01:00
return this.setTagsList([]);
2019-06-11 00:20:22 +02:00
};
/**
* optional EnforcementLevel enforcementLevel = 7;
* @return {!proto.pulumirpc.EnforcementLevel}
2019-06-11 00:20:22 +02:00
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.getEnforcementlevel = function() {
return /** @type {!proto.pulumirpc.EnforcementLevel} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
2019-06-11 00:20:22 +02:00
};
2020-02-28 12:53:47 +01:00
/**
* @param {!proto.pulumirpc.EnforcementLevel} value
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
*/
2019-06-11 00:20:22 +02:00
proto.pulumirpc.AnalyzeDiagnostic.prototype.setEnforcementlevel = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3EnumField(this, 7, value);
2019-06-11 00:20:22 +02:00
};
/**
* optional string urn = 8;
* @return {string}
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.getUrn = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
*/
proto.pulumirpc.AnalyzeDiagnostic.prototype.setUrn = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 8, value);
};
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.pulumirpc.AnalyzerInfo.repeatedFields_ = [3];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.AnalyzerInfo.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.AnalyzerInfo.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.AnalyzerInfo} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerInfo.toObject = function(includeInstance, msg) {
var f, obj = {
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
displayname: jspb.Message.getFieldWithDefault(msg, 2, ""),
policiesList: jspb.Message.toObjectList(msg.getPoliciesList(),
2020-02-25 02:11:56 +01:00
proto.pulumirpc.PolicyInfo.toObject, includeInstance),
version: jspb.Message.getFieldWithDefault(msg, 4, ""),
supportsconfig: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
initialconfigMap: (f = msg.getInitialconfigMap()) ? f.toObject(includeInstance, proto.pulumirpc.PolicyConfig.toObject) : []
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.AnalyzerInfo}
*/
proto.pulumirpc.AnalyzerInfo.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.AnalyzerInfo;
return proto.pulumirpc.AnalyzerInfo.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.AnalyzerInfo} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.AnalyzerInfo}
*/
proto.pulumirpc.AnalyzerInfo.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setName(value);
break;
case 2:
var value = /** @type {string} */ (reader.readString());
msg.setDisplayname(value);
break;
case 3:
var value = new proto.pulumirpc.PolicyInfo;
reader.readMessage(value,proto.pulumirpc.PolicyInfo.deserializeBinaryFromReader);
msg.addPolicies(value);
break;
2020-02-25 02:11:56 +01:00
case 4:
var value = /** @type {string} */ (reader.readString());
msg.setVersion(value);
break;
case 5:
var value = /** @type {boolean} */ (reader.readBool());
msg.setSupportsconfig(value);
break;
case 6:
var value = msg.getInitialconfigMap();
reader.readMessage(value, function(message, reader) {
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.pulumirpc.PolicyConfig.deserializeBinaryFromReader, "", new proto.pulumirpc.PolicyConfig());
});
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.AnalyzerInfo.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.AnalyzerInfo.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.AnalyzerInfo} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.AnalyzerInfo.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getName();
if (f.length > 0) {
writer.writeString(
1,
f
);
}
f = message.getDisplayname();
if (f.length > 0) {
writer.writeString(
2,
f
);
}
f = message.getPoliciesList();
if (f.length > 0) {
writer.writeRepeatedMessage(
3,
f,
proto.pulumirpc.PolicyInfo.serializeBinaryToWriter
);
}
2020-02-25 02:11:56 +01:00
f = message.getVersion();
if (f.length > 0) {
writer.writeString(
4,
f
);
}
f = message.getSupportsconfig();
if (f) {
writer.writeBool(
5,
f
);
}
f = message.getInitialconfigMap(true);
if (f && f.getLength() > 0) {
f.serializeBinary(6, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeMessage, proto.pulumirpc.PolicyConfig.serializeBinaryToWriter);
}
};
/**
* optional string name = 1;
* @return {string}
*/
proto.pulumirpc.AnalyzerInfo.prototype.getName = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerInfo} returns this
*/
proto.pulumirpc.AnalyzerInfo.prototype.setName = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 1, value);
};
/**
* optional string displayName = 2;
* @return {string}
*/
proto.pulumirpc.AnalyzerInfo.prototype.getDisplayname = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerInfo} returns this
*/
proto.pulumirpc.AnalyzerInfo.prototype.setDisplayname = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 2, value);
};
/**
* repeated PolicyInfo policies = 3;
2020-02-28 12:53:47 +01:00
* @return {!Array<!proto.pulumirpc.PolicyInfo>}
*/
proto.pulumirpc.AnalyzerInfo.prototype.getPoliciesList = function() {
2020-02-28 12:53:47 +01:00
return /** @type{!Array<!proto.pulumirpc.PolicyInfo>} */ (
jspb.Message.getRepeatedWrapperField(this, proto.pulumirpc.PolicyInfo, 3));
};
2020-02-28 12:53:47 +01:00
/**
* @param {!Array<!proto.pulumirpc.PolicyInfo>} value
* @return {!proto.pulumirpc.AnalyzerInfo} returns this
*/
proto.pulumirpc.AnalyzerInfo.prototype.setPoliciesList = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setRepeatedWrapperField(this, 3, value);
};
/**
* @param {!proto.pulumirpc.PolicyInfo=} opt_value
* @param {number=} opt_index
* @return {!proto.pulumirpc.PolicyInfo}
*/
proto.pulumirpc.AnalyzerInfo.prototype.addPolicies = function(opt_value, opt_index) {
return jspb.Message.addToRepeatedWrapperField(this, 3, opt_value, proto.pulumirpc.PolicyInfo, opt_index);
};
2020-02-28 12:53:47 +01:00
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.AnalyzerInfo} returns this
*/
proto.pulumirpc.AnalyzerInfo.prototype.clearPoliciesList = function() {
2020-02-28 12:53:47 +01:00
return this.setPoliciesList([]);
};
2020-02-25 02:11:56 +01:00
/**
* optional string version = 4;
* @return {string}
*/
proto.pulumirpc.AnalyzerInfo.prototype.getVersion = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.AnalyzerInfo} returns this
*/
2020-02-25 02:11:56 +01:00
proto.pulumirpc.AnalyzerInfo.prototype.setVersion = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 4, value);
2020-02-25 02:11:56 +01:00
};
/**
* optional bool supportsConfig = 5;
* @return {boolean}
*/
proto.pulumirpc.AnalyzerInfo.prototype.getSupportsconfig = function() {
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
};
/**
* @param {boolean} value
* @return {!proto.pulumirpc.AnalyzerInfo} returns this
*/
proto.pulumirpc.AnalyzerInfo.prototype.setSupportsconfig = function(value) {
return jspb.Message.setProto3BooleanField(this, 5, value);
};
/**
* map<string, PolicyConfig> initialConfig = 6;
* @param {boolean=} opt_noLazyCreate Do not create the map if
* empty, instead returning `undefined`
* @return {!jspb.Map<string,!proto.pulumirpc.PolicyConfig>}
*/
proto.pulumirpc.AnalyzerInfo.prototype.getInitialconfigMap = function(opt_noLazyCreate) {
return /** @type {!jspb.Map<string,!proto.pulumirpc.PolicyConfig>} */ (
jspb.Message.getMapField(this, 6, opt_noLazyCreate,
proto.pulumirpc.PolicyConfig));
};
/**
* Clears values from the map. The map will be non-null.
* @return {!proto.pulumirpc.AnalyzerInfo} returns this
*/
proto.pulumirpc.AnalyzerInfo.prototype.clearInitialconfigMap = function() {
this.getInitialconfigMap().clear();
return this;};
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
2020-02-28 12:53:47 +01:00
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
2020-02-28 12:53:47 +01:00
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
2020-02-28 12:53:47 +01:00
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.PolicyInfo.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.PolicyInfo.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
2020-02-28 12:53:47 +01:00
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.PolicyInfo} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.PolicyInfo.toObject = function(includeInstance, msg) {
var f, obj = {
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
displayname: jspb.Message.getFieldWithDefault(msg, 2, ""),
description: jspb.Message.getFieldWithDefault(msg, 3, ""),
message: jspb.Message.getFieldWithDefault(msg, 4, ""),
enforcementlevel: jspb.Message.getFieldWithDefault(msg, 5, 0),
configschema: (f = msg.getConfigschema()) && proto.pulumirpc.PolicyConfigSchema.toObject(includeInstance, f)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.PolicyInfo}
*/
proto.pulumirpc.PolicyInfo.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.PolicyInfo;
return proto.pulumirpc.PolicyInfo.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.PolicyInfo} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.PolicyInfo}
*/
proto.pulumirpc.PolicyInfo.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setName(value);
break;
case 2:
var value = /** @type {string} */ (reader.readString());
msg.setDisplayname(value);
break;
case 3:
var value = /** @type {string} */ (reader.readString());
msg.setDescription(value);
break;
case 4:
var value = /** @type {string} */ (reader.readString());
msg.setMessage(value);
break;
case 5:
var value = /** @type {!proto.pulumirpc.EnforcementLevel} */ (reader.readEnum());
msg.setEnforcementlevel(value);
break;
case 6:
var value = new proto.pulumirpc.PolicyConfigSchema;
reader.readMessage(value,proto.pulumirpc.PolicyConfigSchema.deserializeBinaryFromReader);
msg.setConfigschema(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.PolicyInfo.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.PolicyInfo.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.PolicyInfo} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.PolicyInfo.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getName();
if (f.length > 0) {
writer.writeString(
1,
f
);
}
f = message.getDisplayname();
if (f.length > 0) {
writer.writeString(
2,
f
);
}
f = message.getDescription();
if (f.length > 0) {
writer.writeString(
3,
f
);
}
f = message.getMessage();
if (f.length > 0) {
writer.writeString(
4,
f
);
}
f = message.getEnforcementlevel();
if (f !== 0.0) {
writer.writeEnum(
5,
f
);
}
f = message.getConfigschema();
if (f != null) {
writer.writeMessage(
6,
f,
proto.pulumirpc.PolicyConfigSchema.serializeBinaryToWriter
);
}
};
/**
* optional string name = 1;
* @return {string}
*/
proto.pulumirpc.PolicyInfo.prototype.getName = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.PolicyInfo} returns this
*/
proto.pulumirpc.PolicyInfo.prototype.setName = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 1, value);
};
/**
* optional string displayName = 2;
* @return {string}
*/
proto.pulumirpc.PolicyInfo.prototype.getDisplayname = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.PolicyInfo} returns this
*/
proto.pulumirpc.PolicyInfo.prototype.setDisplayname = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 2, value);
};
/**
* optional string description = 3;
* @return {string}
*/
proto.pulumirpc.PolicyInfo.prototype.getDescription = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.PolicyInfo} returns this
*/
proto.pulumirpc.PolicyInfo.prototype.setDescription = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 3, value);
};
/**
* optional string message = 4;
* @return {string}
*/
proto.pulumirpc.PolicyInfo.prototype.getMessage = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
};
2020-02-28 12:53:47 +01:00
/**
* @param {string} value
* @return {!proto.pulumirpc.PolicyInfo} returns this
*/
proto.pulumirpc.PolicyInfo.prototype.setMessage = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3StringField(this, 4, value);
};
/**
* optional EnforcementLevel enforcementLevel = 5;
* @return {!proto.pulumirpc.EnforcementLevel}
*/
proto.pulumirpc.PolicyInfo.prototype.getEnforcementlevel = function() {
return /** @type {!proto.pulumirpc.EnforcementLevel} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
};
2020-02-28 12:53:47 +01:00
/**
* @param {!proto.pulumirpc.EnforcementLevel} value
* @return {!proto.pulumirpc.PolicyInfo} returns this
*/
proto.pulumirpc.PolicyInfo.prototype.setEnforcementlevel = function(value) {
2020-02-28 12:53:47 +01:00
return jspb.Message.setProto3EnumField(this, 5, value);
};
/**
* optional PolicyConfigSchema configSchema = 6;
* @return {?proto.pulumirpc.PolicyConfigSchema}
*/
proto.pulumirpc.PolicyInfo.prototype.getConfigschema = function() {
return /** @type{?proto.pulumirpc.PolicyConfigSchema} */ (
jspb.Message.getWrapperField(this, proto.pulumirpc.PolicyConfigSchema, 6));
};
/**
* @param {?proto.pulumirpc.PolicyConfigSchema|undefined} value
* @return {!proto.pulumirpc.PolicyInfo} returns this
*/
proto.pulumirpc.PolicyInfo.prototype.setConfigschema = function(value) {
return jspb.Message.setWrapperField(this, 6, value);
};
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.PolicyInfo} returns this
*/
proto.pulumirpc.PolicyInfo.prototype.clearConfigschema = function() {
return this.setConfigschema(undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.pulumirpc.PolicyInfo.prototype.hasConfigschema = function() {
return jspb.Message.getField(this, 6) != null;
};
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.pulumirpc.PolicyConfigSchema.repeatedFields_ = [2];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.PolicyConfigSchema.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.PolicyConfigSchema.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.PolicyConfigSchema} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.PolicyConfigSchema.toObject = function(includeInstance, msg) {
var f, obj = {
properties: (f = msg.getProperties()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
requiredList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.PolicyConfigSchema}
*/
proto.pulumirpc.PolicyConfigSchema.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.PolicyConfigSchema;
return proto.pulumirpc.PolicyConfigSchema.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.PolicyConfigSchema} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.PolicyConfigSchema}
*/
proto.pulumirpc.PolicyConfigSchema.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = new google_protobuf_struct_pb.Struct;
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
msg.setProperties(value);
break;
case 2:
var value = /** @type {string} */ (reader.readString());
msg.addRequired(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.PolicyConfigSchema.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.PolicyConfigSchema.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.PolicyConfigSchema} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.PolicyConfigSchema.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getProperties();
if (f != null) {
writer.writeMessage(
1,
f,
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
);
}
f = message.getRequiredList();
if (f.length > 0) {
writer.writeRepeatedString(
2,
f
);
}
};
/**
* optional google.protobuf.Struct properties = 1;
* @return {?proto.google.protobuf.Struct}
*/
proto.pulumirpc.PolicyConfigSchema.prototype.getProperties = function() {
return /** @type{?proto.google.protobuf.Struct} */ (
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 1));
};
/**
* @param {?proto.google.protobuf.Struct|undefined} value
* @return {!proto.pulumirpc.PolicyConfigSchema} returns this
*/
proto.pulumirpc.PolicyConfigSchema.prototype.setProperties = function(value) {
return jspb.Message.setWrapperField(this, 1, value);
};
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.PolicyConfigSchema} returns this
*/
proto.pulumirpc.PolicyConfigSchema.prototype.clearProperties = function() {
return this.setProperties(undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.pulumirpc.PolicyConfigSchema.prototype.hasProperties = function() {
return jspb.Message.getField(this, 1) != null;
};
/**
* repeated string required = 2;
* @return {!Array<string>}
*/
proto.pulumirpc.PolicyConfigSchema.prototype.getRequiredList = function() {
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 2));
};
/**
* @param {!Array<string>} value
* @return {!proto.pulumirpc.PolicyConfigSchema} returns this
*/
proto.pulumirpc.PolicyConfigSchema.prototype.setRequiredList = function(value) {
return jspb.Message.setField(this, 2, value || []);
};
/**
* @param {string} value
* @param {number=} opt_index
* @return {!proto.pulumirpc.PolicyConfigSchema} returns this
*/
proto.pulumirpc.PolicyConfigSchema.prototype.addRequired = function(value, opt_index) {
return jspb.Message.addToRepeatedField(this, 2, value, opt_index);
};
/**
* Clears the list making it empty but non-null.
* @return {!proto.pulumirpc.PolicyConfigSchema} returns this
*/
proto.pulumirpc.PolicyConfigSchema.prototype.clearRequiredList = function() {
return this.setRequiredList([]);
};
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.PolicyConfig.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.PolicyConfig.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.PolicyConfig} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.PolicyConfig.toObject = function(includeInstance, msg) {
var f, obj = {
enforcementlevel: jspb.Message.getFieldWithDefault(msg, 1, 0),
properties: (f = msg.getProperties()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.PolicyConfig}
*/
proto.pulumirpc.PolicyConfig.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.PolicyConfig;
return proto.pulumirpc.PolicyConfig.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.PolicyConfig} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.PolicyConfig}
*/
proto.pulumirpc.PolicyConfig.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {!proto.pulumirpc.EnforcementLevel} */ (reader.readEnum());
msg.setEnforcementlevel(value);
break;
case 2:
var value = new google_protobuf_struct_pb.Struct;
reader.readMessage(value,google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
msg.setProperties(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.PolicyConfig.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.PolicyConfig.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.PolicyConfig} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.PolicyConfig.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getEnforcementlevel();
if (f !== 0.0) {
writer.writeEnum(
1,
f
);
}
f = message.getProperties();
if (f != null) {
writer.writeMessage(
2,
f,
google_protobuf_struct_pb.Struct.serializeBinaryToWriter
);
}
};
/**
* optional EnforcementLevel enforcementLevel = 1;
* @return {!proto.pulumirpc.EnforcementLevel}
*/
proto.pulumirpc.PolicyConfig.prototype.getEnforcementlevel = function() {
return /** @type {!proto.pulumirpc.EnforcementLevel} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
};
/**
* @param {!proto.pulumirpc.EnforcementLevel} value
* @return {!proto.pulumirpc.PolicyConfig} returns this
*/
proto.pulumirpc.PolicyConfig.prototype.setEnforcementlevel = function(value) {
return jspb.Message.setProto3EnumField(this, 1, value);
};
/**
* optional google.protobuf.Struct properties = 2;
* @return {?proto.google.protobuf.Struct}
*/
proto.pulumirpc.PolicyConfig.prototype.getProperties = function() {
return /** @type{?proto.google.protobuf.Struct} */ (
jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 2));
};
/**
* @param {?proto.google.protobuf.Struct|undefined} value
* @return {!proto.pulumirpc.PolicyConfig} returns this
*/
proto.pulumirpc.PolicyConfig.prototype.setProperties = function(value) {
return jspb.Message.setWrapperField(this, 2, value);
};
/**
* Clears the message field making it undefined.
* @return {!proto.pulumirpc.PolicyConfig} returns this
*/
proto.pulumirpc.PolicyConfig.prototype.clearProperties = function() {
return this.setProperties(undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.pulumirpc.PolicyConfig.prototype.hasProperties = function() {
return jspb.Message.getField(this, 2) != null;
};
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.pulumirpc.ConfigureAnalyzerRequest.prototype.toObject = function(opt_includeInstance) {
return proto.pulumirpc.ConfigureAnalyzerRequest.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.pulumirpc.ConfigureAnalyzerRequest} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.ConfigureAnalyzerRequest.toObject = function(includeInstance, msg) {
var f, obj = {
policyconfigMap: (f = msg.getPolicyconfigMap()) ? f.toObject(includeInstance, proto.pulumirpc.PolicyConfig.toObject) : []
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.pulumirpc.ConfigureAnalyzerRequest}
*/
proto.pulumirpc.ConfigureAnalyzerRequest.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.pulumirpc.ConfigureAnalyzerRequest;
return proto.pulumirpc.ConfigureAnalyzerRequest.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.pulumirpc.ConfigureAnalyzerRequest} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.pulumirpc.ConfigureAnalyzerRequest}
*/
proto.pulumirpc.ConfigureAnalyzerRequest.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = msg.getPolicyconfigMap();
reader.readMessage(value, function(message, reader) {
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.pulumirpc.PolicyConfig.deserializeBinaryFromReader, "", new proto.pulumirpc.PolicyConfig());
});
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.pulumirpc.ConfigureAnalyzerRequest.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.pulumirpc.ConfigureAnalyzerRequest.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.pulumirpc.ConfigureAnalyzerRequest} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.pulumirpc.ConfigureAnalyzerRequest.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getPolicyconfigMap(true);
if (f && f.getLength() > 0) {
f.serializeBinary(1, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeMessage, proto.pulumirpc.PolicyConfig.serializeBinaryToWriter);
}
};
/**
* map<string, PolicyConfig> policyConfig = 1;
* @param {boolean=} opt_noLazyCreate Do not create the map if
* empty, instead returning `undefined`
* @return {!jspb.Map<string,!proto.pulumirpc.PolicyConfig>}
*/
proto.pulumirpc.ConfigureAnalyzerRequest.prototype.getPolicyconfigMap = function(opt_noLazyCreate) {
return /** @type {!jspb.Map<string,!proto.pulumirpc.PolicyConfig>} */ (
jspb.Message.getMapField(this, 1, opt_noLazyCreate,
proto.pulumirpc.PolicyConfig));
};
/**
* Clears values from the map. The map will be non-null.
* @return {!proto.pulumirpc.ConfigureAnalyzerRequest} returns this
*/
proto.pulumirpc.ConfigureAnalyzerRequest.prototype.clearPolicyconfigMap = function() {
this.getPolicyconfigMap().clear();
return this;};
/**
* @enum {number}
*/
proto.pulumirpc.EnforcementLevel = {
ADVISORY: 0,
MANDATORY: 1,
DISABLED: 2
};
goog.object.extend(exports, proto.pulumirpc);