This commit is contained in:
parent
a7bee5c821
commit
1bd9ee52fb
@ -66,14 +66,14 @@ message ApplicationArtifact {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message DnsRecord {
|
message DnsRecord {
|
||||||
string type = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
|
string type = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
|
||||||
string name = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
|
string name = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
|
||||||
string version = 3 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
|
string version = 3 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
|
||||||
string resource_type = 4 [(gogoproto.moretags) = "json:\"resourceType\" yaml:\"resourceType\""];
|
string resource_type = 4 [(gogoproto.moretags) = "json:\"resourceType\" yaml:\"resourceType\""];
|
||||||
string value = 5 [(gogoproto.moretags) = "json:\"value\" yaml:\"value\""];
|
string value = 5 [(gogoproto.moretags) = "json:\"value\" yaml:\"value\""];
|
||||||
string application_deployment_request = 6 [(gogoproto.moretags) = "json:\"applicationDeploymentRequest\" yaml:\"applicationDeploymentRequest\""];
|
string request = 6 [(gogoproto.moretags) = "json:\"request\" yaml:\"request\""];
|
||||||
string meta = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
|
string meta = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
|
||||||
repeated string tags = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
|
repeated string tags = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
|
||||||
}
|
}
|
||||||
|
|
||||||
message ApplicationDeploymentRequest {
|
message ApplicationDeploymentRequest {
|
||||||
|
@ -1251,7 +1251,7 @@ export namespace vulcanize.registry.v1beta1 {
|
|||||||
version?: string;
|
version?: string;
|
||||||
resource_type?: string;
|
resource_type?: string;
|
||||||
value?: string;
|
value?: string;
|
||||||
application_deployment_request?: string;
|
request?: string;
|
||||||
meta?: string;
|
meta?: string;
|
||||||
tags?: string[];
|
tags?: string[];
|
||||||
}) {
|
}) {
|
||||||
@ -1273,8 +1273,8 @@ export namespace vulcanize.registry.v1beta1 {
|
|||||||
if ("value" in data && data.value != undefined) {
|
if ("value" in data && data.value != undefined) {
|
||||||
this.value = data.value;
|
this.value = data.value;
|
||||||
}
|
}
|
||||||
if ("application_deployment_request" in data && data.application_deployment_request != undefined) {
|
if ("request" in data && data.request != undefined) {
|
||||||
this.application_deployment_request = data.application_deployment_request;
|
this.request = data.request;
|
||||||
}
|
}
|
||||||
if ("meta" in data && data.meta != undefined) {
|
if ("meta" in data && data.meta != undefined) {
|
||||||
this.meta = data.meta;
|
this.meta = data.meta;
|
||||||
@ -1314,10 +1314,10 @@ export namespace vulcanize.registry.v1beta1 {
|
|||||||
set value(value: string) {
|
set value(value: string) {
|
||||||
pb_1.Message.setField(this, 5, value);
|
pb_1.Message.setField(this, 5, value);
|
||||||
}
|
}
|
||||||
get application_deployment_request() {
|
get request() {
|
||||||
return pb_1.Message.getFieldWithDefault(this, 6, "") as string;
|
return pb_1.Message.getFieldWithDefault(this, 6, "") as string;
|
||||||
}
|
}
|
||||||
set application_deployment_request(value: string) {
|
set request(value: string) {
|
||||||
pb_1.Message.setField(this, 6, value);
|
pb_1.Message.setField(this, 6, value);
|
||||||
}
|
}
|
||||||
get meta() {
|
get meta() {
|
||||||
@ -1338,7 +1338,7 @@ export namespace vulcanize.registry.v1beta1 {
|
|||||||
version?: string;
|
version?: string;
|
||||||
resource_type?: string;
|
resource_type?: string;
|
||||||
value?: string;
|
value?: string;
|
||||||
application_deployment_request?: string;
|
request?: string;
|
||||||
meta?: string;
|
meta?: string;
|
||||||
tags?: string[];
|
tags?: string[];
|
||||||
}): DnsRecord {
|
}): DnsRecord {
|
||||||
@ -1358,8 +1358,8 @@ export namespace vulcanize.registry.v1beta1 {
|
|||||||
if (data.value != null) {
|
if (data.value != null) {
|
||||||
message.value = data.value;
|
message.value = data.value;
|
||||||
}
|
}
|
||||||
if (data.application_deployment_request != null) {
|
if (data.request != null) {
|
||||||
message.application_deployment_request = data.application_deployment_request;
|
message.request = data.request;
|
||||||
}
|
}
|
||||||
if (data.meta != null) {
|
if (data.meta != null) {
|
||||||
message.meta = data.meta;
|
message.meta = data.meta;
|
||||||
@ -1376,7 +1376,7 @@ export namespace vulcanize.registry.v1beta1 {
|
|||||||
version?: string;
|
version?: string;
|
||||||
resource_type?: string;
|
resource_type?: string;
|
||||||
value?: string;
|
value?: string;
|
||||||
application_deployment_request?: string;
|
request?: string;
|
||||||
meta?: string;
|
meta?: string;
|
||||||
tags?: string[];
|
tags?: string[];
|
||||||
} = {};
|
} = {};
|
||||||
@ -1395,8 +1395,8 @@ export namespace vulcanize.registry.v1beta1 {
|
|||||||
if (this.value != null) {
|
if (this.value != null) {
|
||||||
data.value = this.value;
|
data.value = this.value;
|
||||||
}
|
}
|
||||||
if (this.application_deployment_request != null) {
|
if (this.request != null) {
|
||||||
data.application_deployment_request = this.application_deployment_request;
|
data.request = this.request;
|
||||||
}
|
}
|
||||||
if (this.meta != null) {
|
if (this.meta != null) {
|
||||||
data.meta = this.meta;
|
data.meta = this.meta;
|
||||||
@ -1420,8 +1420,8 @@ export namespace vulcanize.registry.v1beta1 {
|
|||||||
writer.writeString(4, this.resource_type);
|
writer.writeString(4, this.resource_type);
|
||||||
if (this.value.length)
|
if (this.value.length)
|
||||||
writer.writeString(5, this.value);
|
writer.writeString(5, this.value);
|
||||||
if (this.application_deployment_request.length)
|
if (this.request.length)
|
||||||
writer.writeString(6, this.application_deployment_request);
|
writer.writeString(6, this.request);
|
||||||
if (this.meta.length)
|
if (this.meta.length)
|
||||||
writer.writeString(20, this.meta);
|
writer.writeString(20, this.meta);
|
||||||
if (this.tags.length)
|
if (this.tags.length)
|
||||||
@ -1451,7 +1451,7 @@ export namespace vulcanize.registry.v1beta1 {
|
|||||||
message.value = reader.readString();
|
message.value = reader.readString();
|
||||||
break;
|
break;
|
||||||
case 6:
|
case 6:
|
||||||
message.application_deployment_request = reader.readString();
|
message.request = reader.readString();
|
||||||
break;
|
break;
|
||||||
case 20:
|
case 20:
|
||||||
message.meta = reader.readString();
|
message.meta = reader.readString();
|
||||||
|
Loading…
Reference in New Issue
Block a user