@maxim_mazurok/gapi.client.cloudkms-v1 0.1.20250911 → 0.1.20251001
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 +7 -7
- package/package.json +1 -1
- package/readme.md +6 -6
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://cloudkms.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251001
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -687,7 +687,7 @@ declare namespace gapi.client {
|
|
|
687
687
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
688
688
|
uploadType?: string;
|
|
689
689
|
}): Request<AutokeyConfig>;
|
|
690
|
-
/** Gets the KeyAccessJustificationsPolicyConfig for a given organization
|
|
690
|
+
/** Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project. */
|
|
691
691
|
getKajPolicyConfig(request?: {
|
|
692
692
|
/** V1 error format. */
|
|
693
693
|
'$.xgafv'?: string;
|
|
@@ -776,7 +776,7 @@ declare namespace gapi.client {
|
|
|
776
776
|
},
|
|
777
777
|
body: AutokeyConfig,
|
|
778
778
|
): Request<AutokeyConfig>;
|
|
779
|
-
/** Updates the KeyAccessJustificationsPolicyConfig for a given organization
|
|
779
|
+
/** Updates the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project. */
|
|
780
780
|
updateKajPolicyConfig(request: {
|
|
781
781
|
/** V1 error format. */
|
|
782
782
|
'$.xgafv'?: string;
|
|
@@ -840,7 +840,7 @@ declare namespace gapi.client {
|
|
|
840
840
|
): Request<KeyAccessJustificationsPolicyConfig>;
|
|
841
841
|
}
|
|
842
842
|
interface OrganizationsResource {
|
|
843
|
-
/** Gets the KeyAccessJustificationsPolicyConfig for a given organization
|
|
843
|
+
/** Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project. */
|
|
844
844
|
getKajPolicyConfig(request?: {
|
|
845
845
|
/** V1 error format. */
|
|
846
846
|
'$.xgafv'?: string;
|
|
@@ -867,7 +867,7 @@ declare namespace gapi.client {
|
|
|
867
867
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
868
868
|
uploadType?: string;
|
|
869
869
|
}): Request<KeyAccessJustificationsPolicyConfig>;
|
|
870
|
-
/** Updates the KeyAccessJustificationsPolicyConfig for a given organization
|
|
870
|
+
/** Updates the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project. */
|
|
871
871
|
updateKajPolicyConfig(request: {
|
|
872
872
|
/** V1 error format. */
|
|
873
873
|
'$.xgafv'?: string;
|
|
@@ -3407,7 +3407,7 @@ declare namespace gapi.client {
|
|
|
3407
3407
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3408
3408
|
uploadType?: string;
|
|
3409
3409
|
}): Request<AutokeyConfig>;
|
|
3410
|
-
/** Gets the KeyAccessJustificationsPolicyConfig for a given organization
|
|
3410
|
+
/** Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project. */
|
|
3411
3411
|
getKajPolicyConfig(request?: {
|
|
3412
3412
|
/** V1 error format. */
|
|
3413
3413
|
'$.xgafv'?: string;
|
|
@@ -3577,7 +3577,7 @@ declare namespace gapi.client {
|
|
|
3577
3577
|
},
|
|
3578
3578
|
body: AutokeyConfig,
|
|
3579
3579
|
): Request<AutokeyConfig>;
|
|
3580
|
-
/** Updates the KeyAccessJustificationsPolicyConfig for a given organization
|
|
3580
|
+
/** Updates the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project. */
|
|
3581
3581
|
updateKajPolicyConfig(request: {
|
|
3582
3582
|
/** V1 error format. */
|
|
3583
3583
|
'$.xgafv'?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -78,7 +78,7 @@ Returns the AutokeyConfig for a folder or project.
|
|
|
78
78
|
await gapi.client.cloudkms.folders.getAutokeyConfig({name: 'name'});
|
|
79
79
|
|
|
80
80
|
/*
|
|
81
|
-
Gets the KeyAccessJustificationsPolicyConfig for a given organization
|
|
81
|
+
Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
|
|
82
82
|
*/
|
|
83
83
|
await gapi.client.cloudkms.folders.getKajPolicyConfig({name: 'name'});
|
|
84
84
|
|
|
@@ -88,17 +88,17 @@ Updates the AutokeyConfig for a folder. The caller must have both `cloudkms.auto
|
|
|
88
88
|
await gapi.client.cloudkms.folders.updateAutokeyConfig({name: 'name'});
|
|
89
89
|
|
|
90
90
|
/*
|
|
91
|
-
Updates the KeyAccessJustificationsPolicyConfig for a given organization
|
|
91
|
+
Updates the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
|
|
92
92
|
*/
|
|
93
93
|
await gapi.client.cloudkms.folders.updateKajPolicyConfig({name: 'name'});
|
|
94
94
|
|
|
95
95
|
/*
|
|
96
|
-
Gets the KeyAccessJustificationsPolicyConfig for a given organization
|
|
96
|
+
Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
|
|
97
97
|
*/
|
|
98
98
|
await gapi.client.cloudkms.organizations.getKajPolicyConfig({name: 'name'});
|
|
99
99
|
|
|
100
100
|
/*
|
|
101
|
-
Updates the KeyAccessJustificationsPolicyConfig for a given organization
|
|
101
|
+
Updates the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
|
|
102
102
|
*/
|
|
103
103
|
await gapi.client.cloudkms.organizations.updateKajPolicyConfig({name: 'name'});
|
|
104
104
|
|
|
@@ -108,7 +108,7 @@ Returns the AutokeyConfig for a folder or project.
|
|
|
108
108
|
await gapi.client.cloudkms.projects.getAutokeyConfig({name: 'name'});
|
|
109
109
|
|
|
110
110
|
/*
|
|
111
|
-
Gets the KeyAccessJustificationsPolicyConfig for a given organization
|
|
111
|
+
Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
|
|
112
112
|
*/
|
|
113
113
|
await gapi.client.cloudkms.projects.getKajPolicyConfig({name: 'name'});
|
|
114
114
|
|
|
@@ -139,7 +139,7 @@ Updates the AutokeyConfig for a folder. The caller must have both `cloudkms.auto
|
|
|
139
139
|
await gapi.client.cloudkms.projects.updateAutokeyConfig({name: 'name'});
|
|
140
140
|
|
|
141
141
|
/*
|
|
142
|
-
Updates the KeyAccessJustificationsPolicyConfig for a given organization
|
|
142
|
+
Updates the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
|
|
143
143
|
*/
|
|
144
144
|
await gapi.client.cloudkms.projects.updateKajPolicyConfig({name: 'name'});
|
|
145
145
|
```
|