@google-cloud/publicca
Advanced tools
Comparing version 1.2.0 to 1.3.0
@@ -11,2 +11,92 @@ { | ||
"nested": { | ||
"v1": { | ||
"options": { | ||
"cc_enable_arenas": true, | ||
"csharp_namespace": "Google.Cloud.Security.PublicCA.V1", | ||
"go_package": "cloud.google.com/go/security/publicca/apiv1/publiccapb;publiccapb", | ||
"java_multiple_files": true, | ||
"java_outer_classname": "ServiceProto", | ||
"java_package": "com.google.cloud.security.publicca.v1", | ||
"php_namespace": "Google\\Cloud\\Security\\PublicCA\\V1", | ||
"ruby_package": "Google::Cloud::Security::PublicCA::V1" | ||
}, | ||
"nested": { | ||
"ExternalAccountKey": { | ||
"options": { | ||
"(google.api.resource).type": "publicca.googleapis.com/ExternalAccountKey", | ||
"(google.api.resource).pattern": "projects/{project}/locations/{location}/externalAccountKeys/{external_account_key}" | ||
}, | ||
"fields": { | ||
"name": { | ||
"type": "string", | ||
"id": 1, | ||
"options": { | ||
"(google.api.field_behavior)": "OUTPUT_ONLY" | ||
} | ||
}, | ||
"keyId": { | ||
"type": "string", | ||
"id": 2, | ||
"options": { | ||
"(google.api.field_behavior)": "OUTPUT_ONLY" | ||
} | ||
}, | ||
"b64MacKey": { | ||
"type": "bytes", | ||
"id": 3, | ||
"options": { | ||
"(google.api.field_behavior)": "OUTPUT_ONLY" | ||
} | ||
} | ||
} | ||
}, | ||
"PublicCertificateAuthorityService": { | ||
"options": { | ||
"(google.api.default_host)": "publicca.googleapis.com", | ||
"(google.api.oauth_scopes)": "https://www.googleapis.com/auth/cloud-platform" | ||
}, | ||
"methods": { | ||
"CreateExternalAccountKey": { | ||
"requestType": "CreateExternalAccountKeyRequest", | ||
"responseType": "ExternalAccountKey", | ||
"options": { | ||
"(google.api.http).post": "/v1/{parent=projects/*/locations/*}/externalAccountKeys", | ||
"(google.api.http).body": "external_account_key", | ||
"(google.api.method_signature)": "parent,external_account_key" | ||
}, | ||
"parsedOptions": [ | ||
{ | ||
"(google.api.http)": { | ||
"post": "/v1/{parent=projects/*/locations/*}/externalAccountKeys", | ||
"body": "external_account_key" | ||
} | ||
}, | ||
{ | ||
"(google.api.method_signature)": "parent,external_account_key" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"CreateExternalAccountKeyRequest": { | ||
"fields": { | ||
"parent": { | ||
"type": "string", | ||
"id": 1, | ||
"options": { | ||
"(google.api.field_behavior)": "REQUIRED", | ||
"(google.api.resource_reference).child_type": "publicca.googleapis.com/ExternalAccountKey" | ||
} | ||
}, | ||
"externalAccountKey": { | ||
"type": "ExternalAccountKey", | ||
"id": 2, | ||
"options": { | ||
"(google.api.field_behavior)": "REQUIRED" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"v1beta1": { | ||
@@ -13,0 +103,0 @@ "options": { |
@@ -0,6 +1,8 @@ | ||
import * as v1 from './v1'; | ||
import * as v1beta1 from './v1beta1'; | ||
declare const PublicCertificateAuthorityServiceClient: typeof v1beta1.PublicCertificateAuthorityServiceClient; | ||
type PublicCertificateAuthorityServiceClient = v1beta1.PublicCertificateAuthorityServiceClient; | ||
export { v1beta1, PublicCertificateAuthorityServiceClient }; | ||
export { v1, v1beta1, PublicCertificateAuthorityServiceClient }; | ||
declare const _default: { | ||
v1: typeof v1; | ||
v1beta1: typeof v1beta1; | ||
@@ -7,0 +9,0 @@ PublicCertificateAuthorityServiceClient: typeof v1beta1.PublicCertificateAuthorityServiceClient; |
@@ -20,3 +20,5 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.protos = exports.PublicCertificateAuthorityServiceClient = exports.v1beta1 = void 0; | ||
exports.protos = exports.PublicCertificateAuthorityServiceClient = exports.v1beta1 = exports.v1 = void 0; | ||
const v1 = require("./v1"); | ||
exports.v1 = v1; | ||
const v1beta1 = require("./v1beta1"); | ||
@@ -26,5 +28,5 @@ exports.v1beta1 = v1beta1; | ||
exports.PublicCertificateAuthorityServiceClient = PublicCertificateAuthorityServiceClient; | ||
exports.default = { v1beta1, PublicCertificateAuthorityServiceClient }; | ||
exports.default = { v1, v1beta1, PublicCertificateAuthorityServiceClient }; | ||
const protos = require("../protos/protos"); | ||
exports.protos = protos; | ||
//# sourceMappingURL=index.js.map |
# Changelog | ||
## [1.3.0](https://github.com/googleapis/google-cloud-node/compare/publicca-v1.2.0...publicca-v1.3.0) (2024-05-21) | ||
### Features | ||
* [Many APIs] update Nodejs generator to send API versions in headers for GAPICs ([#5351](https://github.com/googleapis/google-cloud-node/issues/5351)) ([01f48fc](https://github.com/googleapis/google-cloud-node/commit/01f48fce63ec4ddf801d59ee2b8c0db9f6fb8372)) | ||
* [Many APIs] update Nodejs generator to send API versions in headers for GAPICs ([#5354](https://github.com/googleapis/google-cloud-node/issues/5354)) ([a9784ed](https://github.com/googleapis/google-cloud-node/commit/a9784ed3db6ee96d171762308bbbcd57390b6866)) | ||
* [security] update Nodejs generator to send API versions in headers for GAPICs ([#5341](https://github.com/googleapis/google-cloud-node/issues/5341)) ([8eb07ac](https://github.com/googleapis/google-cloud-node/commit/8eb07ac8084a06ff6c917eefba46a764a27dfcac)) | ||
## [1.2.0](https://github.com/googleapis/google-cloud-node/compare/publicca-v1.1.0...publicca-v1.2.0) (2024-03-29) | ||
@@ -4,0 +13,0 @@ |
{ | ||
"name": "@google-cloud/publicca", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "Public Certificate Authority client for Node.js", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -111,2 +111,3 @@ [//]: # "This README.md file is auto-generated, all changes to this file will be lost." | ||
| --------------------------- | --------------------------------- | ------ | | ||
| Public_certificate_authority_service.create_external_account_key | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-security-publicca/samples/generated/v1/public_certificate_authority_service.create_external_account_key.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/google-cloud-node&page=editor&open_in_editor=packages/google-cloud-security-publicca/samples/generated/v1/public_certificate_authority_service.create_external_account_key.js,packages/google-cloud-security-publicca/samples/README.md) | | ||
| Public_certificate_authority_service.create_external_account_key | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-security-publicca/samples/generated/v1beta1/public_certificate_authority_service.create_external_account_key.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/google-cloud-node&page=editor&open_in_editor=packages/google-cloud-security-publicca/samples/generated/v1beta1/public_certificate_authority_service.create_external_account_key.js,packages/google-cloud-security-publicca/samples/README.md) | | ||
@@ -113,0 +114,0 @@ | Quickstart | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-security-publicca/samples/quickstart.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/google-cloud-node&page=editor&open_in_editor=packages/google-cloud-security-publicca/samples/quickstart.js,packages/google-cloud-security-publicca/samples/README.md) | |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1540985
23
27015
183
4