Skip to content

Commit

Permalink
feat(servicenetworking): update the api
Browse files Browse the repository at this point in the history
#### servicenetworking:v1

The following keys were added:
- schemas.DotnetSettings.properties.forcedNamespaceAliases (Total Keys: 2)
- schemas.DotnetSettings.properties.handwrittenSignatures (Total Keys: 2)
- schemas.DotnetSettings.properties.ignoredResources (Total Keys: 2)
- schemas.DotnetSettings.properties.renamedResources (Total Keys: 2)
- schemas.DotnetSettings.properties.renamedServices (Total Keys: 2)

#### servicenetworking:v1beta

The following keys were added:
- schemas.DotnetSettings.properties.forcedNamespaceAliases (Total Keys: 2)
- schemas.DotnetSettings.properties.handwrittenSignatures (Total Keys: 2)
- schemas.DotnetSettings.properties.ignoredResources (Total Keys: 2)
- schemas.DotnetSettings.properties.renamedResources (Total Keys: 2)
- schemas.DotnetSettings.properties.renamedServices (Total Keys: 2)
  • Loading branch information
yoshi-automation committed Apr 4, 2023
1 parent 231fc2d commit 9921394
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 2 deletions.
Expand Up @@ -865,7 +865,7 @@
}
}
},
"revision": "20230323",
"revision": "20230402",
"rootUrl": "https://servicenetworking.googleapis.com/",
"schemas": {
"AddDnsRecordSetMetadata": {
Expand Down Expand Up @@ -1827,6 +1827,41 @@
"common": {
"$ref": "CommonLanguageSettings",
"description": "Some settings."
},
"forcedNamespaceAliases": {
"description": "Namespaces which must be aliased in snippets due to a known (but non-generator-predictable) naming collision",
"items": {
"type": "string"
},
"type": "array"
},
"handwrittenSignatures": {
"description": "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.",
"items": {
"type": "string"
},
"type": "array"
},
"ignoredResources": {
"description": "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\"",
"items": {
"type": "string"
},
"type": "array"
},
"renamedResources": {
"additionalProperties": {
"type": "string"
},
"description": "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\"",
"type": "object"
},
"renamedServices": {
"additionalProperties": {
"type": "string"
},
"description": "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.",
"type": "object"
}
},
"type": "object"
Expand Down
Expand Up @@ -307,7 +307,7 @@
}
}
},
"revision": "20230323",
"revision": "20230402",
"rootUrl": "https://servicenetworking.googleapis.com/",
"schemas": {
"AddDnsRecordSetMetadata": {
Expand Down Expand Up @@ -1126,6 +1126,41 @@
"common": {
"$ref": "CommonLanguageSettings",
"description": "Some settings."
},
"forcedNamespaceAliases": {
"description": "Namespaces which must be aliased in snippets due to a known (but non-generator-predictable) naming collision",
"items": {
"type": "string"
},
"type": "array"
},
"handwrittenSignatures": {
"description": "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.",
"items": {
"type": "string"
},
"type": "array"
},
"ignoredResources": {
"description": "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\"",
"items": {
"type": "string"
},
"type": "array"
},
"renamedResources": {
"additionalProperties": {
"type": "string"
},
"description": "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\"",
"type": "object"
},
"renamedServices": {
"additionalProperties": {
"type": "string"
},
"description": "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.",
"type": "object"
}
},
"type": "object"
Expand Down

0 comments on commit 9921394

Please sign in to comment.