From 0156b05c99fb717fad89fd5ea972c9358c8211a3 Mon Sep 17 00:00:00 2001 From: dansaadati Date: Thu, 7 Apr 2022 15:33:15 -0700 Subject: [PATCH 1/9] factor out setting property type --- .../docfx/templates/devsite/UniversalReference.common.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/third_party/docfx/templates/devsite/UniversalReference.common.js b/third_party/docfx/templates/devsite/UniversalReference.common.js index 17797d05..55c24a96 100644 --- a/third_party/docfx/templates/devsite/UniversalReference.common.js +++ b/third_party/docfx/templates/devsite/UniversalReference.common.js @@ -15,6 +15,7 @@ exports.transform = function (model) { }; if (model.type) { + model[getTypePropertyName(model.type)] = true; switch (model.type.toLowerCase()) { // packages and namespaces are both containers for other elements case 'package': @@ -22,7 +23,6 @@ exports.transform = function (model) { case 'subpackage': model.isNamespace = true; if (model.children) groupChildren(model, namespaceCategory); - model[getTypePropertyName(model.type)] = true; break; case 'module': if (model.langs && model.langs[0].toLowerCase() === "ruby" && @@ -30,7 +30,6 @@ exports.transform = function (model) { model.isClass = true; // Special handling for Ruby modules, which treat methods as embedded groupChildren(model, "rubyModule"); - model[getTypePropertyName(model.type)] = true; break; } case 'class': @@ -40,7 +39,6 @@ exports.transform = function (model) { // Handle classes and modules differently for Python model.isPythonHeader = true; groupChildren(model, namespaceCategory); - model[getTypePropertyName(model.type)] = true; break; } case 'interface': @@ -48,12 +46,10 @@ exports.transform = function (model) { case 'delegate': model.isClass = true; if (model.children) groupChildren(model, classCategory); - model[getTypePropertyName(model.type)] = true; break; case 'enum': model.isEnum = true; if (model.children) groupChildren(model, classCategory); - model[getTypePropertyName(model.type)] = true; break; default: break; From a606968df0532f490de690832fd08460d0e6f030 Mon Sep 17 00:00:00 2001 From: dansaadati Date: Thu, 7 Apr 2022 15:42:54 -0700 Subject: [PATCH 2/9] factor out property type name from ManagedReference pre-renderer --- third_party/docfx/templates/devsite/ManagedReference.common.js | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/docfx/templates/devsite/ManagedReference.common.js b/third_party/docfx/templates/devsite/ManagedReference.common.js index a543dffc..0a23fb18 100644 --- a/third_party/docfx/templates/devsite/ManagedReference.common.js +++ b/third_party/docfx/templates/devsite/ManagedReference.common.js @@ -16,6 +16,7 @@ exports.transform = function (model) { } if (model.type) { + model[getTypePropertyName(model.type)] = true; switch (model.type.toLowerCase()) { case 'overview': case 'package': From 76fef0f777a9d5dfbb170482b09a6b84cdcb8904 Mon Sep 17 00:00:00 2001 From: dansaadati Date: Thu, 7 Apr 2022 16:33:22 -0700 Subject: [PATCH 3/9] remove dependency on partials/title --- .../devsite/ManagedReference.common.js | 51 ++++++++++++++++++- .../ManagedReference.html.primary.tmpl | 2 +- .../devsite/UniversalReference.common.js | 49 ++++++++++++++++++ .../UniversalReference.html.primary.tmpl | 2 +- 4 files changed, 100 insertions(+), 4 deletions(-) diff --git a/third_party/docfx/templates/devsite/ManagedReference.common.js b/third_party/docfx/templates/devsite/ManagedReference.common.js index 0a23fb18..0c26949e 100644 --- a/third_party/docfx/templates/devsite/ManagedReference.common.js +++ b/third_party/docfx/templates/devsite/ManagedReference.common.js @@ -23,7 +23,6 @@ exports.transform = function (model) { case 'namespace': model.isNamespace = true; if (model.children) groupChildren(model, namespaceCategory); - model[getTypePropertyName(model.type)] = true; break; case 'exception': case 'class': @@ -34,12 +33,60 @@ exports.transform = function (model) { case 'enum': model.isClass = true; if (model.children) groupChildren(model, classCategory); - model[getTypePropertyName(model.type)] = true; break; default: break; } } + + // edit title based on type + if (!model.title) { + if (model.inPackage || model.inSubpackage) { + model.title = "Package " + model.name; + } else if (model.inNamespace) { + model.title = "Namespace " + model.name; + } else if (model.inModule) { + model.title = "Module " + model.name; + } else if (model.inClass) { + model.title = "Class " + model.name; + } else if (model.inStruct) { + model.title = "Struct " + model.name; + } else if (model.inInterface) { + model.title = "Interface " + model.name; + } else if (model.inEnum) { + model.title = "Enum " + model.name; + } else if (model.inDelegate) { + model.title = "Delegate " + model.name; + } else if (model.inStaticField) { + model.title = "Static Field " + model.name; + } else if (model.inStaticMethod) { + model.title = "Static Method " + model.name; + } else if (model.inConstructor) { + model.title = "Constructor " + model.name; + } else if (model.inField) { + model.title = "Field " + model.name; + } else if (model.inProperty) { + model.title = "Property " + model.name; + } else if (model.inMethod) { + model.title = "Method " + model.name; + } else if (model.inEvent) { + model.title = "Event " + model.name; + } else if (model.inOperator) { + model.title = "Operator " + model.name; + } else if (model.inEii) { + model.title = "Explict Interface Implementation " + model.name; + } else if (model.inVariable) { + model.title = "Variable " + model.name; + } else if (model.inTypeAlias) { + model.title = "Type Alias " + model.name; + } else if (model.inAnnotation) { + model.title = "Annotation Type " = model.name; + } else if (model.inException) { + model.title = "Exception " + model.name; + } else if (model.inOverview) { + model.title = model.uid + " overview" + } + } return model; } diff --git a/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl b/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl index 5ce113a1..760fee02 100644 --- a/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl +++ b/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl @@ -1,7 +1,7 @@ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} {{!master(layout/_master.tmpl)}} -

{{#title}}{{title}}{{/title}}{{^title}}{{>partials/title}}{{/title}}

+

{{#title}}{{title}}{{/title}}

{{#isNamespace}} {{>partials/namespace}} {{/isNamespace}} diff --git a/third_party/docfx/templates/devsite/UniversalReference.common.js b/third_party/docfx/templates/devsite/UniversalReference.common.js index 55c24a96..26df7475 100644 --- a/third_party/docfx/templates/devsite/UniversalReference.common.js +++ b/third_party/docfx/templates/devsite/UniversalReference.common.js @@ -55,6 +55,55 @@ exports.transform = function (model) { break; } } + + // edit title based on type + if (!model.title) { + if (model.inPackage || model.inSubpackage) { + model.title = "Package " + model.name; + } else if (model.inNamespace) { + model.title = "Namespace " + model.name; + } else if (model.inModule) { + model.title = "Module " + model.name; + } else if (model.inClass) { + model.title = "Class " + model.name; + } else if (model.inStruct) { + model.title = "Struct " + model.name; + } else if (model.inInterface) { + model.title = "Interface " + model.name; + } else if (model.inEnum) { + model.title = "Enum " + model.name; + } else if (model.inDelegate) { + model.title = "Delegate " + model.name; + } else if (model.inStaticField) { + model.title = "Static Field " + model.name; + } else if (model.inStaticMethod) { + model.title = "Static Method " + model.name; + } else if (model.inConstructor) { + model.title = "Constructor " + model.name; + } else if (model.inField) { + model.title = "Field " + model.name; + } else if (model.inProperty) { + model.title = "Property " + model.name; + } else if (model.inMethod) { + model.title = "Method " + model.name; + } else if (model.inEvent) { + model.title = "Event " + model.name; + } else if (model.inOperator) { + model.title = "Operator " + model.name; + } else if (model.inEii) { + model.title = "Explict Interface Implementation " + model.name; + } else if (model.inVariable) { + model.title = "Variable " + model.name; + } else if (model.inTypeAlias) { + model.title = "Type Alias " + model.name; + } else if (model.inAnnotation) { + model.title = "Annotation Type " = model.name; + } else if (model.inException) { + model.title = "Exception " + model.name; + } else if (model.inOverview) { + model.title = model.uid + " overview" + } + } return model; } diff --git a/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl b/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl index b5d1fe44..c55d47be 100644 --- a/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl +++ b/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl @@ -1,7 +1,7 @@ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} {{!master(layout/_master.tmpl)}} -

{{#title}}{{title}}{{/title}}{{^title}}{{>partials/title}}{{/title}}

+

{{#title}}{{title}}{{/title}}

{{#isNamespace}} {{>partials/uref/namespace}} {{/isNamespace}} From a384bd02370ad24c7571726a605a51fefbc9ff04 Mon Sep 17 00:00:00 2001 From: dansaadati Date: Thu, 7 Apr 2022 16:44:10 -0700 Subject: [PATCH 4/9] modify to access first element in name --- .../devsite/ManagedReference.common.js | 44 +++++++++---------- .../devsite/UniversalReference.common.js | 42 +++++++++--------- 2 files changed, 43 insertions(+), 43 deletions(-) diff --git a/third_party/docfx/templates/devsite/ManagedReference.common.js b/third_party/docfx/templates/devsite/ManagedReference.common.js index 0c26949e..7bcd4c8e 100644 --- a/third_party/docfx/templates/devsite/ManagedReference.common.js +++ b/third_party/docfx/templates/devsite/ManagedReference.common.js @@ -38,51 +38,51 @@ exports.transform = function (model) { break; } } - + // edit title based on type if (!model.title) { if (model.inPackage || model.inSubpackage) { - model.title = "Package " + model.name; + model.title = "Package " + model.name[0].value; } else if (model.inNamespace) { - model.title = "Namespace " + model.name; + model.title = "Namespace " + model.name[0].value; } else if (model.inModule) { - model.title = "Module " + model.name; + model.title = "Module " + model.name[0].value; } else if (model.inClass) { - model.title = "Class " + model.name; + model.title = "Class " + model.name[0].value; } else if (model.inStruct) { - model.title = "Struct " + model.name; + model.title = "Struct " + model.name[0].value; } else if (model.inInterface) { - model.title = "Interface " + model.name; + model.title = "Interface " + model.name[0].value; } else if (model.inEnum) { - model.title = "Enum " + model.name; + model.title = "Enum " + model.name[0].value; } else if (model.inDelegate) { - model.title = "Delegate " + model.name; + model.title = "Delegate " + model.name[0].value; } else if (model.inStaticField) { - model.title = "Static Field " + model.name; + model.title = "Static Field " + model.name[0].value; } else if (model.inStaticMethod) { - model.title = "Static Method " + model.name; + model.title = "Static Method " + model.name[0].value; } else if (model.inConstructor) { - model.title = "Constructor " + model.name; + model.title = "Constructor " + model.name[0].value; } else if (model.inField) { - model.title = "Field " + model.name; + model.title = "Field " + model.name[0].value; } else if (model.inProperty) { - model.title = "Property " + model.name; + model.title = "Property " + model.name[0].value; } else if (model.inMethod) { - model.title = "Method " + model.name; + model.title = "Method " + model.name[0].value; } else if (model.inEvent) { - model.title = "Event " + model.name; + model.title = "Event " + model.name[0].value; } else if (model.inOperator) { - model.title = "Operator " + model.name; + model.title = "Operator " + model.name[0].value; } else if (model.inEii) { - model.title = "Explict Interface Implementation " + model.name; + model.title = "Explict Interface Implementation " + model.name[0].value; } else if (model.inVariable) { - model.title = "Variable " + model.name; + model.title = "Variable " + model.name[0].value; } else if (model.inTypeAlias) { - model.title = "Type Alias " + model.name; + model.title = "Type Alias " + model.name[0].value; } else if (model.inAnnotation) { - model.title = "Annotation Type " = model.name; + model.title = "Annotation Type " = model.name[0].value; } else if (model.inException) { - model.title = "Exception " + model.name; + model.title = "Exception " + model.name[0].value; } else if (model.inOverview) { model.title = model.uid + " overview" } diff --git a/third_party/docfx/templates/devsite/UniversalReference.common.js b/third_party/docfx/templates/devsite/UniversalReference.common.js index 26df7475..5b4926f6 100644 --- a/third_party/docfx/templates/devsite/UniversalReference.common.js +++ b/third_party/docfx/templates/devsite/UniversalReference.common.js @@ -59,47 +59,47 @@ exports.transform = function (model) { // edit title based on type if (!model.title) { if (model.inPackage || model.inSubpackage) { - model.title = "Package " + model.name; + model.title = "Package " + model.name[0].value; } else if (model.inNamespace) { - model.title = "Namespace " + model.name; + model.title = "Namespace " + model.name[0].value; } else if (model.inModule) { - model.title = "Module " + model.name; + model.title = "Module " + model.name[0].value; } else if (model.inClass) { - model.title = "Class " + model.name; + model.title = "Class " + model.name[0].value; } else if (model.inStruct) { - model.title = "Struct " + model.name; + model.title = "Struct " + model.name[0].value; } else if (model.inInterface) { - model.title = "Interface " + model.name; + model.title = "Interface " + model.name[0].value; } else if (model.inEnum) { - model.title = "Enum " + model.name; + model.title = "Enum " + model.name[0].value; } else if (model.inDelegate) { - model.title = "Delegate " + model.name; + model.title = "Delegate " + model.name[0].value; } else if (model.inStaticField) { - model.title = "Static Field " + model.name; + model.title = "Static Field " + model.name[0].value; } else if (model.inStaticMethod) { - model.title = "Static Method " + model.name; + model.title = "Static Method " + model.name[0].value; } else if (model.inConstructor) { - model.title = "Constructor " + model.name; + model.title = "Constructor " + model.name[0].value; } else if (model.inField) { - model.title = "Field " + model.name; + model.title = "Field " + model.name[0].value; } else if (model.inProperty) { - model.title = "Property " + model.name; + model.title = "Property " + model.name[0].value; } else if (model.inMethod) { - model.title = "Method " + model.name; + model.title = "Method " + model.name[0].value; } else if (model.inEvent) { - model.title = "Event " + model.name; + model.title = "Event " + model.name[0].value; } else if (model.inOperator) { - model.title = "Operator " + model.name; + model.title = "Operator " + model.name[0].value; } else if (model.inEii) { - model.title = "Explict Interface Implementation " + model.name; + model.title = "Explict Interface Implementation " + model.name[0].value; } else if (model.inVariable) { - model.title = "Variable " + model.name; + model.title = "Variable " + model.name[0].value; } else if (model.inTypeAlias) { - model.title = "Type Alias " + model.name; + model.title = "Type Alias " + model.name[0].value; } else if (model.inAnnotation) { - model.title = "Annotation Type " = model.name; + model.title = "Annotation Type " = model.name[0].value; } else if (model.inException) { - model.title = "Exception " + model.name; + model.title = "Exception " + model.name[0].value; } else if (model.inOverview) { model.title = model.uid + " overview" } From 10abb0eb506a62147877f26b2a7247f80df44018 Mon Sep 17 00:00:00 2001 From: dansaadati Date: Thu, 7 Apr 2022 19:51:18 -0700 Subject: [PATCH 5/9] edit title in common.js based on type --- .../devsite/ManagedReference.common.js | 52 ++---------------- .../devsite/UniversalReference.common.js | 54 ++----------------- third_party/docfx/templates/devsite/common.js | 41 ++++++++++++++ 3 files changed, 50 insertions(+), 97 deletions(-) diff --git a/third_party/docfx/templates/devsite/ManagedReference.common.js b/third_party/docfx/templates/devsite/ManagedReference.common.js index 7bcd4c8e..4c548bc1 100644 --- a/third_party/docfx/templates/devsite/ManagedReference.common.js +++ b/third_party/docfx/templates/devsite/ManagedReference.common.js @@ -16,7 +16,8 @@ exports.transform = function (model) { } if (model.type) { - model[getTypePropertyName(model.type)] = true; + var typePropertyName = getTypePropertyName(model.type) + model[typePropertyName] = true; switch (model.type.toLowerCase()) { case 'overview': case 'package': @@ -37,54 +38,9 @@ exports.transform = function (model) { default: break; } - } - // edit title based on type - if (!model.title) { - if (model.inPackage || model.inSubpackage) { - model.title = "Package " + model.name[0].value; - } else if (model.inNamespace) { - model.title = "Namespace " + model.name[0].value; - } else if (model.inModule) { - model.title = "Module " + model.name[0].value; - } else if (model.inClass) { - model.title = "Class " + model.name[0].value; - } else if (model.inStruct) { - model.title = "Struct " + model.name[0].value; - } else if (model.inInterface) { - model.title = "Interface " + model.name[0].value; - } else if (model.inEnum) { - model.title = "Enum " + model.name[0].value; - } else if (model.inDelegate) { - model.title = "Delegate " + model.name[0].value; - } else if (model.inStaticField) { - model.title = "Static Field " + model.name[0].value; - } else if (model.inStaticMethod) { - model.title = "Static Method " + model.name[0].value; - } else if (model.inConstructor) { - model.title = "Constructor " + model.name[0].value; - } else if (model.inField) { - model.title = "Field " + model.name[0].value; - } else if (model.inProperty) { - model.title = "Property " + model.name[0].value; - } else if (model.inMethod) { - model.title = "Method " + model.name[0].value; - } else if (model.inEvent) { - model.title = "Event " + model.name[0].value; - } else if (model.inOperator) { - model.title = "Operator " + model.name[0].value; - } else if (model.inEii) { - model.title = "Explict Interface Implementation " + model.name[0].value; - } else if (model.inVariable) { - model.title = "Variable " + model.name[0].value; - } else if (model.inTypeAlias) { - model.title = "Type Alias " + model.name[0].value; - } else if (model.inAnnotation) { - model.title = "Annotation Type " = model.name[0].value; - } else if (model.inException) { - model.title = "Exception " + model.name[0].value; - } else if (model.inOverview) { - model.title = model.uid + " overview" + if (!model.title) { + model.title = common.getTitleForPropertyType(model.type, model.name[0].value, model.uid) } } diff --git a/third_party/docfx/templates/devsite/UniversalReference.common.js b/third_party/docfx/templates/devsite/UniversalReference.common.js index 5b4926f6..9a8d0663 100644 --- a/third_party/docfx/templates/devsite/UniversalReference.common.js +++ b/third_party/docfx/templates/devsite/UniversalReference.common.js @@ -15,7 +15,8 @@ exports.transform = function (model) { }; if (model.type) { - model[getTypePropertyName(model.type)] = true; + var typePropertyName = getTypePropertyName(model.type) + model[typePropertyName] = true; switch (model.type.toLowerCase()) { // packages and namespaces are both containers for other elements case 'package': @@ -54,54 +55,9 @@ exports.transform = function (model) { default: break; } - } - - // edit title based on type - if (!model.title) { - if (model.inPackage || model.inSubpackage) { - model.title = "Package " + model.name[0].value; - } else if (model.inNamespace) { - model.title = "Namespace " + model.name[0].value; - } else if (model.inModule) { - model.title = "Module " + model.name[0].value; - } else if (model.inClass) { - model.title = "Class " + model.name[0].value; - } else if (model.inStruct) { - model.title = "Struct " + model.name[0].value; - } else if (model.inInterface) { - model.title = "Interface " + model.name[0].value; - } else if (model.inEnum) { - model.title = "Enum " + model.name[0].value; - } else if (model.inDelegate) { - model.title = "Delegate " + model.name[0].value; - } else if (model.inStaticField) { - model.title = "Static Field " + model.name[0].value; - } else if (model.inStaticMethod) { - model.title = "Static Method " + model.name[0].value; - } else if (model.inConstructor) { - model.title = "Constructor " + model.name[0].value; - } else if (model.inField) { - model.title = "Field " + model.name[0].value; - } else if (model.inProperty) { - model.title = "Property " + model.name[0].value; - } else if (model.inMethod) { - model.title = "Method " + model.name[0].value; - } else if (model.inEvent) { - model.title = "Event " + model.name[0].value; - } else if (model.inOperator) { - model.title = "Operator " + model.name[0].value; - } else if (model.inEii) { - model.title = "Explict Interface Implementation " + model.name[0].value; - } else if (model.inVariable) { - model.title = "Variable " + model.name[0].value; - } else if (model.inTypeAlias) { - model.title = "Type Alias " + model.name[0].value; - } else if (model.inAnnotation) { - model.title = "Annotation Type " = model.name[0].value; - } else if (model.inException) { - model.title = "Exception " + model.name[0].value; - } else if (model.inOverview) { - model.title = model.uid + " overview" + + if (!model.title) { + model.title = common.getTitleForPropertyType(model.type, model.name[0].value, model.uid) } } diff --git a/third_party/docfx/templates/devsite/common.js b/third_party/docfx/templates/devsite/common.js index 220f299c..d1b373bc 100644 --- a/third_party/docfx/templates/devsite/common.js +++ b/third_party/docfx/templates/devsite/common.js @@ -12,6 +12,8 @@ exports.processSeeAlso = processSeeAlso; exports.isAbsolutePath = isAbsolutePath; exports.isRelativePath = isRelativePath; +exports.getTitleForPropertyType = getTitleForPropertyType; + function getFileNameWithoutExtension(path) { if (!path || path[path.length - 1] === '/' || path[path.length - 1] === '\\') return ''; var fileName = path.split('\\').pop().split('/').pop(); @@ -62,6 +64,45 @@ function isRelativePath(path) { return !exports.isAbsolutePath(path); } +var titlePrefixForPropertyType = { + "package": "Package", + "subpackage": "Package", + "namespace:": "Namespace", + "module": "Module", + "class": "Class", + "struct": "Struct", + "interface": "Interface", + "enum": "Enum", + "delegate": "Delegate", + "static field": "Static Field", + "static method": "Static Method", + "constructor": "Constructor", + "field": "Field", + "property": "Property", + "method": "Method", + "event": "Event", + "operator": "Operator", + "eii": "Explict Interface Implementation", + "variable": "Variable", + "typealias": "Type Alias", + "annotationtype": "Annotation Type", + "exception": "Exception" +} + +function getTitleForPropertyType(propertyType, name, uid) { + switch (propertyType.toLowerCase()) { + case "overview": + return uid + " " + "overview"; + default: + var titlePrefix = titlePrefixForPropertyType[propertyType]; + if (titlePrefix) { + return titlePrefix + " " + name; + } else { + return name; + } + } +} + var gitUrlPatternItems = { 'github': { // HTTPS form: https://github.com/{org}/{repo}.git From 2cef6d2929f6e505b68c43fd5ea9105f9c1be1f2 Mon Sep 17 00:00:00 2001 From: dansaadati Date: Fri, 8 Apr 2022 08:35:51 -0700 Subject: [PATCH 6/9] chore: write title in preprocessor instead of partial template --- .../devsite/ManagedReference.common.js | 7 +- .../devsite/UniversalReference.common.js | 2 +- third_party/docfx/templates/devsite/common.js | 16 ++--- .../devsite/partials/title.tmpl.partial | 70 ------------------- 4 files changed, 13 insertions(+), 82 deletions(-) delete mode 100644 third_party/docfx/templates/devsite/partials/title.tmpl.partial diff --git a/third_party/docfx/templates/devsite/ManagedReference.common.js b/third_party/docfx/templates/devsite/ManagedReference.common.js index 4c548bc1..36187d21 100644 --- a/third_party/docfx/templates/devsite/ManagedReference.common.js +++ b/third_party/docfx/templates/devsite/ManagedReference.common.js @@ -40,7 +40,12 @@ exports.transform = function (model) { } if (!model.title) { - model.title = common.getTitleForPropertyType(model.type, model.name[0].value, model.uid) + if (model.javaType) { + model.title = common.getTitleForTypeProperty(model.javaType, model.name, model.uid) + } else { + model.title = common.getTitleForTypeProperty(model.type, model.name) + } + } } diff --git a/third_party/docfx/templates/devsite/UniversalReference.common.js b/third_party/docfx/templates/devsite/UniversalReference.common.js index 9a8d0663..4ea83805 100644 --- a/third_party/docfx/templates/devsite/UniversalReference.common.js +++ b/third_party/docfx/templates/devsite/UniversalReference.common.js @@ -57,7 +57,7 @@ exports.transform = function (model) { } if (!model.title) { - model.title = common.getTitleForPropertyType(model.type, model.name[0].value, model.uid) + model.title = common.getTitleForTypeProperty(model.type, model.name) } } diff --git a/third_party/docfx/templates/devsite/common.js b/third_party/docfx/templates/devsite/common.js index d1b373bc..df34528d 100644 --- a/third_party/docfx/templates/devsite/common.js +++ b/third_party/docfx/templates/devsite/common.js @@ -12,7 +12,7 @@ exports.processSeeAlso = processSeeAlso; exports.isAbsolutePath = isAbsolutePath; exports.isRelativePath = isRelativePath; -exports.getTitleForPropertyType = getTitleForPropertyType; +exports.getTitleForTypeProperty = getTitleForTypeProperty; function getFileNameWithoutExtension(path) { if (!path || path[path.length - 1] === '/' || path[path.length - 1] === '\\') return ''; @@ -64,7 +64,7 @@ function isRelativePath(path) { return !exports.isAbsolutePath(path); } -var titlePrefixForPropertyType = { +var titlePrefixForTypeProperty = { "package": "Package", "subpackage": "Package", "namespace:": "Namespace", @@ -89,17 +89,13 @@ var titlePrefixForPropertyType = { "exception": "Exception" } -function getTitleForPropertyType(propertyType, name, uid) { - switch (propertyType.toLowerCase()) { +function getTitleForTypeProperty(type, name, uid) { + switch (type.toLowerCase()) { case "overview": return uid + " " + "overview"; default: - var titlePrefix = titlePrefixForPropertyType[propertyType]; - if (titlePrefix) { - return titlePrefix + " " + name; - } else { - return name; - } + var titlePrefix = titlePrefixForTypeProperty[type]; + return titlePrefix ? titlePrefix + " " + name[0].value : name[0].value; } } diff --git a/third_party/docfx/templates/devsite/partials/title.tmpl.partial b/third_party/docfx/templates/devsite/partials/title.tmpl.partial deleted file mode 100644 index 145ec908..00000000 --- a/third_party/docfx/templates/devsite/partials/title.tmpl.partial +++ /dev/null @@ -1,70 +0,0 @@ -{{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} -{{#inPackage}} -Package {{name.0.value}} -{{/inPackage}} -{{#inSubpackage}} -Package {{name.0.value}} -{{/inSubpackage}} -{{#inNamespace}} -Namespace {{name.0.value}} -{{/inNamespace}} -{{#inModule}} -Module {{name.0.value}} -{{/inModule}} -{{#inClass}} -Class {{name.0.value}} -{{/inClass}} -{{#inStruct}} -Struct {{name.0.value}} -{{/inStruct}} -{{#inInterface}} -Interface {{name.0.value}} -{{/inInterface}} -{{#inEnum}} -Enum {{name.0.value}} -{{/inEnum}} -{{#inDelegate}} -Delegate {{name.0.value}} -{{/inDelegate}} -{{#inStaticField}} -Static Field {{name.0.value}} -{{/inStaticField}} -{{#inStaticMethod}} -Static Method {{name.0.value}} -{{/inStaticMethod}} -{{#inConstructor}} -Constructor {{name.0.value}} -{{/inConstructor}} -{{#inField}} -Field {{name.0.value}} -{{/inField}} -{{#inProperty}} -Property {{name.0.value}} -{{/inProperty}} -{{#inMethod}} -Method {{name.0.value}} -{{/inMethod}} -{{#inEvent}} -Event {{name.0.value}} -{{/inEvent}} -{{#inOperator}} -Operator {{name.0.value}} -{{/inOperator}} -{{#inEii}} -Explict Interface Implementation {{name.0.value}} -{{/inEii}} -{{#inVariable}} -Variable {{name.0.value}} -{{/inVariable}} -{{#inTypeAlias}} -Type Alias {{name.0.value}} -{{/inTypeAlias}} -{{#inAnnotation}} -Annotation Type {{name.0.value}} -{{/inAnnotation}} -{{#inException}} -Exception {{name.0.value}} -{{/inException}} -{{#inOverview}} -{{uid}} overview -{{/inOverview}} From 6d5cc8a1c75660839e32d2ca845d8e302cfd2e66 Mon Sep 17 00:00:00 2001 From: dansaadati Date: Fri, 8 Apr 2022 09:16:22 -0700 Subject: [PATCH 7/9] fix minor bugs, add new line on to match golden --- .../templates/devsite/ManagedReference.html.primary.tmpl | 3 ++- .../templates/devsite/UniversalReference.html.primary.tmpl | 3 ++- third_party/docfx/templates/devsite/common.js | 5 +++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl b/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl index 760fee02..a162df2d 100644 --- a/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl +++ b/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl @@ -1,7 +1,8 @@ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} {{!master(layout/_master.tmpl)}} -

{{#title}}{{title}}{{/title}}

+

{{#title}}{{title}}{{/title}} +

{{#isNamespace}} {{>partials/namespace}} {{/isNamespace}} diff --git a/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl b/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl index c55d47be..c227113f 100644 --- a/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl +++ b/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl @@ -1,7 +1,8 @@ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} {{!master(layout/_master.tmpl)}} -

{{#title}}{{title}}{{/title}}

+

{{#title}}{{title}}{{/title}} +

{{#isNamespace}} {{>partials/uref/namespace}} {{/isNamespace}} diff --git a/third_party/docfx/templates/devsite/common.js b/third_party/docfx/templates/devsite/common.js index df34528d..9c90efb9 100644 --- a/third_party/docfx/templates/devsite/common.js +++ b/third_party/docfx/templates/devsite/common.js @@ -67,7 +67,7 @@ function isRelativePath(path) { var titlePrefixForTypeProperty = { "package": "Package", "subpackage": "Package", - "namespace:": "Namespace", + "namespace": "Namespace", "module": "Module", "class": "Class", "struct": "Struct", @@ -90,7 +90,8 @@ var titlePrefixForTypeProperty = { } function getTitleForTypeProperty(type, name, uid) { - switch (type.toLowerCase()) { + type = type.toLowerCase(); + switch (type) { case "overview": return uid + " " + "overview"; default: From 2f472bcc35a795fb809ba6cd01b80f1fa1bfe76a Mon Sep 17 00:00:00 2001 From: Dan Saadati Date: Mon, 11 Apr 2022 17:43:43 +0000 Subject: [PATCH 8/9] fix: use model type instead of javaType, loosen title restriction in template --- .../templates/devsite/ManagedReference.common.js | 11 +++-------- .../devsite/ManagedReference.html.primary.tmpl | 2 +- .../templates/devsite/UniversalReference.common.js | 9 ++++++--- .../devsite/UniversalReference.html.primary.tmpl | 2 +- 4 files changed, 11 insertions(+), 13 deletions(-) diff --git a/third_party/docfx/templates/devsite/ManagedReference.common.js b/third_party/docfx/templates/devsite/ManagedReference.common.js index 36187d21..a81533c1 100644 --- a/third_party/docfx/templates/devsite/ManagedReference.common.js +++ b/third_party/docfx/templates/devsite/ManagedReference.common.js @@ -16,14 +16,13 @@ exports.transform = function (model) { } if (model.type) { - var typePropertyName = getTypePropertyName(model.type) - model[typePropertyName] = true; switch (model.type.toLowerCase()) { case 'overview': case 'package': case 'namespace': model.isNamespace = true; if (model.children) groupChildren(model, namespaceCategory); + model[getTypePropertyName(model.type)] = true; break; case 'exception': case 'class': @@ -34,18 +33,14 @@ exports.transform = function (model) { case 'enum': model.isClass = true; if (model.children) groupChildren(model, classCategory); + model[getTypePropertyName(model.type)] = true; break; default: break; } if (!model.title) { - if (model.javaType) { - model.title = common.getTitleForTypeProperty(model.javaType, model.name, model.uid) - } else { - model.title = common.getTitleForTypeProperty(model.type, model.name) - } - + model.title = common.getTitleForTypeProperty(model.type, model.name, model.uid); } } diff --git a/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl b/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl index a162df2d..28f72409 100644 --- a/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl +++ b/third_party/docfx/templates/devsite/ManagedReference.html.primary.tmpl @@ -1,7 +1,7 @@ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} {{!master(layout/_master.tmpl)}} -

{{#title}}{{title}}{{/title}} +

{{title}}

{{#isNamespace}} {{>partials/namespace}} diff --git a/third_party/docfx/templates/devsite/UniversalReference.common.js b/third_party/docfx/templates/devsite/UniversalReference.common.js index 4ea83805..cd6aa218 100644 --- a/third_party/docfx/templates/devsite/UniversalReference.common.js +++ b/third_party/docfx/templates/devsite/UniversalReference.common.js @@ -15,8 +15,6 @@ exports.transform = function (model) { }; if (model.type) { - var typePropertyName = getTypePropertyName(model.type) - model[typePropertyName] = true; switch (model.type.toLowerCase()) { // packages and namespaces are both containers for other elements case 'package': @@ -24,6 +22,7 @@ exports.transform = function (model) { case 'subpackage': model.isNamespace = true; if (model.children) groupChildren(model, namespaceCategory); + model[getTypePropertyName(model.type)] = true; break; case 'module': if (model.langs && model.langs[0].toLowerCase() === "ruby" && @@ -31,6 +30,7 @@ exports.transform = function (model) { model.isClass = true; // Special handling for Ruby modules, which treat methods as embedded groupChildren(model, "rubyModule"); + model[getTypePropertyName(model.type)] = true; break; } case 'class': @@ -40,6 +40,7 @@ exports.transform = function (model) { // Handle classes and modules differently for Python model.isPythonHeader = true; groupChildren(model, namespaceCategory); + model[getTypePropertyName(model.type)] = true; break; } case 'interface': @@ -47,17 +48,19 @@ exports.transform = function (model) { case 'delegate': model.isClass = true; if (model.children) groupChildren(model, classCategory); + model[getTypePropertyName(model.type)] = true; break; case 'enum': model.isEnum = true; if (model.children) groupChildren(model, classCategory); + model[getTypePropertyName(model.type)] = true; break; default: break; } if (!model.title) { - model.title = common.getTitleForTypeProperty(model.type, model.name) + model.title = common.getTitleForTypeProperty(model.type, model.name); } } diff --git a/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl b/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl index c227113f..78597c47 100644 --- a/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl +++ b/third_party/docfx/templates/devsite/UniversalReference.html.primary.tmpl @@ -1,7 +1,7 @@ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} {{!master(layout/_master.tmpl)}} -

{{#title}}{{title}}{{/title}} +

{{title}}

{{#isNamespace}} {{>partials/uref/namespace}} From 0d98f9d8a02c8712a2264673a095e8f788a1686e Mon Sep 17 00:00:00 2001 From: Dan Saadati Date: Tue, 12 Apr 2022 19:15:39 +0000 Subject: [PATCH 9/9] fix: remove newline in

, document getTitleForTypeProperty function --- ...loud.Asset.V1.AnalyzeIamPolicyLongrunningRequest.html | 3 +-- ...oud.Asset.V1.AnalyzeIamPolicyLongrunningResponse.html | 3 +-- .../Google.Cloud.Asset.V1.AnalyzeIamPolicyRequest.html | 3 +-- ...AnalyzeIamPolicyResponse.Types.IamPolicyAnalysis.html | 3 +-- ...le.Cloud.Asset.V1.AnalyzeIamPolicyResponse.Types.html | 3 +-- .../Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.html | 3 +-- ...loud.Asset.V1.Asset.AccessContextPolicyOneofCase.html | 3 +-- testdata/goldens/dotnet/Google.Cloud.Asset.V1.Asset.html | 3 +-- ...gle.Cloud.Asset.V1.AssetService.AssetServiceBase.html | 3 +-- ...e.Cloud.Asset.V1.AssetService.AssetServiceClient.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.AssetService.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.AssetServiceClient.html | 3 +-- .../Google.Cloud.Asset.V1.AssetServiceClientBuilder.html | 3 +-- .../Google.Cloud.Asset.V1.AssetServiceClientImpl.html | 3 +-- .../Google.Cloud.Asset.V1.AssetServiceSettings.html | 3 +-- ...ogle.Cloud.Asset.V1.BatchGetAssetsHistoryRequest.html | 3 +-- ...gle.Cloud.Asset.V1.BatchGetAssetsHistoryResponse.html | 3 +-- .../Google.Cloud.Asset.V1.BigQueryDestination.html | 3 +-- ...set.V1.ConditionEvaluation.Types.EvaluationValue.html | 3 +-- .../Google.Cloud.Asset.V1.ConditionEvaluation.Types.html | 3 +-- .../Google.Cloud.Asset.V1.ConditionEvaluation.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.ContentType.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.CreateFeedRequest.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.DeleteFeedRequest.html | 3 +-- .../Google.Cloud.Asset.V1.ExportAssetsRequest.html | 3 +-- .../Google.Cloud.Asset.V1.ExportAssetsResponse.html | 3 +-- testdata/goldens/dotnet/Google.Cloud.Asset.V1.Feed.html | 3 +-- .../Google.Cloud.Asset.V1.FeedName.ResourceNameType.html | 3 +-- .../goldens/dotnet/Google.Cloud.Asset.V1.FeedName.html | 3 +-- ...d.Asset.V1.FeedOutputConfig.DestinationOneofCase.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.FeedOutputConfig.html | 3 +-- ...Cloud.Asset.V1.GcsDestination.ObjectUriOneofCase.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.GcsDestination.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.GcsOutputResult.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.GetFeedRequest.html | 3 +-- ...mPolicyAnalysisOutputConfig.DestinationOneofCase.html | 3 +-- ...fig.Types.BigQueryDestination.Types.PartitionKey.html | 3 +-- ...ysisOutputConfig.Types.BigQueryDestination.Types.html | 3 +-- ...cyAnalysisOutputConfig.Types.BigQueryDestination.html | 3 +-- ...mPolicyAnalysisOutputConfig.Types.GcsDestination.html | 3 +-- ...oud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.html | 3 +-- ...gle.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.html | 3 +-- ...t.V1.IamPolicyAnalysisQuery.Types.AccessSelector.html | 3 +-- ...uery.Types.ConditionContext.TimeContextOneofCase.html | 3 +-- ...V1.IamPolicyAnalysisQuery.Types.ConditionContext.html | 3 +-- ...V1.IamPolicyAnalysisQuery.Types.IdentitySelector.html | 3 +-- ...ud.Asset.V1.IamPolicyAnalysisQuery.Types.Options.html | 3 +-- ...V1.IamPolicyAnalysisQuery.Types.ResourceSelector.html | 3 +-- ...ogle.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.html | 3 +-- .../Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.html | 3 +-- ...AnalysisResult.Types.Access.OneofAccessOneofCase.html | 3 +-- ...ud.Asset.V1.IamPolicyAnalysisResult.Types.Access.html | 3 +-- ....IamPolicyAnalysisResult.Types.AccessControlList.html | 3 +-- ...loud.Asset.V1.IamPolicyAnalysisResult.Types.Edge.html | 3 +-- ....Asset.V1.IamPolicyAnalysisResult.Types.Identity.html | 3 +-- ...et.V1.IamPolicyAnalysisResult.Types.IdentityList.html | 3 +-- ....Asset.V1.IamPolicyAnalysisResult.Types.Resource.html | 3 +-- ...gle.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.html | 3 +-- .../Google.Cloud.Asset.V1.IamPolicyAnalysisResult.html | 3 +-- .../Google.Cloud.Asset.V1.IamPolicyAnalysisState.html | 3 +-- ...SearchResult.Types.Explanation.Types.Permissions.html | 3 +-- ...V1.IamPolicySearchResult.Types.Explanation.Types.html | 3 +-- ...Asset.V1.IamPolicySearchResult.Types.Explanation.html | 3 +-- ...oogle.Cloud.Asset.V1.IamPolicySearchResult.Types.html | 3 +-- .../Google.Cloud.Asset.V1.IamPolicySearchResult.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.ListAssetsRequest.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.ListAssetsResponse.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.ListFeedsRequest.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.ListFeedsResponse.html | 3 +-- ...Cloud.Asset.V1.OutputConfig.DestinationOneofCase.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.OutputConfig.html | 3 +-- ...ogle.Cloud.Asset.V1.OutputResult.ResultOneofCase.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.OutputResult.html | 3 +-- ....Cloud.Asset.V1.PartitionSpec.Types.PartitionKey.html | 3 +-- .../Google.Cloud.Asset.V1.PartitionSpec.Types.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.PartitionSpec.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.PubsubDestination.html | 3 +-- .../goldens/dotnet/Google.Cloud.Asset.V1.Resource.html | 3 +-- .../Google.Cloud.Asset.V1.ResourceSearchResult.html | 3 +-- ...oogle.Cloud.Asset.V1.SearchAllIamPoliciesRequest.html | 3 +-- ...ogle.Cloud.Asset.V1.SearchAllIamPoliciesResponse.html | 3 +-- .../Google.Cloud.Asset.V1.SearchAllResourcesRequest.html | 3 +-- ...Google.Cloud.Asset.V1.SearchAllResourcesResponse.html | 3 +-- ...oud.Asset.V1.TemporalAsset.Types.PriorAssetState.html | 3 +-- .../Google.Cloud.Asset.V1.TemporalAsset.Types.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.TemporalAsset.html | 3 +-- .../goldens/dotnet/Google.Cloud.Asset.V1.TimeWindow.html | 3 +-- .../dotnet/Google.Cloud.Asset.V1.UpdateFeedRequest.html | 3 +-- testdata/goldens/dotnet/Google.Cloud.Asset.V1.html | 3 +-- testdata/goldens/go/index.html | 3 +-- ...d.speech.v1.LongRunningRecognizeMetadata.Builder.html | 3 +-- ...gle.cloud.speech.v1.LongRunningRecognizeMetadata.html | 3 +-- ....speech.v1.LongRunningRecognizeMetadataOrBuilder.html | 3 +-- ...ud.speech.v1.LongRunningRecognizeRequest.Builder.html | 3 +-- ...ogle.cloud.speech.v1.LongRunningRecognizeRequest.html | 3 +-- ...d.speech.v1.LongRunningRecognizeRequestOrBuilder.html | 3 +-- ...d.speech.v1.LongRunningRecognizeResponse.Builder.html | 3 +-- ...gle.cloud.speech.v1.LongRunningRecognizeResponse.html | 3 +-- ....speech.v1.LongRunningRecognizeResponseOrBuilder.html | 3 +-- ...cloud.speech.v1.RecognitionAudio.AudioSourceCase.html | 3 +-- ....google.cloud.speech.v1.RecognitionAudio.Builder.html | 3 +-- .../com.google.cloud.speech.v1.RecognitionAudio.html | 3 +-- ...google.cloud.speech.v1.RecognitionAudioOrBuilder.html | 3 +-- ....cloud.speech.v1.RecognitionConfig.AudioEncoding.html | 3 +-- ...google.cloud.speech.v1.RecognitionConfig.Builder.html | 3 +-- .../com.google.cloud.speech.v1.RecognitionConfig.html | 3 +-- ...oogle.cloud.speech.v1.RecognitionConfigOrBuilder.html | 3 +-- ...ogle.cloud.speech.v1.RecognitionMetadata.Builder.html | 3 +-- ...ud.speech.v1.RecognitionMetadata.InteractionType.html | 3 +-- ...speech.v1.RecognitionMetadata.MicrophoneDistance.html | 3 +-- ....speech.v1.RecognitionMetadata.OriginalMediaType.html | 3 +-- ...peech.v1.RecognitionMetadata.RecordingDeviceType.html | 3 +-- .../com.google.cloud.speech.v1.RecognitionMetadata.html | 3 +-- ...gle.cloud.speech.v1.RecognitionMetadataOrBuilder.html | 3 +-- ....google.cloud.speech.v1.RecognizeRequest.Builder.html | 3 +-- .../com.google.cloud.speech.v1.RecognizeRequest.html | 3 +-- ...google.cloud.speech.v1.RecognizeRequestOrBuilder.html | 3 +-- ...google.cloud.speech.v1.RecognizeResponse.Builder.html | 3 +-- .../com.google.cloud.speech.v1.RecognizeResponse.html | 3 +-- ...oogle.cloud.speech.v1.RecognizeResponseOrBuilder.html | 3 +-- ...cloud.speech.v1.SpeakerDiarizationConfig.Builder.html | 3 +-- ....google.cloud.speech.v1.SpeakerDiarizationConfig.html | 3 +-- ...loud.speech.v1.SpeakerDiarizationConfigOrBuilder.html | 3 +-- .../java/com.google.cloud.speech.v1.SpeechClient.html | 3 +-- ...com.google.cloud.speech.v1.SpeechContext.Builder.html | 3 +-- .../java/com.google.cloud.speech.v1.SpeechContext.html | 3 +-- ...om.google.cloud.speech.v1.SpeechContextOrBuilder.html | 3 +-- ...le.cloud.speech.v1.SpeechGrpc.SpeechBlockingStub.html | 3 +-- ...ogle.cloud.speech.v1.SpeechGrpc.SpeechFutureStub.html | 3 +-- ...google.cloud.speech.v1.SpeechGrpc.SpeechImplBase.html | 3 +-- ...com.google.cloud.speech.v1.SpeechGrpc.SpeechStub.html | 3 +-- .../java/com.google.cloud.speech.v1.SpeechGrpc.html | 3 +-- .../java/com.google.cloud.speech.v1.SpeechProto.html | 3 +-- ...d.speech.v1.SpeechRecognitionAlternative.Builder.html | 3 +-- ...gle.cloud.speech.v1.SpeechRecognitionAlternative.html | 3 +-- ....speech.v1.SpeechRecognitionAlternativeOrBuilder.html | 3 +-- ....cloud.speech.v1.SpeechRecognitionResult.Builder.html | 3 +-- ...m.google.cloud.speech.v1.SpeechRecognitionResult.html | 3 +-- ...cloud.speech.v1.SpeechRecognitionResultOrBuilder.html | 3 +-- ...om.google.cloud.speech.v1.SpeechSettings.Builder.html | 3 +-- .../java/com.google.cloud.speech.v1.SpeechSettings.html | 3 +-- ...oud.speech.v1.StreamingRecognitionConfig.Builder.html | 3 +-- ...oogle.cloud.speech.v1.StreamingRecognitionConfig.html | 3 +-- ...ud.speech.v1.StreamingRecognitionConfigOrBuilder.html | 3 +-- ...oud.speech.v1.StreamingRecognitionResult.Builder.html | 3 +-- ...oogle.cloud.speech.v1.StreamingRecognitionResult.html | 3 +-- ...ud.speech.v1.StreamingRecognitionResultOrBuilder.html | 3 +-- ...loud.speech.v1.StreamingRecognizeRequest.Builder.html | 3 +-- ...1.StreamingRecognizeRequest.StreamingRequestCase.html | 3 +-- ...google.cloud.speech.v1.StreamingRecognizeRequest.html | 3 +-- ...oud.speech.v1.StreamingRecognizeRequestOrBuilder.html | 3 +-- ...oud.speech.v1.StreamingRecognizeResponse.Builder.html | 3 +-- ...ch.v1.StreamingRecognizeResponse.SpeechEventType.html | 3 +-- ...oogle.cloud.speech.v1.StreamingRecognizeResponse.html | 3 +-- ...ud.speech.v1.StreamingRecognizeResponseOrBuilder.html | 3 +-- .../com.google.cloud.speech.v1.WordInfo.Builder.html | 3 +-- .../java/com.google.cloud.speech.v1.WordInfo.html | 3 +-- .../com.google.cloud.speech.v1.WordInfoOrBuilder.html | 3 +-- testdata/goldens/java/com.google.cloud.speech.v1.html | 3 +-- ...e.cloud.speech.v1.stub.GrpcSpeechCallableFactory.html | 3 +-- .../com.google.cloud.speech.v1.stub.GrpcSpeechStub.html | 3 +-- .../java/com.google.cloud.speech.v1.stub.SpeechStub.html | 3 +-- ....cloud.speech.v1.stub.SpeechStubSettings.Builder.html | 3 +-- ...m.google.cloud.speech.v1.stub.SpeechStubSettings.html | 3 +-- .../goldens/java/com.google.cloud.speech.v1.stub.html | 3 +-- ...ud.speech.v1beta1.AsyncRecognizeMetadata.Builder.html | 3 +-- ...ogle.cloud.speech.v1beta1.AsyncRecognizeMetadata.html | 3 +-- ...d.speech.v1beta1.AsyncRecognizeMetadataOrBuilder.html | 3 +-- ...oud.speech.v1beta1.AsyncRecognizeRequest.Builder.html | 3 +-- ...oogle.cloud.speech.v1beta1.AsyncRecognizeRequest.html | 3 +-- ...ud.speech.v1beta1.AsyncRecognizeRequestOrBuilder.html | 3 +-- ...ud.speech.v1beta1.AsyncRecognizeResponse.Builder.html | 3 +-- ...ogle.cloud.speech.v1beta1.AsyncRecognizeResponse.html | 3 +-- ...d.speech.v1beta1.AsyncRecognizeResponseOrBuilder.html | 3 +-- ....speech.v1beta1.RecognitionAudio.AudioSourceCase.html | 3 +-- ...le.cloud.speech.v1beta1.RecognitionAudio.Builder.html | 3 +-- ...com.google.cloud.speech.v1beta1.RecognitionAudio.html | 3 +-- ...e.cloud.speech.v1beta1.RecognitionAudioOrBuilder.html | 3 +-- ...d.speech.v1beta1.RecognitionConfig.AudioEncoding.html | 3 +-- ...e.cloud.speech.v1beta1.RecognitionConfig.Builder.html | 3 +-- ...om.google.cloud.speech.v1beta1.RecognitionConfig.html | 3 +-- ....cloud.speech.v1beta1.RecognitionConfigOrBuilder.html | 3 +-- ...oogle.cloud.speech.v1beta1.SpeechContext.Builder.html | 3 +-- .../com.google.cloud.speech.v1beta1.SpeechContext.html | 3 +-- ...ogle.cloud.speech.v1beta1.SpeechContextOrBuilder.html | 3 +-- ...oud.speech.v1beta1.SpeechGrpc.SpeechBlockingStub.html | 3 +-- ...cloud.speech.v1beta1.SpeechGrpc.SpeechFutureStub.html | 3 +-- ...e.cloud.speech.v1beta1.SpeechGrpc.SpeechImplBase.html | 3 +-- ...oogle.cloud.speech.v1beta1.SpeechGrpc.SpeechStub.html | 3 +-- .../java/com.google.cloud.speech.v1beta1.SpeechGrpc.html | 3 +-- .../com.google.cloud.speech.v1beta1.SpeechProto.html | 3 +-- ...ech.v1beta1.SpeechRecognitionAlternative.Builder.html | 3 +-- ...loud.speech.v1beta1.SpeechRecognitionAlternative.html | 3 +-- ...ch.v1beta1.SpeechRecognitionAlternativeOrBuilder.html | 3 +-- ...d.speech.v1beta1.SpeechRecognitionResult.Builder.html | 3 +-- ...gle.cloud.speech.v1beta1.SpeechRecognitionResult.html | 3 +-- ....speech.v1beta1.SpeechRecognitionResultOrBuilder.html | 3 +-- ...peech.v1beta1.StreamingRecognitionConfig.Builder.html | 3 +-- ....cloud.speech.v1beta1.StreamingRecognitionConfig.html | 3 +-- ...eech.v1beta1.StreamingRecognitionConfigOrBuilder.html | 3 +-- ...peech.v1beta1.StreamingRecognitionResult.Builder.html | 3 +-- ....cloud.speech.v1beta1.StreamingRecognitionResult.html | 3 +-- ...eech.v1beta1.StreamingRecognitionResultOrBuilder.html | 3 +-- ...speech.v1beta1.StreamingRecognizeRequest.Builder.html | 3 +-- ...1.StreamingRecognizeRequest.StreamingRequestCase.html | 3 +-- ...e.cloud.speech.v1beta1.StreamingRecognizeRequest.html | 3 +-- ...peech.v1beta1.StreamingRecognizeRequestOrBuilder.html | 3 +-- ...peech.v1beta1.StreamingRecognizeResponse.Builder.html | 3 +-- ...1beta1.StreamingRecognizeResponse.EndpointerType.html | 3 +-- ....cloud.speech.v1beta1.StreamingRecognizeResponse.html | 3 +-- ...eech.v1beta1.StreamingRecognizeResponseOrBuilder.html | 3 +-- ...loud.speech.v1beta1.SyncRecognizeRequest.Builder.html | 3 +-- ...google.cloud.speech.v1beta1.SyncRecognizeRequest.html | 3 +-- ...oud.speech.v1beta1.SyncRecognizeRequestOrBuilder.html | 3 +-- ...oud.speech.v1beta1.SyncRecognizeResponse.Builder.html | 3 +-- ...oogle.cloud.speech.v1beta1.SyncRecognizeResponse.html | 3 +-- ...ud.speech.v1beta1.SyncRecognizeResponseOrBuilder.html | 3 +-- .../goldens/java/com.google.cloud.speech.v1beta1.html | 3 +-- ...ationClient.ListCustomClassesFixedSizeCollection.html | 3 +-- ...v1p1beta1.AdaptationClient.ListCustomClassesPage.html | 3 +-- ....AdaptationClient.ListCustomClassesPagedResponse.html | 3 +-- ...daptationClient.ListPhraseSetFixedSizeCollection.html | 3 +-- ...ech.v1p1beta1.AdaptationClient.ListPhraseSetPage.html | 3 +-- ...eta1.AdaptationClient.ListPhraseSetPagedResponse.html | 3 +-- ...m.google.cloud.speech.v1p1beta1.AdaptationClient.html | 3 +-- ....v1p1beta1.AdaptationGrpc.AdaptationBlockingStub.html | 3 +-- ...ch.v1p1beta1.AdaptationGrpc.AdaptationFutureStub.html | 3 +-- ...eech.v1p1beta1.AdaptationGrpc.AdaptationImplBase.html | 3 +-- ...d.speech.v1p1beta1.AdaptationGrpc.AdaptationStub.html | 3 +-- ...com.google.cloud.speech.v1p1beta1.AdaptationGrpc.html | 3 +-- ...loud.speech.v1p1beta1.AdaptationSettings.Builder.html | 3 +-- ...google.cloud.speech.v1p1beta1.AdaptationSettings.html | 3 +-- ...peech.v1p1beta1.CreateCustomClassRequest.Builder.html | 3 +-- ....cloud.speech.v1p1beta1.CreateCustomClassRequest.html | 3 +-- ...eech.v1p1beta1.CreateCustomClassRequestOrBuilder.html | 3 +-- ....speech.v1p1beta1.CreatePhraseSetRequest.Builder.html | 3 +-- ...le.cloud.speech.v1p1beta1.CreatePhraseSetRequest.html | 3 +-- ...speech.v1p1beta1.CreatePhraseSetRequestOrBuilder.html | 3 +-- ...oogle.cloud.speech.v1p1beta1.CustomClass.Builder.html | 3 +-- ...d.speech.v1p1beta1.CustomClass.ClassItem.Builder.html | 3 +-- ...gle.cloud.speech.v1p1beta1.CustomClass.ClassItem.html | 3 +-- ....speech.v1p1beta1.CustomClass.ClassItemOrBuilder.html | 3 +-- .../com.google.cloud.speech.v1p1beta1.CustomClass.html | 3 +-- ...e.cloud.speech.v1p1beta1.CustomClassName.Builder.html | 3 +-- ...om.google.cloud.speech.v1p1beta1.CustomClassName.html | 3 +-- ...ogle.cloud.speech.v1p1beta1.CustomClassOrBuilder.html | 3 +-- ...peech.v1p1beta1.DeleteCustomClassRequest.Builder.html | 3 +-- ....cloud.speech.v1p1beta1.DeleteCustomClassRequest.html | 3 +-- ...eech.v1p1beta1.DeleteCustomClassRequestOrBuilder.html | 3 +-- ....speech.v1p1beta1.DeletePhraseSetRequest.Builder.html | 3 +-- ...le.cloud.speech.v1p1beta1.DeletePhraseSetRequest.html | 3 +-- ...speech.v1p1beta1.DeletePhraseSetRequestOrBuilder.html | 3 +-- ...d.speech.v1p1beta1.GetCustomClassRequest.Builder.html | 3 +-- ...gle.cloud.speech.v1p1beta1.GetCustomClassRequest.html | 3 +-- ....speech.v1p1beta1.GetCustomClassRequestOrBuilder.html | 3 +-- ...oud.speech.v1p1beta1.GetPhraseSetRequest.Builder.html | 3 +-- ...oogle.cloud.speech.v1p1beta1.GetPhraseSetRequest.html | 3 +-- ...ud.speech.v1p1beta1.GetPhraseSetRequestOrBuilder.html | 3 +-- ...peech.v1p1beta1.ListCustomClassesRequest.Builder.html | 3 +-- ....cloud.speech.v1p1beta1.ListCustomClassesRequest.html | 3 +-- ...eech.v1p1beta1.ListCustomClassesRequestOrBuilder.html | 3 +-- ...eech.v1p1beta1.ListCustomClassesResponse.Builder.html | 3 +-- ...cloud.speech.v1p1beta1.ListCustomClassesResponse.html | 3 +-- ...ech.v1p1beta1.ListCustomClassesResponseOrBuilder.html | 3 +-- ...ud.speech.v1p1beta1.ListPhraseSetRequest.Builder.html | 3 +-- ...ogle.cloud.speech.v1p1beta1.ListPhraseSetRequest.html | 3 +-- ...d.speech.v1p1beta1.ListPhraseSetRequestOrBuilder.html | 3 +-- ...d.speech.v1p1beta1.ListPhraseSetResponse.Builder.html | 3 +-- ...gle.cloud.speech.v1p1beta1.ListPhraseSetResponse.html | 3 +-- ....speech.v1p1beta1.ListPhraseSetResponseOrBuilder.html | 3 +-- ...ogle.cloud.speech.v1p1beta1.LocationName.Builder.html | 3 +-- .../com.google.cloud.speech.v1p1beta1.LocationName.html | 3 +-- ...h.v1p1beta1.LongRunningRecognizeMetadata.Builder.html | 3 +-- ...ud.speech.v1p1beta1.LongRunningRecognizeMetadata.html | 3 +-- ....v1p1beta1.LongRunningRecognizeMetadataOrBuilder.html | 3 +-- ...ch.v1p1beta1.LongRunningRecognizeRequest.Builder.html | 3 +-- ...oud.speech.v1p1beta1.LongRunningRecognizeRequest.html | 3 +-- ...h.v1p1beta1.LongRunningRecognizeRequestOrBuilder.html | 3 +-- ...h.v1p1beta1.LongRunningRecognizeResponse.Builder.html | 3 +-- ...ud.speech.v1p1beta1.LongRunningRecognizeResponse.html | 3 +-- ....v1p1beta1.LongRunningRecognizeResponseOrBuilder.html | 3 +-- ....google.cloud.speech.v1p1beta1.PhraseSet.Builder.html | 3 +-- ....cloud.speech.v1p1beta1.PhraseSet.Phrase.Builder.html | 3 +-- ...m.google.cloud.speech.v1p1beta1.PhraseSet.Phrase.html | 3 +-- ...cloud.speech.v1p1beta1.PhraseSet.PhraseOrBuilder.html | 3 +-- .../com.google.cloud.speech.v1p1beta1.PhraseSet.html | 3 +-- ...gle.cloud.speech.v1p1beta1.PhraseSetName.Builder.html | 3 +-- .../com.google.cloud.speech.v1p1beta1.PhraseSetName.html | 3 +-- ...google.cloud.speech.v1p1beta1.PhraseSetOrBuilder.html | 3 +-- ...peech.v1p1beta1.RecognitionAudio.AudioSourceCase.html | 3 +-- ....cloud.speech.v1p1beta1.RecognitionAudio.Builder.html | 3 +-- ...m.google.cloud.speech.v1p1beta1.RecognitionAudio.html | 3 +-- ...cloud.speech.v1p1beta1.RecognitionAudioOrBuilder.html | 3 +-- ...speech.v1p1beta1.RecognitionConfig.AudioEncoding.html | 3 +-- ...cloud.speech.v1p1beta1.RecognitionConfig.Builder.html | 3 +-- ....google.cloud.speech.v1p1beta1.RecognitionConfig.html | 3 +-- ...loud.speech.v1p1beta1.RecognitionConfigOrBuilder.html | 3 +-- ...oud.speech.v1p1beta1.RecognitionMetadata.Builder.html | 3 +-- ...ch.v1p1beta1.RecognitionMetadata.InteractionType.html | 3 +-- ...v1p1beta1.RecognitionMetadata.MicrophoneDistance.html | 3 +-- ....v1p1beta1.RecognitionMetadata.OriginalMediaType.html | 3 +-- ...1p1beta1.RecognitionMetadata.RecordingDeviceType.html | 3 +-- ...oogle.cloud.speech.v1p1beta1.RecognitionMetadata.html | 3 +-- ...ud.speech.v1p1beta1.RecognitionMetadataOrBuilder.html | 3 +-- ....cloud.speech.v1p1beta1.RecognizeRequest.Builder.html | 3 +-- ...m.google.cloud.speech.v1p1beta1.RecognizeRequest.html | 3 +-- ...cloud.speech.v1p1beta1.RecognizeRequestOrBuilder.html | 3 +-- ...cloud.speech.v1p1beta1.RecognizeResponse.Builder.html | 3 +-- ....google.cloud.speech.v1p1beta1.RecognizeResponse.html | 3 +-- ...loud.speech.v1p1beta1.RecognizeResponseOrBuilder.html | 3 +-- ...peech.v1p1beta1.SpeakerDiarizationConfig.Builder.html | 3 +-- ....cloud.speech.v1p1beta1.SpeakerDiarizationConfig.html | 3 +-- ...eech.v1p1beta1.SpeakerDiarizationConfigOrBuilder.html | 3 +-- ....cloud.speech.v1p1beta1.SpeechAdaptation.Builder.html | 3 +-- ...m.google.cloud.speech.v1p1beta1.SpeechAdaptation.html | 3 +-- ...cloud.speech.v1p1beta1.SpeechAdaptationOrBuilder.html | 3 +-- ...gle.cloud.speech.v1p1beta1.SpeechAdaptationProto.html | 3 +-- .../com.google.cloud.speech.v1p1beta1.SpeechClient.html | 3 +-- ...gle.cloud.speech.v1p1beta1.SpeechContext.Builder.html | 3 +-- .../com.google.cloud.speech.v1p1beta1.SpeechContext.html | 3 +-- ...le.cloud.speech.v1p1beta1.SpeechContextOrBuilder.html | 3 +-- ...d.speech.v1p1beta1.SpeechGrpc.SpeechBlockingStub.html | 3 +-- ...oud.speech.v1p1beta1.SpeechGrpc.SpeechFutureStub.html | 3 +-- ...cloud.speech.v1p1beta1.SpeechGrpc.SpeechImplBase.html | 3 +-- ...gle.cloud.speech.v1p1beta1.SpeechGrpc.SpeechStub.html | 3 +-- .../com.google.cloud.speech.v1p1beta1.SpeechGrpc.html | 3 +-- .../com.google.cloud.speech.v1p1beta1.SpeechProto.html | 3 +-- ...h.v1p1beta1.SpeechRecognitionAlternative.Builder.html | 3 +-- ...ud.speech.v1p1beta1.SpeechRecognitionAlternative.html | 3 +-- ....v1p1beta1.SpeechRecognitionAlternativeOrBuilder.html | 3 +-- ...speech.v1p1beta1.SpeechRecognitionResult.Builder.html | 3 +-- ...e.cloud.speech.v1p1beta1.SpeechRecognitionResult.html | 3 +-- ...peech.v1p1beta1.SpeechRecognitionResultOrBuilder.html | 3 +-- ...oogle.cloud.speech.v1p1beta1.SpeechResourceProto.html | 3 +-- ...le.cloud.speech.v1p1beta1.SpeechSettings.Builder.html | 3 +-- ...com.google.cloud.speech.v1p1beta1.SpeechSettings.html | 3 +-- ...ech.v1p1beta1.StreamingRecognitionConfig.Builder.html | 3 +-- ...loud.speech.v1p1beta1.StreamingRecognitionConfig.html | 3 +-- ...ch.v1p1beta1.StreamingRecognitionConfigOrBuilder.html | 3 +-- ...ech.v1p1beta1.StreamingRecognitionResult.Builder.html | 3 +-- ...loud.speech.v1p1beta1.StreamingRecognitionResult.html | 3 +-- ...ch.v1p1beta1.StreamingRecognitionResultOrBuilder.html | 3 +-- ...eech.v1p1beta1.StreamingRecognizeRequest.Builder.html | 3 +-- ...1.StreamingRecognizeRequest.StreamingRequestCase.html | 3 +-- ...cloud.speech.v1p1beta1.StreamingRecognizeRequest.html | 3 +-- ...ech.v1p1beta1.StreamingRecognizeRequestOrBuilder.html | 3 +-- ...ech.v1p1beta1.StreamingRecognizeResponse.Builder.html | 3 +-- ...beta1.StreamingRecognizeResponse.SpeechEventType.html | 3 +-- ...loud.speech.v1p1beta1.StreamingRecognizeResponse.html | 3 +-- ...ch.v1p1beta1.StreamingRecognizeResponseOrBuilder.html | 3 +-- ...speech.v1p1beta1.TranscriptNormalization.Builder.html | 3 +-- ....v1p1beta1.TranscriptNormalization.Entry.Builder.html | 3 +-- ...d.speech.v1p1beta1.TranscriptNormalization.Entry.html | 3 +-- ...v1p1beta1.TranscriptNormalization.EntryOrBuilder.html | 3 +-- ...e.cloud.speech.v1p1beta1.TranscriptNormalization.html | 3 +-- ...peech.v1p1beta1.TranscriptNormalizationOrBuilder.html | 3 +-- ....speech.v1p1beta1.TranscriptOutputConfig.Builder.html | 3 +-- ....v1p1beta1.TranscriptOutputConfig.OutputTypeCase.html | 3 +-- ...le.cloud.speech.v1p1beta1.TranscriptOutputConfig.html | 3 +-- ...speech.v1p1beta1.TranscriptOutputConfigOrBuilder.html | 3 +-- ...peech.v1p1beta1.UpdateCustomClassRequest.Builder.html | 3 +-- ....cloud.speech.v1p1beta1.UpdateCustomClassRequest.html | 3 +-- ...eech.v1p1beta1.UpdateCustomClassRequestOrBuilder.html | 3 +-- ....speech.v1p1beta1.UpdatePhraseSetRequest.Builder.html | 3 +-- ...le.cloud.speech.v1p1beta1.UpdatePhraseSetRequest.html | 3 +-- ...speech.v1p1beta1.UpdatePhraseSetRequestOrBuilder.html | 3 +-- ...m.google.cloud.speech.v1p1beta1.WordInfo.Builder.html | 3 +-- .../java/com.google.cloud.speech.v1p1beta1.WordInfo.html | 3 +-- ....google.cloud.speech.v1p1beta1.WordInfoOrBuilder.html | 3 +-- .../goldens/java/com.google.cloud.speech.v1p1beta1.html | 3 +-- ...oogle.cloud.speech.v1p1beta1.stub.AdaptationStub.html | 3 +-- ...ch.v1p1beta1.stub.AdaptationStubSettings.Builder.html | 3 +-- ...oud.speech.v1p1beta1.stub.AdaptationStubSettings.html | 3 +-- ...ech.v1p1beta1.stub.GrpcAdaptationCallableFactory.html | 3 +-- ...e.cloud.speech.v1p1beta1.stub.GrpcAdaptationStub.html | 3 +-- ....speech.v1p1beta1.stub.GrpcSpeechCallableFactory.html | 3 +-- ...oogle.cloud.speech.v1p1beta1.stub.GrpcSpeechStub.html | 3 +-- ...om.google.cloud.speech.v1p1beta1.stub.SpeechStub.html | 3 +-- ...speech.v1p1beta1.stub.SpeechStubSettings.Builder.html | 3 +-- ...e.cloud.speech.v1p1beta1.stub.SpeechStubSettings.html | 3 +-- .../java/com.google.cloud.speech.v1p1beta1.stub.html | 3 +-- testdata/goldens/java/overview.html | 3 +-- .../google.cloud.scheduler.v1.appenginehttptarget.html | 3 +-- .../google.cloud.scheduler.v1.appenginerouting.html | 3 +-- .../google.cloud.scheduler.v1.cloudscheduler-class.html | 3 +-- .../google.cloud.scheduler.v1.createjobrequest.html | 3 +-- .../google.cloud.scheduler.v1.deletejobrequest.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.getjobrequest.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.httpmethod.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.httptarget.html | 3 +-- .../google.cloud.scheduler.v1.iappenginehttptarget.html | 3 +-- .../google.cloud.scheduler.v1.iappenginerouting.html | 3 +-- .../google.cloud.scheduler.v1.icreatejobrequest.html | 3 +-- .../google.cloud.scheduler.v1.ideletejobrequest.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.igetjobrequest.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.ihttptarget.html | 3 +-- .../goldens/nodejs/google.cloud.scheduler.v1.ijob.html | 3 +-- .../google.cloud.scheduler.v1.ilistjobsrequest.html | 3 +-- .../google.cloud.scheduler.v1.ilistjobsresponse.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.ioauthtoken.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.ioidctoken.html | 3 +-- .../google.cloud.scheduler.v1.ipausejobrequest.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.ipubsubtarget.html | 3 +-- .../google.cloud.scheduler.v1.iresumejobrequest.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.iretryconfig.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.irunjobrequest.html | 3 +-- .../google.cloud.scheduler.v1.iupdatejobrequest.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.job-class.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.job.state.html | 3 +-- .../google.cloud.scheduler.v1.listjobsrequest.html | 3 +-- .../google.cloud.scheduler.v1.listjobsresponse.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.oauthtoken.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.oidctoken.html | 3 +-- .../google.cloud.scheduler.v1.pausejobrequest.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.pubsubtarget.html | 3 +-- .../google.cloud.scheduler.v1.resumejobrequest.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.retryconfig.html | 3 +-- .../nodejs/google.cloud.scheduler.v1.runjobrequest.html | 3 +-- .../google.cloud.scheduler.v1.updatejobrequest.html | 3 +-- ...ud.bigquery_storage_v1.client.BigQueryReadClient.html | 3 +-- ...d.bigquery_storage_v1.client.BigQueryWriteClient.html | 3 +-- .../google.cloud.bigquery_storage_v1.client.html | 3 +-- ...loud.bigquery_storage_v1.reader.ReadRowsIterable.html | 3 +-- ...le.cloud.bigquery_storage_v1.reader.ReadRowsPage.html | 3 +-- ....cloud.bigquery_storage_v1.reader.ReadRowsStream.html | 3 +-- .../google.cloud.bigquery_storage_v1.reader.html | 3 +-- ....services.big_query_read.BigQueryReadAsyncClient.html | 3 +-- ...ge_v1.services.big_query_read.BigQueryReadClient.html | 3 +-- ...loud.bigquery_storage_v1.services.big_query_read.html | 3 +-- ...ervices.big_query_write.BigQueryWriteAsyncClient.html | 3 +-- ..._v1.services.big_query_write.BigQueryWriteClient.html | 3 +-- ...oud.bigquery_storage_v1.services.big_query_write.html | 3 +-- ...ery_storage_v1.types.AppendRowsRequest.ProtoData.html | 3 +-- ...loud.bigquery_storage_v1.types.AppendRowsRequest.html | 3 +-- ...storage_v1.types.AppendRowsResponse.AppendResult.html | 3 +-- ...oud.bigquery_storage_v1.types.AppendRowsResponse.html | 3 +-- ...cloud.bigquery_storage_v1.types.ArrowRecordBatch.html | 3 +-- ...ogle.cloud.bigquery_storage_v1.types.ArrowSchema.html | 3 +-- ...types.ArrowSerializationOptions.CompressionCodec.html | 3 +-- ...query_storage_v1.types.ArrowSerializationOptions.html | 3 +-- .../google.cloud.bigquery_storage_v1.types.AvroRows.html | 3 +-- ...oogle.cloud.bigquery_storage_v1.types.AvroSchema.html | 3 +-- ..._storage_v1.types.BatchCommitWriteStreamsRequest.html | 3 +-- ...storage_v1.types.BatchCommitWriteStreamsResponse.html | 3 +-- ...gquery_storage_v1.types.CreateReadSessionRequest.html | 3 +-- ...gquery_storage_v1.types.CreateWriteStreamRequest.html | 3 +-- ...oogle.cloud.bigquery_storage_v1.types.DataFormat.html | 3 +-- ...uery_storage_v1.types.FinalizeWriteStreamRequest.html | 3 +-- ...ery_storage_v1.types.FinalizeWriteStreamResponse.html | 3 +-- ...cloud.bigquery_storage_v1.types.FlushRowsRequest.html | 3 +-- ...loud.bigquery_storage_v1.types.FlushRowsResponse.html | 3 +-- ....bigquery_storage_v1.types.GetWriteStreamRequest.html | 3 +-- ...google.cloud.bigquery_storage_v1.types.ProtoRows.html | 3 +-- ...ogle.cloud.bigquery_storage_v1.types.ProtoSchema.html | 3 +-- ....cloud.bigquery_storage_v1.types.ReadRowsRequest.html | 3 +-- ...cloud.bigquery_storage_v1.types.ReadRowsResponse.html | 3 +-- ...uery_storage_v1.types.ReadSession.TableModifiers.html | 3 +-- ...ry_storage_v1.types.ReadSession.TableReadOptions.html | 3 +-- ...ogle.cloud.bigquery_storage_v1.types.ReadSession.html | 3 +-- ...oogle.cloud.bigquery_storage_v1.types.ReadStream.html | 3 +-- ...bigquery_storage_v1.types.SplitReadStreamRequest.html | 3 +-- ...igquery_storage_v1.types.SplitReadStreamResponse.html | 3 +-- ...y_storage_v1.types.StorageError.StorageErrorCode.html | 3 +-- ...gle.cloud.bigquery_storage_v1.types.StorageError.html | 3 +-- ...d.bigquery_storage_v1.types.StreamStats.Progress.html | 3 +-- ...ogle.cloud.bigquery_storage_v1.types.StreamStats.html | 3 +-- ....bigquery_storage_v1.types.TableFieldSchema.Mode.html | 3 +-- ....bigquery_storage_v1.types.TableFieldSchema.Type.html | 3 +-- ...cloud.bigquery_storage_v1.types.TableFieldSchema.html | 3 +-- ...ogle.cloud.bigquery_storage_v1.types.TableSchema.html | 3 +-- ...le.cloud.bigquery_storage_v1.types.ThrottleState.html | 3 +-- ...cloud.bigquery_storage_v1.types.WriteStream.Type.html | 3 +-- ....bigquery_storage_v1.types.WriteStream.WriteMode.html | 3 +-- ...ogle.cloud.bigquery_storage_v1.types.WriteStream.html | 3 +-- .../google.cloud.bigquery_storage_v1.types.html | 3 +-- ...gquery_storage_v1beta2.client.BigQueryReadClient.html | 3 +-- ...query_storage_v1beta2.client.BigQueryWriteClient.html | 3 +-- .../google.cloud.bigquery_storage_v1beta2.client.html | 3 +-- ....services.big_query_read.BigQueryReadAsyncClient.html | 3 +-- ...beta2.services.big_query_read.BigQueryReadClient.html | 3 +-- ...bigquery_storage_v1beta2.services.big_query_read.html | 3 +-- ...ervices.big_query_write.BigQueryWriteAsyncClient.html | 3 +-- ...ta2.services.big_query_write.BigQueryWriteClient.html | 3 +-- ...igquery_storage_v1beta2.services.big_query_write.html | 3 +-- ...torage_v1beta2.types.AppendRowsRequest.ProtoData.html | 3 +-- ...bigquery_storage_v1beta2.types.AppendRowsRequest.html | 3 +-- ...ge_v1beta2.types.AppendRowsResponse.AppendResult.html | 3 +-- ...igquery_storage_v1beta2.types.AppendRowsResponse.html | 3 +-- ....bigquery_storage_v1beta2.types.ArrowRecordBatch.html | 3 +-- ...cloud.bigquery_storage_v1beta2.types.ArrowSchema.html | 3 +-- ...e_v1beta2.types.ArrowSerializationOptions.Format.html | 3 +-- ..._storage_v1beta2.types.ArrowSerializationOptions.html | 3 +-- ...le.cloud.bigquery_storage_v1beta2.types.AvroRows.html | 3 +-- ....cloud.bigquery_storage_v1beta2.types.AvroSchema.html | 3 +-- ...age_v1beta2.types.BatchCommitWriteStreamsRequest.html | 3 +-- ...ge_v1beta2.types.BatchCommitWriteStreamsResponse.html | 3 +-- ...y_storage_v1beta2.types.CreateReadSessionRequest.html | 3 +-- ...y_storage_v1beta2.types.CreateWriteStreamRequest.html | 3 +-- ....cloud.bigquery_storage_v1beta2.types.DataFormat.html | 3 +-- ...storage_v1beta2.types.FinalizeWriteStreamRequest.html | 3 +-- ...torage_v1beta2.types.FinalizeWriteStreamResponse.html | 3 +-- ....bigquery_storage_v1beta2.types.FlushRowsRequest.html | 3 +-- ...bigquery_storage_v1beta2.types.FlushRowsResponse.html | 3 +-- ...uery_storage_v1beta2.types.GetWriteStreamRequest.html | 3 +-- ...e.cloud.bigquery_storage_v1beta2.types.ProtoRows.html | 3 +-- ...cloud.bigquery_storage_v1beta2.types.ProtoSchema.html | 3 +-- ...d.bigquery_storage_v1beta2.types.ReadRowsRequest.html | 3 +-- ....bigquery_storage_v1beta2.types.ReadRowsResponse.html | 3 +-- ...storage_v1beta2.types.ReadSession.TableModifiers.html | 3 +-- ...orage_v1beta2.types.ReadSession.TableReadOptions.html | 3 +-- ...cloud.bigquery_storage_v1beta2.types.ReadSession.html | 3 +-- ....cloud.bigquery_storage_v1beta2.types.ReadStream.html | 3 +-- ...ery_storage_v1beta2.types.SplitReadStreamRequest.html | 3 +-- ...ry_storage_v1beta2.types.SplitReadStreamResponse.html | 3 +-- ...rage_v1beta2.types.StorageError.StorageErrorCode.html | 3 +-- ...loud.bigquery_storage_v1beta2.types.StorageError.html | 3 +-- ...query_storage_v1beta2.types.StreamStats.Progress.html | 3 +-- ...cloud.bigquery_storage_v1beta2.types.StreamStats.html | 3 +-- ...uery_storage_v1beta2.types.TableFieldSchema.Mode.html | 3 +-- ...uery_storage_v1beta2.types.TableFieldSchema.Type.html | 3 +-- ....bigquery_storage_v1beta2.types.TableFieldSchema.html | 3 +-- ...cloud.bigquery_storage_v1beta2.types.TableSchema.html | 3 +-- ...oud.bigquery_storage_v1beta2.types.ThrottleState.html | 3 +-- ....bigquery_storage_v1beta2.types.WriteStream.Type.html | 3 +-- ...cloud.bigquery_storage_v1beta2.types.WriteStream.html | 3 +-- .../google.cloud.bigquery_storage_v1beta2.types.html | 3 +-- ...bigquery_storage_v1beta2.writer.AppendRowsFuture.html | 3 +-- ...bigquery_storage_v1beta2.writer.AppendRowsStream.html | 3 +-- .../google.cloud.bigquery_storage_v1beta2.writer.html | 3 +-- testdata/goldens/python-small/index.html | 3 +-- testdata/goldens/ruby/Google-Api-FieldBehavior.html | 3 +-- .../ruby/Google-Api-ResourceDescriptor-History.html | 3 +-- .../ruby/Google-Api-ResourceDescriptor-Style.html | 3 +-- testdata/goldens/ruby/Google-Api-ResourceDescriptor.html | 3 +-- testdata/goldens/ruby/Google-Api-ResourceReference.html | 3 +-- testdata/goldens/ruby/Google-Api.html | 3 +-- ...le-Cloud-Vision-V1-AddProductToProductSetRequest.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-AnnotateFileRequest.html | 3 +-- .../Google-Cloud-Vision-V1-AnnotateFileResponse.html | 3 +-- .../Google-Cloud-Vision-V1-AnnotateImageRequest.html | 3 +-- .../Google-Cloud-Vision-V1-AnnotateImageResponse.html | 3 +-- .../Google-Cloud-Vision-V1-AsyncAnnotateFileRequest.html | 3 +-- ...Google-Cloud-Vision-V1-AsyncAnnotateFileResponse.html | 3 +-- ...e-Cloud-Vision-V1-AsyncBatchAnnotateFilesRequest.html | 3 +-- ...-Cloud-Vision-V1-AsyncBatchAnnotateFilesResponse.html | 3 +-- ...-Cloud-Vision-V1-AsyncBatchAnnotateImagesRequest.html | 3 +-- ...Cloud-Vision-V1-AsyncBatchAnnotateImagesResponse.html | 3 +-- ...Google-Cloud-Vision-V1-BatchAnnotateFilesRequest.html | 3 +-- ...oogle-Cloud-Vision-V1-BatchAnnotateFilesResponse.html | 3 +-- ...oogle-Cloud-Vision-V1-BatchAnnotateImagesRequest.html | 3 +-- ...ogle-Cloud-Vision-V1-BatchAnnotateImagesResponse.html | 3 +-- ...gle-Cloud-Vision-V1-BatchOperationMetadata-State.html | 3 +-- .../Google-Cloud-Vision-V1-BatchOperationMetadata.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-Block-BlockType.html | 3 +-- testdata/goldens/ruby/Google-Cloud-Vision-V1-Block.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-BoundingPoly.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-ColorInfo.html | 3 +-- .../Google-Cloud-Vision-V1-CreateProductRequest.html | 3 +-- .../Google-Cloud-Vision-V1-CreateProductSetRequest.html | 3 +-- ...ogle-Cloud-Vision-V1-CreateReferenceImageRequest.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-CropHint.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-CropHintsAnnotation.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-CropHintsParams.html | 3 +-- .../Google-Cloud-Vision-V1-DeleteProductRequest.html | 3 +-- .../Google-Cloud-Vision-V1-DeleteProductSetRequest.html | 3 +-- ...ogle-Cloud-Vision-V1-DeleteReferenceImageRequest.html | 3 +-- .../Google-Cloud-Vision-V1-DominantColorsAnnotation.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-EntityAnnotation.html | 3 +-- ...gle-Cloud-Vision-V1-FaceAnnotation-Landmark-Type.html | 3 +-- .../Google-Cloud-Vision-V1-FaceAnnotation-Landmark.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-FaceAnnotation.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-Feature-Type.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-Feature.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-GcsDestination.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-GcsSource.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-GetProductRequest.html | 3 +-- .../Google-Cloud-Vision-V1-GetProductSetRequest.html | 3 +-- .../Google-Cloud-Vision-V1-GetReferenceImageRequest.html | 3 +-- testdata/goldens/ruby/Google-Cloud-Vision-V1-Image.html | 3 +-- .../Google-Cloud-Vision-V1-ImageAnnotationContext.html | 3 +-- ...sion-V1-ImageAnnotator-Client-Configuration-Rpcs.html | 3 +-- ...ud-Vision-V1-ImageAnnotator-Client-Configuration.html | 3 +-- .../Google-Cloud-Vision-V1-ImageAnnotator-Client.html | 3 +-- ...oogle-Cloud-Vision-V1-ImageAnnotator-Credentials.html | 3 +-- ...-V1-ImageAnnotator-Operations-Configuration-Rpcs.html | 3 +-- ...ision-V1-ImageAnnotator-Operations-Configuration.html | 3 +-- ...Google-Cloud-Vision-V1-ImageAnnotator-Operations.html | 3 +-- .../Google-Cloud-Vision-V1-ImageAnnotator-Paths.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-ImageAnnotator.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-ImageContext.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-ImageProperties.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-ImageSource.html | 3 +-- ...oogle-Cloud-Vision-V1-ImportProductSetsGcsSource.html | 3 +-- ...gle-Cloud-Vision-V1-ImportProductSetsInputConfig.html | 3 +-- .../Google-Cloud-Vision-V1-ImportProductSetsRequest.html | 3 +-- ...Google-Cloud-Vision-V1-ImportProductSetsResponse.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-InputConfig.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-LatLongRect.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-Likelihood.html | 3 +-- .../Google-Cloud-Vision-V1-ListProductSetsRequest.html | 3 +-- .../Google-Cloud-Vision-V1-ListProductSetsResponse.html | 3 +-- ...-Cloud-Vision-V1-ListProductsInProductSetRequest.html | 3 +-- ...Cloud-Vision-V1-ListProductsInProductSetResponse.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-ListProductsRequest.html | 3 +-- .../Google-Cloud-Vision-V1-ListProductsResponse.html | 3 +-- ...oogle-Cloud-Vision-V1-ListReferenceImagesRequest.html | 3 +-- ...ogle-Cloud-Vision-V1-ListReferenceImagesResponse.html | 3 +-- ...Google-Cloud-Vision-V1-LocalizedObjectAnnotation.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-LocationInfo.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-NormalizedVertex.html | 3 +-- .../Google-Cloud-Vision-V1-OperationMetadata-State.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-OperationMetadata.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-OutputConfig.html | 3 +-- testdata/goldens/ruby/Google-Cloud-Vision-V1-Page.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-Paragraph.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-Position.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-Product-KeyValue.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-Product.html | 3 +-- ...ision-V1-ProductSearch-Client-Configuration-Rpcs.html | 3 +-- ...oud-Vision-V1-ProductSearch-Client-Configuration.html | 3 +-- .../Google-Cloud-Vision-V1-ProductSearch-Client.html | 3 +-- ...Google-Cloud-Vision-V1-ProductSearch-Credentials.html | 3 +-- ...n-V1-ProductSearch-Operations-Configuration-Rpcs.html | 3 +-- ...Vision-V1-ProductSearch-Operations-Configuration.html | 3 +-- .../Google-Cloud-Vision-V1-ProductSearch-Operations.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-ProductSearch-Paths.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-ProductSearch.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-ProductSearchParams.html | 3 +-- ...oud-Vision-V1-ProductSearchResults-GroupedResult.html | 3 +-- ...-Vision-V1-ProductSearchResults-ObjectAnnotation.html | 3 +-- ...ogle-Cloud-Vision-V1-ProductSearchResults-Result.html | 3 +-- .../Google-Cloud-Vision-V1-ProductSearchResults.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-ProductSet.html | 3 +-- .../Google-Cloud-Vision-V1-ProductSetPurgeConfig.html | 3 +-- .../goldens/ruby/Google-Cloud-Vision-V1-Property.html | 3 +-- .../Google-Cloud-Vision-V1-PurgeProductsRequest.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-ReferenceImage.html | 3 +-- ...oud-Vision-V1-RemoveProductFromProductSetRequest.html | 3 +-- .../Google-Cloud-Vision-V1-SafeSearchAnnotation.html | 3 +-- testdata/goldens/ruby/Google-Cloud-Vision-V1-Symbol.html | 3 +-- ...Vision-V1-TextAnnotation-DetectedBreak-BreakType.html | 3 +-- ...gle-Cloud-Vision-V1-TextAnnotation-DetectedBreak.html | 3 +-- ...-Cloud-Vision-V1-TextAnnotation-DetectedLanguage.html | 3 +-- ...ogle-Cloud-Vision-V1-TextAnnotation-TextProperty.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-TextAnnotation.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-TextDetectionParams.html | 3 +-- .../Google-Cloud-Vision-V1-UpdateProductRequest.html | 3 +-- .../Google-Cloud-Vision-V1-UpdateProductSetRequest.html | 3 +-- testdata/goldens/ruby/Google-Cloud-Vision-V1-Vertex.html | 3 +-- .../Google-Cloud-Vision-V1-WebDetection-WebEntity.html | 3 +-- .../Google-Cloud-Vision-V1-WebDetection-WebImage.html | 3 +-- .../Google-Cloud-Vision-V1-WebDetection-WebLabel.html | 3 +-- .../Google-Cloud-Vision-V1-WebDetection-WebPage.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-WebDetection.html | 3 +-- .../ruby/Google-Cloud-Vision-V1-WebDetectionParams.html | 3 +-- testdata/goldens/ruby/Google-Cloud-Vision-V1-Word.html | 3 +-- testdata/goldens/ruby/Google-Cloud-Vision-V1.html | 3 +-- testdata/goldens/ruby/Google-Cloud-Vision.html | 3 +-- testdata/goldens/ruby/Google-Cloud.html | 3 +-- .../ruby/Google-Longrunning-CancelOperationRequest.html | 3 +-- .../ruby/Google-Longrunning-DeleteOperationRequest.html | 3 +-- .../ruby/Google-Longrunning-GetOperationRequest.html | 3 +-- .../ruby/Google-Longrunning-ListOperationsRequest.html | 3 +-- .../ruby/Google-Longrunning-ListOperationsResponse.html | 3 +-- testdata/goldens/ruby/Google-Longrunning-Operation.html | 3 +-- .../goldens/ruby/Google-Longrunning-OperationInfo.html | 3 +-- .../ruby/Google-Longrunning-WaitOperationRequest.html | 3 +-- testdata/goldens/ruby/Google-Longrunning.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-Any.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-BoolValue.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-BytesValue.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-DoubleValue.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-Duration.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-Empty.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-FieldMask.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-FloatValue.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-Int32Value.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-Int64Value.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-StringValue.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-Timestamp.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-UInt32Value.html | 3 +-- testdata/goldens/ruby/Google-Protobuf-UInt64Value.html | 3 +-- testdata/goldens/ruby/Google-Protobuf.html | 3 +-- testdata/goldens/ruby/Google-Rpc-Status.html | 3 +-- testdata/goldens/ruby/Google-Rpc.html | 3 +-- testdata/goldens/ruby/Google-Type-Color.html | 3 +-- testdata/goldens/ruby/Google-Type-LatLng.html | 3 +-- testdata/goldens/ruby/Google-Type.html | 3 +-- testdata/goldens/ruby/Google.html | 3 +-- .../templates/devsite/ManagedReference.html.primary.tmpl | 3 +-- .../devsite/UniversalReference.html.primary.tmpl | 3 +-- third_party/docfx/templates/devsite/common.js | 9 ++++++++- 692 files changed, 699 insertions(+), 1383 deletions(-) diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyLongrunningRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyLongrunningRequest.html index 5480c683..ff20fa6d 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyLongrunningRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyLongrunningRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AnalyzeIamPolicyLongrunningRequest -

+

Class AnalyzeIamPolicyLongrunningRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyLongrunningResponse.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyLongrunningResponse.html index de487a62..1da16348 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyLongrunningResponse.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyLongrunningResponse.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AnalyzeIamPolicyLongrunningResponse -

+

Class AnalyzeIamPolicyLongrunningResponse

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyRequest.html index a99047c0..544b9ed8 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AnalyzeIamPolicyRequest -

+

Class AnalyzeIamPolicyRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.Types.IamPolicyAnalysis.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.Types.IamPolicyAnalysis.html index bab1e64a..77f16650 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.Types.IamPolicyAnalysis.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.Types.IamPolicyAnalysis.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AnalyzeIamPolicyResponse.Types.IamPolicyAnalysis -

+

Class AnalyzeIamPolicyResponse.Types.IamPolicyAnalysis

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.Types.html index 12c9183c..cfc386f8 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AnalyzeIamPolicyResponse.Types -

+

Class AnalyzeIamPolicyResponse.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.html index 48df3c13..c8ad6146 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AnalyzeIamPolicyResponse.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AnalyzeIamPolicyResponse -

+

Class AnalyzeIamPolicyResponse

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Asset.AccessContextPolicyOneofCase.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Asset.AccessContextPolicyOneofCase.html index 09443339..40bc64bf 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Asset.AccessContextPolicyOneofCase.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Asset.AccessContextPolicyOneofCase.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum Asset.AccessContextPolicyOneofCase -

+

Enum Asset.AccessContextPolicyOneofCase

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Asset.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Asset.html index 6fc91521..5d35c01a 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Asset.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Asset.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class Asset -

+

Class Asset

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.AssetServiceBase.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.AssetServiceBase.html index 7df2d0d2..cdd3418b 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.AssetServiceBase.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.AssetServiceBase.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AssetService.AssetServiceBase -

+

Class AssetService.AssetServiceBase

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.AssetServiceClient.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.AssetServiceClient.html index c63646d9..497b26a5 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.AssetServiceClient.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.AssetServiceClient.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AssetService.AssetServiceClient -

+

Class AssetService.AssetServiceClient

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.html index 4e6b757d..0b240cec 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetService.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AssetService -

+

Class AssetService

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClient.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClient.html index 3c62a2dc..c51c3920 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClient.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClient.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AssetServiceClient -

+

Class AssetServiceClient

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClientBuilder.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClientBuilder.html index 6d852386..e292ca46 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClientBuilder.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClientBuilder.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AssetServiceClientBuilder -

+

Class AssetServiceClientBuilder

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClientImpl.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClientImpl.html index e8ffc573..3ed608d1 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClientImpl.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceClientImpl.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AssetServiceClientImpl -

+

Class AssetServiceClientImpl

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceSettings.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceSettings.html index 0f7b9720..6519f454 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceSettings.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.AssetServiceSettings.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class AssetServiceSettings -

+

Class AssetServiceSettings

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BatchGetAssetsHistoryRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BatchGetAssetsHistoryRequest.html index 66261bb5..43b87036 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BatchGetAssetsHistoryRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BatchGetAssetsHistoryRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class BatchGetAssetsHistoryRequest -

+

Class BatchGetAssetsHistoryRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BatchGetAssetsHistoryResponse.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BatchGetAssetsHistoryResponse.html index 240d6a37..c8c67044 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BatchGetAssetsHistoryResponse.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BatchGetAssetsHistoryResponse.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class BatchGetAssetsHistoryResponse -

+

Class BatchGetAssetsHistoryResponse

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BigQueryDestination.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BigQueryDestination.html index d6a20fad..b5ab185b 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BigQueryDestination.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.BigQueryDestination.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class BigQueryDestination -

+

Class BigQueryDestination

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.Types.EvaluationValue.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.Types.EvaluationValue.html index c678fff6..06bea486 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.Types.EvaluationValue.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.Types.EvaluationValue.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum ConditionEvaluation.Types.EvaluationValue -

+

Enum ConditionEvaluation.Types.EvaluationValue

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.Types.html index 225cbe83..8dd9e311 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class ConditionEvaluation.Types -

+

Class ConditionEvaluation.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.html index d37af6df..a4aee52c 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ConditionEvaluation.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class ConditionEvaluation -

+

Class ConditionEvaluation

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ContentType.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ContentType.html index 57124c59..75f07e5d 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ContentType.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ContentType.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum ContentType -

+

Enum ContentType

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.CreateFeedRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.CreateFeedRequest.html index 992d51da..993de5d2 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.CreateFeedRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.CreateFeedRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class CreateFeedRequest -

+

Class CreateFeedRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.DeleteFeedRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.DeleteFeedRequest.html index 2b4f5642..063d01da 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.DeleteFeedRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.DeleteFeedRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class DeleteFeedRequest -

+

Class DeleteFeedRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ExportAssetsRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ExportAssetsRequest.html index 786b2526..a55e7624 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ExportAssetsRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ExportAssetsRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class ExportAssetsRequest -

+

Class ExportAssetsRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ExportAssetsResponse.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ExportAssetsResponse.html index b7ed38a8..a8323af9 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ExportAssetsResponse.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ExportAssetsResponse.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class ExportAssetsResponse -

+

Class ExportAssetsResponse

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Feed.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Feed.html index 25e5207a..336891aa 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Feed.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Feed.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class Feed -

+

Class Feed

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedName.ResourceNameType.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedName.ResourceNameType.html index e4526aa0..81badbbd 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedName.ResourceNameType.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedName.ResourceNameType.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum FeedName.ResourceNameType -

+

Enum FeedName.ResourceNameType

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedName.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedName.html index 6c1febbb..072025b8 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedName.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedName.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class FeedName -

+

Class FeedName

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedOutputConfig.DestinationOneofCase.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedOutputConfig.DestinationOneofCase.html index 2ee1552f..74c02f60 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedOutputConfig.DestinationOneofCase.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedOutputConfig.DestinationOneofCase.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum FeedOutputConfig.DestinationOneofCase -

+

Enum FeedOutputConfig.DestinationOneofCase

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedOutputConfig.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedOutputConfig.html index 447c1c40..f771eb04 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedOutputConfig.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.FeedOutputConfig.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class FeedOutputConfig -

+

Class FeedOutputConfig

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsDestination.ObjectUriOneofCase.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsDestination.ObjectUriOneofCase.html index 052eb2db..ba506741 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsDestination.ObjectUriOneofCase.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsDestination.ObjectUriOneofCase.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum GcsDestination.ObjectUriOneofCase -

+

Enum GcsDestination.ObjectUriOneofCase

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsDestination.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsDestination.html index e26afe9f..557b22ae 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsDestination.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsDestination.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class GcsDestination -

+

Class GcsDestination

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsOutputResult.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsOutputResult.html index 78ae21e7..73feedc4 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsOutputResult.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GcsOutputResult.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class GcsOutputResult -

+

Class GcsOutputResult

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GetFeedRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GetFeedRequest.html index ab8ef894..c4af9946 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GetFeedRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.GetFeedRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class GetFeedRequest -

+

Class GetFeedRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.DestinationOneofCase.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.DestinationOneofCase.html index 5c4a8377..72fbf179 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.DestinationOneofCase.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.DestinationOneofCase.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum IamPolicyAnalysisOutputConfig.DestinationOneofCase -

+

Enum IamPolicyAnalysisOutputConfig.DestinationOneofCase

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.PartitionKey.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.PartitionKey.html index cba81fc6..d0eee331 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.PartitionKey.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.PartitionKey.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.PartitionKey -

+

Enum IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.PartitionKey

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.html index ffa51f21..99b25d69 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types -

+

Class IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.html index e8eacf9b..42c9b9e6 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.BigQueryDestination.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisOutputConfig.Types.BigQueryDestination -

+

Class IamPolicyAnalysisOutputConfig.Types.BigQueryDestination

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.GcsDestination.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.GcsDestination.html index bcc0c3f2..7f431794 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.GcsDestination.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.GcsDestination.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisOutputConfig.Types.GcsDestination -

+

Class IamPolicyAnalysisOutputConfig.Types.GcsDestination

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.html index dd138d5a..2d2b796a 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisOutputConfig.Types -

+

Class IamPolicyAnalysisOutputConfig.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.html index 76e65fe9..7d74beb7 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisOutputConfig.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisOutputConfig -

+

Class IamPolicyAnalysisOutputConfig

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.AccessSelector.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.AccessSelector.html index 1987dc7d..4aa6883e 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.AccessSelector.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.AccessSelector.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisQuery.Types.AccessSelector -

+

Class IamPolicyAnalysisQuery.Types.AccessSelector

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ConditionContext.TimeContextOneofCase.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ConditionContext.TimeContextOneofCase.html index 789fc783..bba2a19d 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ConditionContext.TimeContextOneofCase.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ConditionContext.TimeContextOneofCase.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum IamPolicyAnalysisQuery.Types.ConditionContext.TimeContextOneofCase -

+

Enum IamPolicyAnalysisQuery.Types.ConditionContext.TimeContextOneofCase

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ConditionContext.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ConditionContext.html index eca82b63..b349dd8b 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ConditionContext.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ConditionContext.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisQuery.Types.ConditionContext -

+

Class IamPolicyAnalysisQuery.Types.ConditionContext

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.IdentitySelector.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.IdentitySelector.html index 6237b2ea..c11823fa 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.IdentitySelector.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.IdentitySelector.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisQuery.Types.IdentitySelector -

+

Class IamPolicyAnalysisQuery.Types.IdentitySelector

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.Options.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.Options.html index 8f49842c..50658149 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.Options.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.Options.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisQuery.Types.Options -

+

Class IamPolicyAnalysisQuery.Types.Options

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ResourceSelector.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ResourceSelector.html index f37864f0..77535dc7 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ResourceSelector.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.ResourceSelector.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisQuery.Types.ResourceSelector -

+

Class IamPolicyAnalysisQuery.Types.ResourceSelector

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.html index c939c0b6..734058de 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisQuery.Types -

+

Class IamPolicyAnalysisQuery.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.html index e422c362..47a5ef83 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisQuery.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisQuery -

+

Class IamPolicyAnalysisQuery

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Access.OneofAccessOneofCase.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Access.OneofAccessOneofCase.html index 3e4e0b4b..f44513f8 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Access.OneofAccessOneofCase.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Access.OneofAccessOneofCase.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum IamPolicyAnalysisResult.Types.Access.OneofAccessOneofCase -

+

Enum IamPolicyAnalysisResult.Types.Access.OneofAccessOneofCase

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Access.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Access.html index 7dbc81c3..e6d70bc2 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Access.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Access.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisResult.Types.Access -

+

Class IamPolicyAnalysisResult.Types.Access

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.AccessControlList.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.AccessControlList.html index 235cff58..7d798ed4 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.AccessControlList.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.AccessControlList.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisResult.Types.AccessControlList -

+

Class IamPolicyAnalysisResult.Types.AccessControlList

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Edge.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Edge.html index 9bb22e95..95a23170 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Edge.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Edge.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisResult.Types.Edge -

+

Class IamPolicyAnalysisResult.Types.Edge

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Identity.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Identity.html index 36a0b5a8..128ffdee 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Identity.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Identity.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisResult.Types.Identity -

+

Class IamPolicyAnalysisResult.Types.Identity

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.IdentityList.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.IdentityList.html index e37444dc..632b7194 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.IdentityList.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.IdentityList.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisResult.Types.IdentityList -

+

Class IamPolicyAnalysisResult.Types.IdentityList

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Resource.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Resource.html index 6d67b7d9..54ddb473 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Resource.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.Resource.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisResult.Types.Resource -

+

Class IamPolicyAnalysisResult.Types.Resource

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.html index afc03e34..3dcc50c5 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisResult.Types -

+

Class IamPolicyAnalysisResult.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.html index 37032abf..3c694f31 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisResult.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisResult -

+

Class IamPolicyAnalysisResult

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisState.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisState.html index 8b77b2ac..930a8212 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisState.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicyAnalysisState.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicyAnalysisState -

+

Class IamPolicyAnalysisState

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.Types.Permissions.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.Types.Permissions.html index ad807427..bc658033 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.Types.Permissions.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.Types.Permissions.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicySearchResult.Types.Explanation.Types.Permissions -

+

Class IamPolicySearchResult.Types.Explanation.Types.Permissions

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.Types.html index dcd6ba68..0e8bec36 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicySearchResult.Types.Explanation.Types -

+

Class IamPolicySearchResult.Types.Explanation.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.html index 376ad201..b3f2aacc 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.Explanation.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicySearchResult.Types.Explanation -

+

Class IamPolicySearchResult.Types.Explanation

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.html index 4fb8e64f..21e3be4d 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicySearchResult.Types -

+

Class IamPolicySearchResult.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.html index 93c5a57b..4d710ab4 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.IamPolicySearchResult.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class IamPolicySearchResult -

+

Class IamPolicySearchResult

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListAssetsRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListAssetsRequest.html index 57c49ce6..e34d5f3d 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListAssetsRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListAssetsRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class ListAssetsRequest -

+

Class ListAssetsRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListAssetsResponse.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListAssetsResponse.html index 2a5a5287..c9e51a23 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListAssetsResponse.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListAssetsResponse.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class ListAssetsResponse -

+

Class ListAssetsResponse

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListFeedsRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListFeedsRequest.html index 774d48b7..7d4831ef 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListFeedsRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListFeedsRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class ListFeedsRequest -

+

Class ListFeedsRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListFeedsResponse.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListFeedsResponse.html index 50166ee0..7ec77407 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListFeedsResponse.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ListFeedsResponse.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class ListFeedsResponse -

+

Class ListFeedsResponse

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputConfig.DestinationOneofCase.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputConfig.DestinationOneofCase.html index ced160e0..7022bd86 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputConfig.DestinationOneofCase.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputConfig.DestinationOneofCase.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum OutputConfig.DestinationOneofCase -

+

Enum OutputConfig.DestinationOneofCase

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputConfig.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputConfig.html index b23ca0ff..fc213c8f 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputConfig.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputConfig.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class OutputConfig -

+

Class OutputConfig

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputResult.ResultOneofCase.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputResult.ResultOneofCase.html index 743b3c89..5946a3bd 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputResult.ResultOneofCase.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputResult.ResultOneofCase.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum OutputResult.ResultOneofCase -

+

Enum OutputResult.ResultOneofCase

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputResult.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputResult.html index 37ecb64d..a031b14c 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputResult.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.OutputResult.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class OutputResult -

+

Class OutputResult

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.Types.PartitionKey.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.Types.PartitionKey.html index 1fa18370..19859939 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.Types.PartitionKey.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.Types.PartitionKey.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum PartitionSpec.Types.PartitionKey -

+

Enum PartitionSpec.Types.PartitionKey

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.Types.html index 40e9c0f2..3f470adc 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class PartitionSpec.Types -

+

Class PartitionSpec.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.html index 453940ae..4d2e520e 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PartitionSpec.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class PartitionSpec -

+

Class PartitionSpec

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PubsubDestination.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PubsubDestination.html index 7f876382..aaeb73c0 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PubsubDestination.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.PubsubDestination.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class PubsubDestination -

+

Class PubsubDestination

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Resource.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Resource.html index dfb85c3b..d6aca1fe 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Resource.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.Resource.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class Resource -

+

Class Resource

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ResourceSearchResult.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ResourceSearchResult.html index 2e73ffe6..0469b179 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ResourceSearchResult.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.ResourceSearchResult.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class ResourceSearchResult -

+

Class ResourceSearchResult

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllIamPoliciesRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllIamPoliciesRequest.html index 4ffa8590..a7a5ef95 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllIamPoliciesRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllIamPoliciesRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class SearchAllIamPoliciesRequest -

+

Class SearchAllIamPoliciesRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllIamPoliciesResponse.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllIamPoliciesResponse.html index e43a2e08..f28c3cef 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllIamPoliciesResponse.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllIamPoliciesResponse.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class SearchAllIamPoliciesResponse -

+

Class SearchAllIamPoliciesResponse

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllResourcesRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllResourcesRequest.html index cec8f35d..0408fbce 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllResourcesRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllResourcesRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class SearchAllResourcesRequest -

+

Class SearchAllResourcesRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllResourcesResponse.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllResourcesResponse.html index 07e4c3dc..35ea1916 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllResourcesResponse.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.SearchAllResourcesResponse.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class SearchAllResourcesResponse -

+

Class SearchAllResourcesResponse

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.Types.PriorAssetState.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.Types.PriorAssetState.html index 5ba5ecff..59bbdc6b 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.Types.PriorAssetState.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.Types.PriorAssetState.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Enum TemporalAsset.Types.PriorAssetState -

+

Enum TemporalAsset.Types.PriorAssetState

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.Types.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.Types.html index d76b5300..b7be1da4 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.Types.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.Types.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class TemporalAsset.Types -

+

Class TemporalAsset.Types

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.html index c48274cb..7f81c582 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TemporalAsset.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class TemporalAsset -

+

Class TemporalAsset

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TimeWindow.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TimeWindow.html index ba674d45..79f18243 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TimeWindow.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.TimeWindow.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class TimeWindow -

+

Class TimeWindow

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.UpdateFeedRequest.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.UpdateFeedRequest.html index e9e26343..74530d5c 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.UpdateFeedRequest.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.UpdateFeedRequest.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Class UpdateFeedRequest -

+

Class UpdateFeedRequest

diff --git a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.html b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.html index bc60fcb5..2350321c 100644 --- a/testdata/goldens/dotnet/Google.Cloud.Asset.V1.html +++ b/testdata/goldens/dotnet/Google.Cloud.Asset.V1.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Namespace Google.Cloud.Asset.V1 -

+

Namespace Google.Cloud.Asset.V1

Classes diff --git a/testdata/goldens/go/index.html b/testdata/goldens/go/index.html index 4a00eedb..1b53aa29 100644 --- a/testdata/goldens/go/index.html +++ b/testdata/goldens/go/index.html @@ -8,8 +8,7 @@ {% verbatim %}
-

Package cloud.google.com/go/storage -

+

Package cloud.google.com/go/storage