Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DotnetSettings

import type { DotnetSettings } from "https://googleapis.deno.dev/v1/serviceconsumermanagement:v1.ts";

Settings for Dotnet client libraries.

interface DotnetSettings {
forcedNamespaceAliases?: string[];
handwrittenSignatures?: string[];
ignoredResources?: string[];
renamedResources?: {
[key: string]: string;
}
;
renamedServices?: {
[key: string]: string;
}
;
}

§Properties

§

Some settings.

§
forcedNamespaceAliases?: string[]
[src]

Namespaces which must be aliased in snippets due to a known (but non-generator-predictable) naming collision

§
handwrittenSignatures?: string[]
[src]

Method signatures (in the form "service.method(signature)") which are provided separately, so shouldn't be generated. Snippets calling these methods are still generated, however.

§
ignoredResources?: string[]
[src]

List of full resource types to ignore during generation. This is typically used for API-specific Location resources, which should be handled by the generator as if they were actually the common Location resources. Example entry: "documentai.googleapis.com/Location"

§
renamedResources?: {
[key: string]: string;
}
[src]

Map from full resource types to the effective short name for the resource. This is used when otherwise resource named from different services would cause naming collisions. Example entry: "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"

§
renamedServices?: {
[key: string]: string;
}
[src]

Map from original service names to renamed versions. This is used when the default generated types would cause a naming conflict. (Neither name is fully-qualified.) Example: Subscriber to SubscriberServiceApi.