@maxim_mazurok/gapi.client.developerconnect-v1 0.1.20251211 → 0.1.20260123
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 +41 -9
- 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://developerconnect.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260123
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -41,7 +41,7 @@ declare namespace gapi.client {
|
|
|
41
41
|
name?: string;
|
|
42
42
|
/** Output only. Start OAuth flow by clicking on this URL. */
|
|
43
43
|
oauthStartUri?: string;
|
|
44
|
-
/** Provider OAuth config. */
|
|
44
|
+
/** Optional. Provider OAuth config. */
|
|
45
45
|
providerOauthConfig?: ProviderOAuthConfig;
|
|
46
46
|
/** Output only. The timestamp when the accountConnector was updated. */
|
|
47
47
|
updateTime?: string;
|
|
@@ -86,6 +86,16 @@ declare namespace gapi.client {
|
|
|
86
86
|
/** Output only. The time at which the deployment was undeployed, all artifacts are considered undeployed once this time is set. */
|
|
87
87
|
undeployTime?: string;
|
|
88
88
|
}
|
|
89
|
+
interface BasicAuthentication {
|
|
90
|
+
/** The password SecretManager secret version to authenticate as. */
|
|
91
|
+
passwordSecretVersion?: string;
|
|
92
|
+
/** Required. The username to authenticate as. */
|
|
93
|
+
username?: string;
|
|
94
|
+
}
|
|
95
|
+
interface BearerTokenAuthentication {
|
|
96
|
+
/** Optional. The token SecretManager secret version to authenticate as. */
|
|
97
|
+
tokenSecretVersion?: string;
|
|
98
|
+
}
|
|
89
99
|
interface BitbucketCloudConfig {
|
|
90
100
|
/** Required. An access token with the minimum `repository`, `pullrequest` and `webhook` scope access. It can either be a workspace, project or repository access token. This is needed to create webhooks. It's recommended to use a system account to generate these credentials. */
|
|
91
101
|
authorizerCredential?: UserCredential;
|
|
@@ -140,6 +150,8 @@ declare namespace gapi.client {
|
|
|
140
150
|
gitlabEnterpriseConfig?: GitLabEnterpriseConfig;
|
|
141
151
|
/** Optional. Configuration for the git proxy feature. Enabling the git proxy allows clients to perform git operations on the repositories linked in the connection. */
|
|
142
152
|
gitProxyConfig?: GitProxyConfig;
|
|
153
|
+
/** Optional. Configuration for connections to an HTTP service provider. */
|
|
154
|
+
httpConfig?: GenericHTTPEndpointConfig;
|
|
143
155
|
/** Output only. Installation state of the Connection. */
|
|
144
156
|
installationState?: InstallationState;
|
|
145
157
|
/** Optional. Labels as key value pairs */
|
|
@@ -148,6 +160,8 @@ declare namespace gapi.client {
|
|
|
148
160
|
name?: string;
|
|
149
161
|
/** Output only. Set to true when the connection is being set up or updated in the background. */
|
|
150
162
|
reconciling?: boolean;
|
|
163
|
+
/** Configuration for connections to an instance of Secure Source Manager. */
|
|
164
|
+
secureSourceManagerInstanceConfig?: SecureSourceManagerInstanceConfig;
|
|
151
165
|
/** Output only. A system-assigned unique identifier for the Connection. */
|
|
152
166
|
uid?: string;
|
|
153
167
|
/** Output only. [Output only] Update timestamp */
|
|
@@ -164,7 +178,7 @@ declare namespace gapi.client {
|
|
|
164
178
|
createTime?: string;
|
|
165
179
|
/** Output only. The time at which the DeploymentEvent was deployed. This would be the min of all ArtifactDeployment deploy_times. */
|
|
166
180
|
deployTime?: string;
|
|
167
|
-
/** Identifier. The name of the DeploymentEvent. This name is provided by
|
|
181
|
+
/** Identifier. The name of the DeploymentEvent. This name is provided by Developer Connect insights. Format: projects/{project}/locations/{location}/insightsConfigs/{insights_config}/deploymentEvents/{uuid} */
|
|
168
182
|
name?: string;
|
|
169
183
|
/** Output only. The runtime configurations where the DeploymentEvent happened. */
|
|
170
184
|
runtimeConfig?: RuntimeConfig;
|
|
@@ -233,6 +247,18 @@ declare namespace gapi.client {
|
|
|
233
247
|
/** The error resulted from exchanging OAuth tokens from the service provider. */
|
|
234
248
|
exchangeError?: ExchangeError;
|
|
235
249
|
}
|
|
250
|
+
interface GenericHTTPEndpointConfig {
|
|
251
|
+
/** Optional. Basic authentication with username and password. */
|
|
252
|
+
basicAuthentication?: BasicAuthentication;
|
|
253
|
+
/** Optional. Bearer token authentication with a token. */
|
|
254
|
+
bearerTokenAuthentication?: BearerTokenAuthentication;
|
|
255
|
+
/** Required. Immutable. The service provider's https endpoint. */
|
|
256
|
+
hostUri?: string;
|
|
257
|
+
/** Optional. Configuration for using Service Directory to privately connect to a HTTP service provider. This should only be set if the Http service provider is hosted on-premises and not reachable by public internet. If this field is left empty, calls to the HTTP service provider will be made over the public internet. */
|
|
258
|
+
serviceDirectoryConfig?: ServiceDirectoryConfig;
|
|
259
|
+
/** Optional. The SSL certificate to use for requests to the HTTP service provider. */
|
|
260
|
+
sslCaCertificate?: string;
|
|
261
|
+
}
|
|
236
262
|
interface GitHubConfig {
|
|
237
263
|
/** Optional. GitHub App installation id. */
|
|
238
264
|
appInstallationId?: string;
|
|
@@ -254,6 +280,8 @@ declare namespace gapi.client {
|
|
|
254
280
|
hostUri?: string;
|
|
255
281
|
/** Output only. The URI to navigate to in order to manage the installation associated with this GitHubEnterpriseConfig. */
|
|
256
282
|
installationUri?: string;
|
|
283
|
+
/** Optional. Immutable. GitHub Enterprise organization in which the GitHub App is created. */
|
|
284
|
+
organization?: string;
|
|
257
285
|
/** Optional. SecretManager resource containing the private key of the GitHub App, formatted as `projects/*/secrets/*/versions/*` or `projects/*/locations/*/secrets/*/versions/*` (if regional secrets are supported in that location). */
|
|
258
286
|
privateKeySecretVersion?: string;
|
|
259
287
|
/** Output only. GitHub Enterprise version installed at the host_uri. */
|
|
@@ -364,7 +392,7 @@ declare namespace gapi.client {
|
|
|
364
392
|
labels?: {[P in string]: string};
|
|
365
393
|
/** Identifier. The name of the InsightsConfig. Format: projects/{project}/locations/{location}/insightsConfigs/{insightsConfig} */
|
|
366
394
|
name?: string;
|
|
367
|
-
/** Optional. The
|
|
395
|
+
/** Optional. The projects to track with the InsightsConfig. */
|
|
368
396
|
projects?: Projects;
|
|
369
397
|
/** Output only. Reconciling (https://google.aip.dev/128#reconciliation). Set to true if the current state of InsightsConfig does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance. */
|
|
370
398
|
reconciling?: boolean;
|
|
@@ -522,13 +550,13 @@ declare namespace gapi.client {
|
|
|
522
550
|
body?: HttpBody;
|
|
523
551
|
}
|
|
524
552
|
interface Projects {
|
|
525
|
-
/** Optional. The
|
|
553
|
+
/** Optional. The project IDs. Format: {project} */
|
|
526
554
|
projectIds?: string[];
|
|
527
555
|
}
|
|
528
556
|
interface ProviderOAuthConfig {
|
|
529
557
|
/** Required. User selected scopes to apply to the Oauth config In the event of changing scopes, user records under AccountConnector will be deleted and users will re-auth again. */
|
|
530
558
|
scopes?: string[];
|
|
531
|
-
/** Immutable. Developer Connect provided OAuth. */
|
|
559
|
+
/** Optional. Immutable. Developer Connect provided OAuth. */
|
|
532
560
|
systemProviderId?: string;
|
|
533
561
|
}
|
|
534
562
|
interface RuntimeConfig {
|
|
@@ -545,6 +573,10 @@ declare namespace gapi.client {
|
|
|
545
573
|
/** Required. Immutable. The URI of the runtime configuration. For GKE, this is the cluster name. For Cloud Run, this is the service name. */
|
|
546
574
|
uri?: string;
|
|
547
575
|
}
|
|
576
|
+
interface SecureSourceManagerInstanceConfig {
|
|
577
|
+
/** Required. Immutable. SSM instance resource, formatted as `projects/*/locations/*/instances/*` */
|
|
578
|
+
instance?: string;
|
|
579
|
+
}
|
|
548
580
|
interface ServiceDirectoryConfig {
|
|
549
581
|
/** Required. The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}. */
|
|
550
582
|
service?: string;
|
|
@@ -554,9 +586,9 @@ declare namespace gapi.client {
|
|
|
554
586
|
authUri?: string;
|
|
555
587
|
/** The client ID to the OAuth App of the service provider. */
|
|
556
588
|
clientId?: string;
|
|
557
|
-
/** https://datatracker.ietf.org/doc/html/rfc7636#section-4.1
|
|
589
|
+
/** Please refer to https://datatracker.ietf.org/doc/html/rfc7636#section-4.1 */
|
|
558
590
|
codeChallenge?: string;
|
|
559
|
-
/** https://datatracker.ietf.org/doc/html/rfc7636#section-4.2 */
|
|
591
|
+
/** Please refer to https://datatracker.ietf.org/doc/html/rfc7636#section-4.2 */
|
|
560
592
|
codeChallengeMethod?: string;
|
|
561
593
|
/** The list of scopes requested by the application. */
|
|
562
594
|
scopes?: string[];
|
|
@@ -2458,7 +2490,7 @@ declare namespace gapi.client {
|
|
|
2458
2490
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2459
2491
|
uploadType?: string;
|
|
2460
2492
|
}): Request<Location>;
|
|
2461
|
-
/** Lists information about the supported locations for this service. */
|
|
2493
|
+
/** Lists information about the supported locations for this service. This method can be called in two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include public locations as well as private or other locations specifically visible to the project. */
|
|
2462
2494
|
list(request?: {
|
|
2463
2495
|
/** V1 error format. */
|
|
2464
2496
|
'$.xgafv'?: string;
|