Skip to content

Commit 1bdb5e2

Browse files
docs: change relative URLs to absolute URLs to fix broken links. (#407)
* changes without context autosynth cannot find the source of changes triggered by earlier changes in this repository, or by version upgrades to tools such as linters. * docs: change relative URLs to absolute URLs to fix broken links. PiperOrigin-RevId: 314438331 Source-Author: Google APIs <[email protected]> Source-Date: Tue Jun 2 17:40:38 2020 -0700 Source-Repo: googleapis/googleapis Source-Sha: 55094be6405640329ddc93730962b9f7e68a0fc1 Source-Link: googleapis/googleapis@55094be
1 parent 8595a81 commit 1bdb5e2

6 files changed

Lines changed: 40 additions & 8 deletions

File tree

packages/google-cloud-texttospeech/protos/google/cloud/texttospeech/v1/cloud_tts.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ message SynthesisInput {
155155
// The SSML document to be synthesized. The SSML document must be valid
156156
// and well-formed. Otherwise the RPC will fail and return
157157
// [google.rpc.Code.INVALID_ARGUMENT][]. For more information, see
158-
// [SSML](/speech/text-to-speech/docs/ssml).
158+
// [SSML](https://cloud.google.com/text-to-speech/docs/ssml).
159159
string ssml = 2;
160160
}
161161
}

packages/google-cloud-texttospeech/protos/google/cloud/texttospeech/v1beta1/cloud_tts.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ message SynthesisInput {
155155
// The SSML document to be synthesized. The SSML document must be valid
156156
// and well-formed. Otherwise the RPC will fail and return
157157
// [google.rpc.Code.INVALID_ARGUMENT][]. For more information, see
158-
// [SSML](/speech/text-to-speech/docs/ssml).
158+
// [SSML](https://cloud.google.com/text-to-speech/docs/ssml).
159159
string ssml = 2;
160160
}
161161
}

packages/google-cloud-texttospeech/protos/protos.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2868,6 +2868,9 @@ export namespace google {
28682868

28692869
/** FieldDescriptorProto options */
28702870
options?: (google.protobuf.IFieldOptions|null);
2871+
2872+
/** FieldDescriptorProto proto3Optional */
2873+
proto3Optional?: (boolean|null);
28712874
}
28722875

28732876
/** Represents a FieldDescriptorProto. */
@@ -2909,6 +2912,9 @@ export namespace google {
29092912
/** FieldDescriptorProto options. */
29102913
public options?: (google.protobuf.IFieldOptions|null);
29112914

2915+
/** FieldDescriptorProto proto3Optional. */
2916+
public proto3Optional: boolean;
2917+
29122918
/**
29132919
* Creates a new FieldDescriptorProto instance using the specified properties.
29142920
* @param [properties] Properties to set

packages/google-cloud-texttospeech/protos/protos.js

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7243,6 +7243,7 @@
72437243
* @property {number|null} [oneofIndex] FieldDescriptorProto oneofIndex
72447244
* @property {string|null} [jsonName] FieldDescriptorProto jsonName
72457245
* @property {google.protobuf.IFieldOptions|null} [options] FieldDescriptorProto options
7246+
* @property {boolean|null} [proto3Optional] FieldDescriptorProto proto3Optional
72467247
*/
72477248

72487249
/**
@@ -7340,6 +7341,14 @@
73407341
*/
73417342
FieldDescriptorProto.prototype.options = null;
73427343

7344+
/**
7345+
* FieldDescriptorProto proto3Optional.
7346+
* @member {boolean} proto3Optional
7347+
* @memberof google.protobuf.FieldDescriptorProto
7348+
* @instance
7349+
*/
7350+
FieldDescriptorProto.prototype.proto3Optional = false;
7351+
73437352
/**
73447353
* Creates a new FieldDescriptorProto instance using the specified properties.
73457354
* @function create
@@ -7384,6 +7393,8 @@
73847393
writer.uint32(/* id 9, wireType 0 =*/72).int32(message.oneofIndex);
73857394
if (message.jsonName != null && Object.hasOwnProperty.call(message, "jsonName"))
73867395
writer.uint32(/* id 10, wireType 2 =*/82).string(message.jsonName);
7396+
if (message.proto3Optional != null && Object.hasOwnProperty.call(message, "proto3Optional"))
7397+
writer.uint32(/* id 17, wireType 0 =*/136).bool(message.proto3Optional);
73877398
return writer;
73887399
};
73897400

@@ -7448,6 +7459,9 @@
74487459
case 8:
74497460
message.options = $root.google.protobuf.FieldOptions.decode(reader, reader.uint32());
74507461
break;
7462+
case 17:
7463+
message.proto3Optional = reader.bool();
7464+
break;
74517465
default:
74527466
reader.skipType(tag & 7);
74537467
break;
@@ -7542,6 +7556,9 @@
75427556
if (error)
75437557
return "options." + error;
75447558
}
7559+
if (message.proto3Optional != null && message.hasOwnProperty("proto3Optional"))
7560+
if (typeof message.proto3Optional !== "boolean")
7561+
return "proto3Optional: boolean expected";
75457562
return null;
75467563
};
75477564

@@ -7664,6 +7681,8 @@
76647681
throw TypeError(".google.protobuf.FieldDescriptorProto.options: object expected");
76657682
message.options = $root.google.protobuf.FieldOptions.fromObject(object.options);
76667683
}
7684+
if (object.proto3Optional != null)
7685+
message.proto3Optional = Boolean(object.proto3Optional);
76677686
return message;
76687687
};
76697688

@@ -7691,6 +7710,7 @@
76917710
object.options = null;
76927711
object.oneofIndex = 0;
76937712
object.jsonName = "";
7713+
object.proto3Optional = false;
76947714
}
76957715
if (message.name != null && message.hasOwnProperty("name"))
76967716
object.name = message.name;
@@ -7712,6 +7732,8 @@
77127732
object.oneofIndex = message.oneofIndex;
77137733
if (message.jsonName != null && message.hasOwnProperty("jsonName"))
77147734
object.jsonName = message.jsonName;
7735+
if (message.proto3Optional != null && message.hasOwnProperty("proto3Optional"))
7736+
object.proto3Optional = message.proto3Optional;
77157737
return object;
77167738
};
77177739

@@ -9503,7 +9525,7 @@
95039525
* @memberof google.protobuf.FileOptions
95049526
* @instance
95059527
*/
9506-
FileOptions.prototype.ccEnableArenas = false;
9528+
FileOptions.prototype.ccEnableArenas = true;
95079529

95089530
/**
95099531
* FileOptions objcClassPrefix.
@@ -9952,7 +9974,7 @@
99529974
object.javaGenerateEqualsAndHash = false;
99539975
object.deprecated = false;
99549976
object.javaStringCheckUtf8 = false;
9955-
object.ccEnableArenas = false;
9977+
object.ccEnableArenas = true;
99569978
object.objcClassPrefix = "";
99579979
object.csharpNamespace = "";
99589980
object.swiftPrefix = "";

packages/google-cloud-texttospeech/protos/protos.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,6 +794,10 @@
794794
"options": {
795795
"type": "FieldOptions",
796796
"id": 8
797+
},
798+
"proto3Optional": {
799+
"type": "bool",
800+
"id": 17
797801
}
798802
},
799803
"nested": {
@@ -1029,7 +1033,7 @@
10291033
"type": "bool",
10301034
"id": 31,
10311035
"options": {
1032-
"default": false
1036+
"default": true
10331037
}
10341038
},
10351039
"objcClassPrefix": {

packages/google-cloud-texttospeech/synth.metadata

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"git": {
55
"name": ".",
66
"remote": "https://github.com/googleapis/nodejs-text-to-speech.git",
7-
"sha": "6c7d38a0a217d6d7a7d77dcde3756b10e47fb220"
7+
"sha": "1b36546437ec40e882d771c238a2926a5c18eee9"
88
}
99
},
1010
{
1111
"git": {
1212
"name": "googleapis",
1313
"remote": "https://github.com/googleapis/googleapis.git",
14-
"sha": "a3a0bf0f6291d69f2ff3df7fcd63d28ee20ac727",
15-
"internalRef": "310060413"
14+
"sha": "55094be6405640329ddc93730962b9f7e68a0fc1",
15+
"internalRef": "314438331"
1616
}
1717
},
1818
{

0 commit comments

Comments
 (0)