@maxim_mazurok/gapi.client.privateca-v1 0.0.20250423 → 0.0.20250528
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +15 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://privateca.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250528
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -44,6 +44,14 @@ declare namespace gapi.client {
|
|
|
44
44
|
/** Represents an allowed RSA key type. */
|
|
45
45
|
rsa?: RsaKeyType;
|
|
46
46
|
}
|
|
47
|
+
interface AttributeTypeAndValue {
|
|
48
|
+
/** Object ID for an attribute type of an attribute and value pair. */
|
|
49
|
+
objectId?: ObjectId;
|
|
50
|
+
/** The attribute type of the attribute and value pair. */
|
|
51
|
+
type?: string;
|
|
52
|
+
/** The value for the attribute type. */
|
|
53
|
+
value?: string;
|
|
54
|
+
}
|
|
47
55
|
interface AuditConfig {
|
|
48
56
|
/** The configuration for logging of each type of permission. */
|
|
49
57
|
auditLogConfigs?: AuditLogConfig[];
|
|
@@ -510,6 +518,10 @@ declare namespace gapi.client {
|
|
|
510
518
|
/** Excluisive action returned by the CLH. */
|
|
511
519
|
exclusiveAction?: string;
|
|
512
520
|
}
|
|
521
|
+
interface RelativeDistinguishedName {
|
|
522
|
+
/** Attributes describes the attribute value assertions in the RDN. */
|
|
523
|
+
attributes?: AttributeTypeAndValue[];
|
|
524
|
+
}
|
|
513
525
|
interface RevocationDetails {
|
|
514
526
|
/** Indicates why a Certificate was revoked. */
|
|
515
527
|
revocationState?: string;
|
|
@@ -565,6 +577,8 @@ declare namespace gapi.client {
|
|
|
565
577
|
postalCode?: string;
|
|
566
578
|
/** The province, territory, or regional state of the subject. */
|
|
567
579
|
province?: string;
|
|
580
|
+
/** This field can be used in place of the named subject fields. */
|
|
581
|
+
rdnSequence?: RelativeDistinguishedName[];
|
|
568
582
|
/** The street address of the subject. */
|
|
569
583
|
streetAddress?: string;
|
|
570
584
|
}
|