@distilled.cloud/gcp 0.4.0 → 0.5.0
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.
|
@@ -0,0 +1,1269 @@
|
|
|
1
|
+
import * as Schema from "effect/Schema";
|
|
2
|
+
import * as API from "../client/api.ts";
|
|
3
|
+
import type { Credentials } from "../credentials";
|
|
4
|
+
import type { DefaultErrors } from "../errors";
|
|
5
|
+
import type * as HttpClient from "effect/unstable/http/HttpClient";
|
|
6
|
+
export interface GoogleCloudLocationLocation {
|
|
7
|
+
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
8
|
+
displayName?: string;
|
|
9
|
+
/** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
|
|
10
|
+
name?: string;
|
|
11
|
+
/** The canonical id for this location. For example: `"us-east1"`. */
|
|
12
|
+
locationId?: string;
|
|
13
|
+
/** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
|
|
14
|
+
labels?: Record<string, string>;
|
|
15
|
+
/** Service-specific metadata. For example the available capacity at the given location. */
|
|
16
|
+
metadata?: Record<string, unknown>;
|
|
17
|
+
}
|
|
18
|
+
export declare const GoogleCloudLocationLocation: Schema.Schema<GoogleCloudLocationLocation>;
|
|
19
|
+
export interface UnitVariable {
|
|
20
|
+
/** Optional. Immutable. Name of a supported variable type. Supported types are string, int, bool. */
|
|
21
|
+
type?: "TYPE_UNSPECIFIED" | "STRING" | "INT" | "BOOL" | (string & {});
|
|
22
|
+
/** Required. Immutable. Name of the variable from actuation configs. */
|
|
23
|
+
variable?: string;
|
|
24
|
+
/** Optional. String encoded value for the variable. */
|
|
25
|
+
value?: string;
|
|
26
|
+
}
|
|
27
|
+
export declare const UnitVariable: Schema.Schema<UnitVariable>;
|
|
28
|
+
export interface Upgrade {
|
|
29
|
+
/** Optional. Reference to the Release object to use for the Unit. (optional). */
|
|
30
|
+
release?: string;
|
|
31
|
+
/** Optional. Set of input variables. Maximum 100. (optional) */
|
|
32
|
+
inputVariables?: Array<UnitVariable>;
|
|
33
|
+
}
|
|
34
|
+
export declare const Upgrade: Schema.Schema<Upgrade>;
|
|
35
|
+
export interface Provision {
|
|
36
|
+
/** Optional. Reference to the Release object to use for the Unit. (optional). */
|
|
37
|
+
release?: string;
|
|
38
|
+
/** Optional. Set of input variables. Maximum 100. (optional) */
|
|
39
|
+
inputVariables?: Array<UnitVariable>;
|
|
40
|
+
}
|
|
41
|
+
export declare const Provision: Schema.Schema<Provision>;
|
|
42
|
+
export interface Deprovision {
|
|
43
|
+
}
|
|
44
|
+
export declare const Deprovision: Schema.Schema<Deprovision>;
|
|
45
|
+
export interface UnitOperationCondition {
|
|
46
|
+
/** Required. Human readable message indicating details about the last transition. */
|
|
47
|
+
message?: string;
|
|
48
|
+
/** Required. Last time the condition transited from one status to another. */
|
|
49
|
+
lastTransitionTime?: string;
|
|
50
|
+
/** Required. Status of the condition. */
|
|
51
|
+
status?: "STATUS_UNSPECIFIED" | "STATUS_UNKNOWN" | "STATUS_TRUE" | "STATUS_FALSE" | (string & {});
|
|
52
|
+
/** Required. Brief reason for the condition's last transition. */
|
|
53
|
+
reason?: string;
|
|
54
|
+
/** Required. Type of the condition. */
|
|
55
|
+
type?: "TYPE_UNSPECIFIED" | "TYPE_SCHEDULED" | "TYPE_RUNNING" | "TYPE_SUCCEEDED" | "TYPE_CANCELLED" | "TYPE_APP_CREATED" | "TYPE_APP_COMPONENTS_REGISTERED" | (string & {});
|
|
56
|
+
}
|
|
57
|
+
export declare const UnitOperationCondition: Schema.Schema<UnitOperationCondition>;
|
|
58
|
+
export interface Schedule {
|
|
59
|
+
/** Optional. Start of operation. If not set, will be set to the start of the next window. (optional) */
|
|
60
|
+
startTime?: string;
|
|
61
|
+
}
|
|
62
|
+
export declare const Schedule: Schema.Schema<Schedule>;
|
|
63
|
+
export interface UnitOperation {
|
|
64
|
+
/** Optional. Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations */
|
|
65
|
+
annotations?: Record<string, string>;
|
|
66
|
+
upgrade?: Upgrade;
|
|
67
|
+
/** Optional. Output only. UnitOperationErrorCategory describe the error category. */
|
|
68
|
+
errorCategory?: "UNIT_OPERATION_ERROR_CATEGORY_UNSPECIFIED" | "NOT_APPLICABLE" | "FATAL" | "RETRIABLE" | "IGNORABLE" | "STANDARD" | (string & {});
|
|
69
|
+
/** Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. */
|
|
70
|
+
etag?: string;
|
|
71
|
+
/** Optional. Output only. The engine state for on-going deployment engine operation(s). This field is opaque for external usage. */
|
|
72
|
+
engineState?: string;
|
|
73
|
+
/** Output only. The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. */
|
|
74
|
+
uid?: string;
|
|
75
|
+
/** Output only. The timestamp when the resource was created. */
|
|
76
|
+
createTime?: string;
|
|
77
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitOperations/{unitOperation}" */
|
|
78
|
+
name?: string;
|
|
79
|
+
/** Required. Immutable. The Unit a given UnitOperation will act upon. */
|
|
80
|
+
unit?: string;
|
|
81
|
+
provision?: Provision;
|
|
82
|
+
/** Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. */
|
|
83
|
+
updateTime?: string;
|
|
84
|
+
/** Optional. When true, attempt to cancel the operation. Cancellation may fail if the operation is already executing. (Optional) */
|
|
85
|
+
cancel?: boolean;
|
|
86
|
+
deprovision?: Deprovision;
|
|
87
|
+
/** Optional. Output only. UnitOperationState describes the current state of the unit operation. */
|
|
88
|
+
state?: "UNIT_OPERATION_STATE_UNKNOWN" | "UNIT_OPERATION_STATE_PENDING" | "UNIT_OPERATION_STATE_SCHEDULED" | "UNIT_OPERATION_STATE_RUNNING" | "UNIT_OPERATION_STATE_SUCCEEDED" | "UNIT_OPERATION_STATE_FAILED" | "UNIT_OPERATION_STATE_CANCELLED" | (string & {});
|
|
89
|
+
/** Optional. Reference to parent resource: UnitOperation. If an operation needs to create other operations as part of its workflow, each of the child operations should have this field set to the parent. This can be used for tracing. (Optional) */
|
|
90
|
+
parentUnitOperation?: string;
|
|
91
|
+
/** Optional. Output only. A set of conditions which indicate the various conditions this resource can have. */
|
|
92
|
+
conditions?: Array<UnitOperationCondition>;
|
|
93
|
+
/** Output only. The timestamp when the resource was marked for deletion (deletion is an asynchronous operation). */
|
|
94
|
+
deleteTime?: string;
|
|
95
|
+
/** Optional. When to schedule this operation. */
|
|
96
|
+
schedule?: Schedule;
|
|
97
|
+
/** Optional. The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. */
|
|
98
|
+
labels?: Record<string, string>;
|
|
99
|
+
/** Optional. Specifies which rollout created this Unit Operation. This cannot be modified and is used for filtering purposes only. If a dependent unit and unit operation are created as part of another unit operation, they will use the same rolloutId. */
|
|
100
|
+
rollout?: string;
|
|
101
|
+
}
|
|
102
|
+
export declare const UnitOperation: Schema.Schema<UnitOperation>;
|
|
103
|
+
export interface UnitCondition {
|
|
104
|
+
/** Required. Last time the condition transited from one status to another. */
|
|
105
|
+
lastTransitionTime?: string;
|
|
106
|
+
/** Required. Human readable message indicating details about the last transition. */
|
|
107
|
+
message?: string;
|
|
108
|
+
/** Required. Status of the condition. */
|
|
109
|
+
status?: "STATUS_UNSPECIFIED" | "STATUS_UNKNOWN" | "STATUS_TRUE" | "STATUS_FALSE" | (string & {});
|
|
110
|
+
/** Required. Brief reason for the condition's last transition. */
|
|
111
|
+
reason?: string;
|
|
112
|
+
/** Required. Type of the condition. */
|
|
113
|
+
type?: "TYPE_UNSPECIFIED" | "TYPE_READY" | "TYPE_UPDATING" | "TYPE_PROVISIONED" | "TYPE_OPERATION_ERROR" | (string & {});
|
|
114
|
+
}
|
|
115
|
+
export declare const UnitCondition: Schema.Schema<UnitCondition>;
|
|
116
|
+
export interface Status {
|
|
117
|
+
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
118
|
+
code?: number;
|
|
119
|
+
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
120
|
+
details?: Array<Record<string, unknown>>;
|
|
121
|
+
/** A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. */
|
|
122
|
+
message?: string;
|
|
123
|
+
}
|
|
124
|
+
export declare const Status: Schema.Schema<Status>;
|
|
125
|
+
export interface Location {
|
|
126
|
+
/** Optional. Name of location. */
|
|
127
|
+
name?: string;
|
|
128
|
+
}
|
|
129
|
+
export declare const Location: Schema.Schema<Location>;
|
|
130
|
+
export interface Saas {
|
|
131
|
+
/** Optional. List of locations that the service is available in. Rollout refers to the list to generate a rollout plan. */
|
|
132
|
+
locations?: Array<Location>;
|
|
133
|
+
/** Optional. The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. */
|
|
134
|
+
labels?: Record<string, string>;
|
|
135
|
+
/** Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. */
|
|
136
|
+
etag?: string;
|
|
137
|
+
/** Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. */
|
|
138
|
+
updateTime?: string;
|
|
139
|
+
/** Output only. The timestamp when the resource was created. */
|
|
140
|
+
createTime?: string;
|
|
141
|
+
/** Output only. The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. */
|
|
142
|
+
uid?: string;
|
|
143
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/saas/{saas}" */
|
|
144
|
+
name?: string;
|
|
145
|
+
/** Optional. Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations */
|
|
146
|
+
annotations?: Record<string, string>;
|
|
147
|
+
}
|
|
148
|
+
export declare const Saas: Schema.Schema<Saas>;
|
|
149
|
+
export interface ReleaseRequirements {
|
|
150
|
+
/** Optional. A list of releases from which a unit can be upgraded to this one (optional). If left empty no constraints will be applied. When provided, unit upgrade requests to this release will check and enforce this constraint. */
|
|
151
|
+
upgradeableFromReleases?: Array<string>;
|
|
152
|
+
}
|
|
153
|
+
export declare const ReleaseRequirements: Schema.Schema<ReleaseRequirements>;
|
|
154
|
+
export interface ErrorBudget {
|
|
155
|
+
/** Optional. The maximum number of failed units allowed in a location without pausing the rollout. */
|
|
156
|
+
allowedCount?: number;
|
|
157
|
+
/** Optional. The maximum percentage of units allowed to fail (0, 100] within a location without pausing the rollout. */
|
|
158
|
+
allowedPercentage?: number;
|
|
159
|
+
}
|
|
160
|
+
export declare const ErrorBudget: Schema.Schema<ErrorBudget>;
|
|
161
|
+
export interface RolloutKind {
|
|
162
|
+
/** Optional. Value among strict (enforcing maintenance policy and only looking at Units with maintenance policy), ignore (ignoring maintenance policy) and skip (skipping Units with maintenance policy) */
|
|
163
|
+
maintenancePolicyEnforcement?: "MAINTENANCE_POLICY_ENFORCEMENT_UNSPECIFIED" | "MAINTENANCE_POLICY_ENFORCEMENT_STRICT" | "MAINTENANCE_POLICY_ENFORCEMENT_IGNORED" | "MAINTENANCE_POLICY_ENFORCEMENT_SKIPPED" | (string & {});
|
|
164
|
+
/** Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. */
|
|
165
|
+
etag?: string;
|
|
166
|
+
/** Output only. The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. */
|
|
167
|
+
uid?: string;
|
|
168
|
+
/** Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. */
|
|
169
|
+
updateTime?: string;
|
|
170
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/rolloutKinds/{rollout_kind_id}" */
|
|
171
|
+
name?: string;
|
|
172
|
+
/** Optional. CEL(https://github.com/google/cel-spec) formatted filter string against Unit. The filter will be applied to determine the eligible unit population. This filter can only reduce, but not expand the scope of the rollout. */
|
|
173
|
+
unitFilter?: string;
|
|
174
|
+
/** Optional. The strategy used for executing a Rollout. This is a required field. There are two supported values strategies which are used to control - "Google.Cloud.Simple.AllAtOnce" - "Google.Cloud.Simple.OneLocationAtATime" A rollout with one of these simple strategies will rollout across all locations defined in the associated UnitKind's Saas Locations. */
|
|
175
|
+
rolloutOrchestrationStrategy?: string;
|
|
176
|
+
/** Output only. The timestamp when the resource was created. */
|
|
177
|
+
createTime?: string;
|
|
178
|
+
/** Required. Immutable. UnitKind that this rollout kind corresponds to. Rollouts stemming from this rollout kind will target the units of this unit kind. In other words, this defines the population of target units to be upgraded by rollouts. */
|
|
179
|
+
unitKind?: string;
|
|
180
|
+
/** Optional. The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. */
|
|
181
|
+
labels?: Record<string, string>;
|
|
182
|
+
/** Optional. The configuration for error budget. If the number of failed units exceeds max(allowed_count, allowed_ratio * total_units), the rollout will be paused. If not set, all units will be attempted to be updated regardless of the number of failures encountered. */
|
|
183
|
+
errorBudget?: ErrorBudget;
|
|
184
|
+
/** Optional. Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations */
|
|
185
|
+
annotations?: Record<string, string>;
|
|
186
|
+
/** Optional. The config for updating the unit kind. By default, the unit kind will be updated on the rollout start. */
|
|
187
|
+
updateUnitKindStrategy?: "UPDATE_UNIT_KIND_STRATEGY_UNSPECIFIED" | "UPDATE_UNIT_KIND_STRATEGY_ON_START" | "UPDATE_UNIT_KIND_STRATEGY_NEVER" | (string & {});
|
|
188
|
+
}
|
|
189
|
+
export declare const RolloutKind: Schema.Schema<RolloutKind>;
|
|
190
|
+
export interface Blueprint {
|
|
191
|
+
/** Optional. Immutable. URI to a blueprint used by the Unit (required unless unitKind or release is set). */
|
|
192
|
+
package?: string;
|
|
193
|
+
/** Output only. Version metadata if present on the blueprint. */
|
|
194
|
+
version?: string;
|
|
195
|
+
/** Output only. Type of the engine used to actuate the blueprint. e.g. terraform, helm etc. */
|
|
196
|
+
engine?: string;
|
|
197
|
+
}
|
|
198
|
+
export declare const Blueprint: Schema.Schema<Blueprint>;
|
|
199
|
+
export interface Release {
|
|
200
|
+
/** Optional. Set of requirements to be fulfilled on the Unit when using this Release. */
|
|
201
|
+
releaseRequirements?: ReleaseRequirements;
|
|
202
|
+
/** Optional. Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations */
|
|
203
|
+
annotations?: Record<string, string>;
|
|
204
|
+
/** Optional. Output only. List of output variables declared on the blueprint and can be present with their values on the unit status */
|
|
205
|
+
outputVariables?: Array<UnitVariable>;
|
|
206
|
+
/** Output only. The timestamp when the resource was created. */
|
|
207
|
+
createTime?: string;
|
|
208
|
+
/** Optional. The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. */
|
|
209
|
+
labels?: Record<string, string>;
|
|
210
|
+
/** Optional. Blueprints are OCI Images that contain all of the artifacts needed to provision a unit. */
|
|
211
|
+
blueprint?: Blueprint;
|
|
212
|
+
/** Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. */
|
|
213
|
+
updateTime?: string;
|
|
214
|
+
/** Required. Immutable. Reference to the UnitKind this Release corresponds to (required and immutable once created). */
|
|
215
|
+
unitKind?: string;
|
|
216
|
+
/** Optional. Output only. List of input variables declared on the blueprint and can be present with their values on the unit spec */
|
|
217
|
+
inputVariables?: Array<UnitVariable>;
|
|
218
|
+
/** Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. */
|
|
219
|
+
etag?: string;
|
|
220
|
+
/** Optional. Mapping of input variables to default values. Maximum 100 */
|
|
221
|
+
inputVariableDefaults?: Array<UnitVariable>;
|
|
222
|
+
/** Output only. The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. */
|
|
223
|
+
uid?: string;
|
|
224
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/releases/{release}" */
|
|
225
|
+
name?: string;
|
|
226
|
+
}
|
|
227
|
+
export declare const Release: Schema.Schema<Release>;
|
|
228
|
+
export interface UnitDependency {
|
|
229
|
+
/** Output only. A reference to the Unit object. */
|
|
230
|
+
unit?: string;
|
|
231
|
+
/** Output only. Alias for the name of the dependency. */
|
|
232
|
+
alias?: string;
|
|
233
|
+
}
|
|
234
|
+
export declare const UnitDependency: Schema.Schema<UnitDependency>;
|
|
235
|
+
export interface ListSaasResponse {
|
|
236
|
+
/** Locations that could not be reached. */
|
|
237
|
+
unreachable?: Array<string>;
|
|
238
|
+
/** The resulting saas. */
|
|
239
|
+
saas?: Array<Saas>;
|
|
240
|
+
/** If present, the next page token can be provided to a subsequent ListSaas call to list the next page. If empty, there are no more pages. */
|
|
241
|
+
nextPageToken?: string;
|
|
242
|
+
}
|
|
243
|
+
export declare const ListSaasResponse: Schema.Schema<ListSaasResponse>;
|
|
244
|
+
export interface RunRolloutActionParams {
|
|
245
|
+
/** Required. If true, the rollout will retry failed operations when resumed. This is applicable only the current state of the Rollout is PAUSED and the requested action is RUN. */
|
|
246
|
+
retryFailedOperations?: boolean;
|
|
247
|
+
}
|
|
248
|
+
export declare const RunRolloutActionParams: Schema.Schema<RunRolloutActionParams>;
|
|
249
|
+
export interface RolloutControl {
|
|
250
|
+
/** Optional. Parameters for the RUN action. It is an error to specify this if the RolloutAction is not set to RUN. By default, the rollout will retry failed operations when resumed. */
|
|
251
|
+
runParams?: RunRolloutActionParams;
|
|
252
|
+
/** Required. Action to be performed on the Rollout. The default behavior is to run the rollout until it naturally reaches a terminal state. */
|
|
253
|
+
action?: "ROLLOUT_ACTION_UNSPECIFIED" | "ROLLOUT_ACTION_RUN" | "ROLLOUT_ACTION_PAUSE" | "ROLLOUT_ACTION_CANCEL" | (string & {});
|
|
254
|
+
}
|
|
255
|
+
export declare const RolloutControl: Schema.Schema<RolloutControl>;
|
|
256
|
+
export interface Aggregate {
|
|
257
|
+
/** Required. Group by which to aggregate. */
|
|
258
|
+
group?: string;
|
|
259
|
+
/** Required. Number of records in the group. */
|
|
260
|
+
count?: number;
|
|
261
|
+
}
|
|
262
|
+
export declare const Aggregate: Schema.Schema<Aggregate>;
|
|
263
|
+
export interface RolloutStats {
|
|
264
|
+
/** Optional. Output only. Unordered list. A breakdown of the progress of operations triggered by the rollout. Provides a count of Operations by their state. This can be used to determine the number of units which have been updated, or are scheduled to be updated. There will be at most one entry per group. Possible values for operation groups are: - "SCHEDULED" - "PENDING" - "RUNNING" - "SUCCEEDED" - "FAILED" - "CANCELLED" */
|
|
265
|
+
operationsByState?: Array<Aggregate>;
|
|
266
|
+
}
|
|
267
|
+
export declare const RolloutStats: Schema.Schema<RolloutStats>;
|
|
268
|
+
export interface Rollout {
|
|
269
|
+
/** Optional. CEL(https://github.com/google/cel-spec) formatted filter string against Unit. The filter will be applied to determine the eligible unit population. This filter can only reduce, but not expand the scope of the rollout. If not provided, the unit_filter from the RolloutKind will be used. */
|
|
270
|
+
unitFilter?: string;
|
|
271
|
+
/** Optional. Output only. The time when the rollout transitioned into its current state. */
|
|
272
|
+
stateTransitionTime?: string;
|
|
273
|
+
/** Optional. Requested change to the execution of this rollout. Default RolloutControl.action is ROLLOUT_ACTION_RUN meaning the rollout will be executed to completion while progressing through all natural Rollout States (such as RUNNING -> SUCCEEDED or RUNNING -> FAILED). Requests can only be made when the Rollout is in a non-terminal state. */
|
|
274
|
+
control?: RolloutControl;
|
|
275
|
+
/** Optional. The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. */
|
|
276
|
+
labels?: Record<string, string>;
|
|
277
|
+
/** Optional. Immutable. Name of the Release that gets rolled out to target Units. Required if no other type of release is specified. */
|
|
278
|
+
release?: string;
|
|
279
|
+
/** Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. */
|
|
280
|
+
etag?: string;
|
|
281
|
+
/** Optional. Output only. Output only snapshot of the effective unit filter at Rollout start time. Contains a CEL(https://github.com/google/cel-spec) expression consisting of a conjunction of Rollout.unit_filter and RolloutKind.unit_filter. This field captures the filter applied by the Rollout to determine the Unit population. If the associated RolloutKind's unit_filter is modified after the rollout is started, it will not be updated here. */
|
|
282
|
+
effectiveUnitFilter?: string;
|
|
283
|
+
/** Optional. Output only. The direct parent rollout that this rollout is stemming from. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/rollouts/{rollout_id}" */
|
|
284
|
+
parentRollout?: string;
|
|
285
|
+
/** Optional. Immutable. Name of the RolloutKind this rollout is stemming from and adhering to. */
|
|
286
|
+
rolloutKind?: string;
|
|
287
|
+
/** Optional. Output only. The time when the rollout finished execution (regardless of success, failure, or cancellation). Will be empty if the rollout hasn't finished yet. Once set, the rollout is in terminal state and all the results are final. */
|
|
288
|
+
endTime?: string;
|
|
289
|
+
/** Output only. The timestamp when the resource was created. */
|
|
290
|
+
createTime?: string;
|
|
291
|
+
/** Output only. Human readable message indicating details about the last state transition. */
|
|
292
|
+
stateMessage?: string;
|
|
293
|
+
/** Optional. Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations */
|
|
294
|
+
annotations?: Record<string, string>;
|
|
295
|
+
/** Optional. Output only. The time when the rollout started executing. Will be empty if the rollout hasn't started yet. */
|
|
296
|
+
startTime?: string;
|
|
297
|
+
/** Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. */
|
|
298
|
+
updateTime?: string;
|
|
299
|
+
/** Optional. Output only. Details about the progress of the rollout. */
|
|
300
|
+
stats?: RolloutStats;
|
|
301
|
+
/** Optional. Output only. The root rollout that this rollout is stemming from. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/rollouts/{rollout_id}" */
|
|
302
|
+
rootRollout?: string;
|
|
303
|
+
/** Output only. The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. */
|
|
304
|
+
uid?: string;
|
|
305
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/rollout/{rollout_id}" */
|
|
306
|
+
name?: string;
|
|
307
|
+
/** Output only. The timestamp when the resource was marked for deletion (deletion is an asynchronous operation). */
|
|
308
|
+
deleteTime?: string;
|
|
309
|
+
/** Output only. Current state of the rollout. */
|
|
310
|
+
state?: "ROLLOUT_STATE_UNSPECIFIED" | "ROLLOUT_STATE_RUNNING" | "ROLLOUT_STATE_PAUSED" | "ROLLOUT_STATE_SUCCEEDED" | "ROLLOUT_STATE_FAILED" | "ROLLOUT_STATE_CANCELLED" | "ROLLOUT_STATE_WAITING" | "ROLLOUT_STATE_CANCELLING" | "ROLLOUT_STATE_RESUMING" | "ROLLOUT_STATE_PAUSING" | (string & {});
|
|
311
|
+
/** Optional. The strategy used for executing this Rollout. This strategy will override whatever strategy is specified in the RolloutKind. If not specified on creation, the strategy from RolloutKind will be used. There are two supported values strategies which are used to control - "Google.Cloud.Simple.AllAtOnce" - "Google.Cloud.Simple.OneLocationAtATime" A rollout with one of these simple strategies will rollout across all locations defined in the targeted UnitKind's Saas Locations. */
|
|
312
|
+
rolloutOrchestrationStrategy?: string;
|
|
313
|
+
}
|
|
314
|
+
export declare const Rollout: Schema.Schema<Rollout>;
|
|
315
|
+
export interface ListRolloutsResponse {
|
|
316
|
+
/** If present, the next page token can be provided to a subsequent ListRollouts call to list the next page. If empty, there are no more pages. */
|
|
317
|
+
nextPageToken?: string;
|
|
318
|
+
/** Locations that could not be reached. */
|
|
319
|
+
unreachable?: Array<string>;
|
|
320
|
+
/** The resulting rollouts. */
|
|
321
|
+
rollouts?: Array<Rollout>;
|
|
322
|
+
}
|
|
323
|
+
export declare const ListRolloutsResponse: Schema.Schema<ListRolloutsResponse>;
|
|
324
|
+
export interface Dependency {
|
|
325
|
+
/** Required. Immutable. The unit kind of the dependency. */
|
|
326
|
+
unitKind?: string;
|
|
327
|
+
/** Required. An alias for the dependency. Used for input variable mapping. */
|
|
328
|
+
alias?: string;
|
|
329
|
+
}
|
|
330
|
+
export declare const Dependency: Schema.Schema<Dependency>;
|
|
331
|
+
export interface Empty {
|
|
332
|
+
}
|
|
333
|
+
export declare const Empty: Schema.Schema<Empty>;
|
|
334
|
+
export interface ToMapping {
|
|
335
|
+
/** Required. Name of the inputVariable on the dependency */
|
|
336
|
+
inputVariable?: string;
|
|
337
|
+
/** Required. Alias of the dependency that the inputVariable will pass its value to */
|
|
338
|
+
dependency?: string;
|
|
339
|
+
/** Optional. Tells SaaS Runtime if this mapping should be used during lookup or not */
|
|
340
|
+
ignoreForLookup?: boolean;
|
|
341
|
+
}
|
|
342
|
+
export declare const ToMapping: Schema.Schema<ToMapping>;
|
|
343
|
+
export interface FromMapping {
|
|
344
|
+
/** Required. Alias of the dependency that the outputVariable will pass its value to */
|
|
345
|
+
dependency?: string;
|
|
346
|
+
/** Required. Name of the outputVariable on the dependency */
|
|
347
|
+
outputVariable?: string;
|
|
348
|
+
}
|
|
349
|
+
export declare const FromMapping: Schema.Schema<FromMapping>;
|
|
350
|
+
export interface VariableMapping {
|
|
351
|
+
/** Required. name of the variable */
|
|
352
|
+
variable?: string;
|
|
353
|
+
/** Optional. Input variables whose values will be passed on to dependencies. */
|
|
354
|
+
to?: ToMapping;
|
|
355
|
+
/** Optional. Output variables which will get their values from dependencies */
|
|
356
|
+
from?: FromMapping;
|
|
357
|
+
}
|
|
358
|
+
export declare const VariableMapping: Schema.Schema<VariableMapping>;
|
|
359
|
+
export interface CancelOperationRequest {
|
|
360
|
+
}
|
|
361
|
+
export declare const CancelOperationRequest: Schema.Schema<CancelOperationRequest>;
|
|
362
|
+
export interface UnitKind {
|
|
363
|
+
/** Optional. A reference to the Release object to use as default for creating new units of this UnitKind (optional). If not specified, a new unit must explicitly reference which release to use for its creation. */
|
|
364
|
+
defaultRelease?: string;
|
|
365
|
+
/** Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. */
|
|
366
|
+
updateTime?: string;
|
|
367
|
+
/** Optional. Immutable. List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. */
|
|
368
|
+
dependencies?: Array<Dependency>;
|
|
369
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}" */
|
|
370
|
+
name?: string;
|
|
371
|
+
/** Output only. The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. */
|
|
372
|
+
uid?: string;
|
|
373
|
+
/** Optional. List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. */
|
|
374
|
+
outputVariableMappings?: Array<VariableMapping>;
|
|
375
|
+
/** Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. */
|
|
376
|
+
etag?: string;
|
|
377
|
+
/** Optional. List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. */
|
|
378
|
+
inputVariableMappings?: Array<VariableMapping>;
|
|
379
|
+
/** Required. Immutable. A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set. */
|
|
380
|
+
saas?: string;
|
|
381
|
+
/** Optional. Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations */
|
|
382
|
+
annotations?: Record<string, string>;
|
|
383
|
+
/** Output only. The timestamp when the resource was created. */
|
|
384
|
+
createTime?: string;
|
|
385
|
+
/** Optional. The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. */
|
|
386
|
+
labels?: Record<string, string>;
|
|
387
|
+
}
|
|
388
|
+
export declare const UnitKind: Schema.Schema<UnitKind>;
|
|
389
|
+
export interface ListUnitKindsResponse {
|
|
390
|
+
/** Locations that could not be reached. */
|
|
391
|
+
unreachable?: Array<string>;
|
|
392
|
+
/** The resulting unit kinds. */
|
|
393
|
+
unitKinds?: Array<UnitKind>;
|
|
394
|
+
/** If present, the next page token can be provided to a subsequent ListUnitKinds call to list the next page. If empty, there are no more pages. */
|
|
395
|
+
nextPageToken?: string;
|
|
396
|
+
}
|
|
397
|
+
export declare const ListUnitKindsResponse: Schema.Schema<ListUnitKindsResponse>;
|
|
398
|
+
export interface ListLocationsResponse {
|
|
399
|
+
/** A list of locations that matches the specified filter in the request. */
|
|
400
|
+
locations?: Array<GoogleCloudLocationLocation>;
|
|
401
|
+
/** The standard List next-page token. */
|
|
402
|
+
nextPageToken?: string;
|
|
403
|
+
}
|
|
404
|
+
export declare const ListLocationsResponse: Schema.Schema<ListLocationsResponse>;
|
|
405
|
+
export interface MaintenanceSettings {
|
|
406
|
+
/** Optional. If present, it fixes the release on the unit until the given time; i.e. changes to the release field will be rejected. Rollouts should and will also respect this by not requesting an upgrade in the first place. */
|
|
407
|
+
pinnedUntilTime?: string;
|
|
408
|
+
}
|
|
409
|
+
export declare const MaintenanceSettings: Schema.Schema<MaintenanceSettings>;
|
|
410
|
+
export interface Unit {
|
|
411
|
+
/** Optional. The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. */
|
|
412
|
+
labels?: Record<string, string>;
|
|
413
|
+
/** Output only. The timestamp when the resource was created. */
|
|
414
|
+
createTime?: string;
|
|
415
|
+
/** Optional. Output only. Indicates the current input variables deployed by the unit */
|
|
416
|
+
inputVariables?: Array<UnitVariable>;
|
|
417
|
+
/** Optional. Immutable. Indicates whether the Unit life cycle is controlled by the user or by the system. Immutable once created. */
|
|
418
|
+
managementMode?: "MANAGEMENT_MODE_UNSPECIFIED" | "MANAGEMENT_MODE_USER" | "MANAGEMENT_MODE_SYSTEM" | (string & {});
|
|
419
|
+
/** Optional. Output only. If set, indicates the time when the system will start removing the unit. */
|
|
420
|
+
systemCleanupAt?: string;
|
|
421
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/units/{unit}" */
|
|
422
|
+
name?: string;
|
|
423
|
+
/** Optional. Captures requested directives for performing future maintenance on the unit. This includes a request for the unit to skip maintenance for a period of time and remain pinned to its current release as well as controls for postponing maintenance scheduled in future. */
|
|
424
|
+
maintenance?: MaintenanceSettings;
|
|
425
|
+
/** Optional. Output only. Indicates the system managed state of the unit. */
|
|
426
|
+
systemManagedState?: "SYSTEM_MANAGED_STATE_UNSPECIFIED" | "SYSTEM_MANAGED_STATE_ACTIVE" | "SYSTEM_MANAGED_STATE_INACTIVE" | "SYSTEM_MANAGED_STATE_DECOMMISSIONED" | (string & {});
|
|
427
|
+
/** Optional. Output only. List of concurrent UnitOperations that are operating on this Unit. */
|
|
428
|
+
ongoingOperations?: Array<string>;
|
|
429
|
+
/** Optional. Output only. Current lifecycle state of the resource (e.g. if it's being created or ready to use). */
|
|
430
|
+
state?: "UNIT_STATE_UNSPECIFIED" | "UNIT_STATE_NOT_PROVISIONED" | "UNIT_STATE_PROVISIONING" | "UNIT_STATE_UPDATING" | "UNIT_STATE_DEPROVISIONING" | "UNIT_STATE_READY" | "UNIT_STATE_ERROR" | (string & {});
|
|
431
|
+
/** Optional. Output only. The current Release object for this Unit. */
|
|
432
|
+
release?: string;
|
|
433
|
+
/** Optional. Reference to the Saas Tenant resource this unit belongs to. This for example informs the maintenance policies to use for scheduling future updates on a unit. (optional and immutable once created) */
|
|
434
|
+
tenant?: string;
|
|
435
|
+
/** Output only. Indicates whether the resource location satisfies Zone Separation constraints. This is false by default. */
|
|
436
|
+
satisfiesPzs?: boolean;
|
|
437
|
+
/** Optional. Reference to the UnitKind this Unit belongs to. Immutable once set. */
|
|
438
|
+
unitKind?: string;
|
|
439
|
+
/** Optional. Output only. Set of dependencies for this unit. Maximum 10. */
|
|
440
|
+
dependencies?: Array<UnitDependency>;
|
|
441
|
+
/** Optional. Output only. List of scheduled UnitOperations for this unit. */
|
|
442
|
+
scheduledOperations?: Array<string>;
|
|
443
|
+
/** Output only. Indicates whether the resource location satisfies Zone Isolation constraints. This is false by default. */
|
|
444
|
+
satisfiesPzi?: boolean;
|
|
445
|
+
/** Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. */
|
|
446
|
+
etag?: string;
|
|
447
|
+
/** Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. */
|
|
448
|
+
updateTime?: string;
|
|
449
|
+
/** Output only. The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. */
|
|
450
|
+
uid?: string;
|
|
451
|
+
/** Optional. Output only. List of Units that depend on this unit. Unit can only be deprovisioned if this list is empty. Maximum 1000. */
|
|
452
|
+
dependents?: Array<UnitDependency>;
|
|
453
|
+
/** Optional. Output only. List of pending (wait to be executed) UnitOperations for this unit. */
|
|
454
|
+
pendingOperations?: Array<string>;
|
|
455
|
+
/** Optional. Output only. A set of conditions which indicate the various conditions this resource can have. */
|
|
456
|
+
conditions?: Array<UnitCondition>;
|
|
457
|
+
/** Optional. Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations */
|
|
458
|
+
annotations?: Record<string, string>;
|
|
459
|
+
/** Optional. Output only. Set of key/value pairs corresponding to output variables from execution of actuation templates. The variables are declared in actuation configs (e.g in helm chart or terraform) and the values are fetched and returned by the actuation engine upon completion of execution. */
|
|
460
|
+
outputVariables?: Array<UnitVariable>;
|
|
461
|
+
}
|
|
462
|
+
export declare const Unit: Schema.Schema<Unit>;
|
|
463
|
+
export interface Operation {
|
|
464
|
+
/** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
|
|
465
|
+
done?: boolean;
|
|
466
|
+
/** Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. */
|
|
467
|
+
metadata?: Record<string, unknown>;
|
|
468
|
+
/** The error result of the operation in case of failure or cancellation. */
|
|
469
|
+
error?: Status;
|
|
470
|
+
/** The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. */
|
|
471
|
+
name?: string;
|
|
472
|
+
/** The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. */
|
|
473
|
+
response?: Record<string, unknown>;
|
|
474
|
+
}
|
|
475
|
+
export declare const Operation: Schema.Schema<Operation>;
|
|
476
|
+
export interface Tenant {
|
|
477
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/tenants/{tenant}" */
|
|
478
|
+
name?: string;
|
|
479
|
+
/** Required. Immutable. A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. */
|
|
480
|
+
saas?: string;
|
|
481
|
+
/** Optional. The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. */
|
|
482
|
+
labels?: Record<string, string>;
|
|
483
|
+
/** Optional. Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations */
|
|
484
|
+
annotations?: Record<string, string>;
|
|
485
|
+
/** Output only. The timestamp when the resource was created. */
|
|
486
|
+
createTime?: string;
|
|
487
|
+
/** Optional. Immutable. A reference to the consumer resource this SaaS Tenant is representing. The relationship with a consumer resource can be used by SaaS Runtime for retrieving consumer-defined settings and policies such as maintenance policies (using Unified Maintenance Policy API). */
|
|
488
|
+
consumerResource?: string;
|
|
489
|
+
/** Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. */
|
|
490
|
+
updateTime?: string;
|
|
491
|
+
/** Output only. The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. */
|
|
492
|
+
uid?: string;
|
|
493
|
+
/** Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. */
|
|
494
|
+
etag?: string;
|
|
495
|
+
}
|
|
496
|
+
export declare const Tenant: Schema.Schema<Tenant>;
|
|
497
|
+
export interface ListTenantsResponse {
|
|
498
|
+
/** If present, the next page token can be provided to a subsequent ListTenants call to list the next page. If empty, there are no more pages. */
|
|
499
|
+
nextPageToken?: string;
|
|
500
|
+
/** Locations that could not be reached. */
|
|
501
|
+
unreachable?: Array<string>;
|
|
502
|
+
/** The resulting tenants. */
|
|
503
|
+
tenants?: Array<Tenant>;
|
|
504
|
+
}
|
|
505
|
+
export declare const ListTenantsResponse: Schema.Schema<ListTenantsResponse>;
|
|
506
|
+
export interface ListOperationsResponse {
|
|
507
|
+
/** The standard List next-page token. */
|
|
508
|
+
nextPageToken?: string;
|
|
509
|
+
/** A list of operations that matches the specified filter in the request. */
|
|
510
|
+
operations?: Array<Operation>;
|
|
511
|
+
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
|
|
512
|
+
unreachable?: Array<string>;
|
|
513
|
+
}
|
|
514
|
+
export declare const ListOperationsResponse: Schema.Schema<ListOperationsResponse>;
|
|
515
|
+
export interface ListRolloutKindsResponse {
|
|
516
|
+
/** The resulting rollout kinds. */
|
|
517
|
+
rolloutKinds?: Array<RolloutKind>;
|
|
518
|
+
/** If present, the next page token can be provided to a subsequent ListRolloutKinds call to list the next page. If empty, there are no more pages. */
|
|
519
|
+
nextPageToken?: string;
|
|
520
|
+
/** Locations that could not be reached. */
|
|
521
|
+
unreachable?: Array<string>;
|
|
522
|
+
}
|
|
523
|
+
export declare const ListRolloutKindsResponse: Schema.Schema<ListRolloutKindsResponse>;
|
|
524
|
+
export interface ListUnitsResponse {
|
|
525
|
+
/** If present, the next page token can be provided to a subsequent ListUnits call to list the next page. If empty, there are no more pages. */
|
|
526
|
+
nextPageToken?: string;
|
|
527
|
+
/** The resulting units. */
|
|
528
|
+
units?: Array<Unit>;
|
|
529
|
+
/** Locations that could not be reached. */
|
|
530
|
+
unreachable?: Array<string>;
|
|
531
|
+
}
|
|
532
|
+
export declare const ListUnitsResponse: Schema.Schema<ListUnitsResponse>;
|
|
533
|
+
export interface ListUnitOperationsResponse {
|
|
534
|
+
/** If present, the next page token can be provided to a subsequent ListUnitOperations call to list the next page. If empty, there are no more pages. */
|
|
535
|
+
nextPageToken?: string;
|
|
536
|
+
/** Locations that could not be reached. */
|
|
537
|
+
unreachable?: Array<string>;
|
|
538
|
+
/** The resulting unit operations. */
|
|
539
|
+
unitOperations?: Array<UnitOperation>;
|
|
540
|
+
}
|
|
541
|
+
export declare const ListUnitOperationsResponse: Schema.Schema<ListUnitOperationsResponse>;
|
|
542
|
+
export interface ListReleasesResponse {
|
|
543
|
+
/** The resulting releases. */
|
|
544
|
+
releases?: Array<Release>;
|
|
545
|
+
/** If present, the next page token can be provided to a subsequent ListReleases call to list the next page. If empty, there are no more pages. */
|
|
546
|
+
nextPageToken?: string;
|
|
547
|
+
/** Locations that could not be reached. */
|
|
548
|
+
unreachable?: Array<string>;
|
|
549
|
+
}
|
|
550
|
+
export declare const ListReleasesResponse: Schema.Schema<ListReleasesResponse>;
|
|
551
|
+
export interface GetOperationsRequest {
|
|
552
|
+
/** The name of the operation resource. */
|
|
553
|
+
name: string;
|
|
554
|
+
}
|
|
555
|
+
export declare const GetOperationsRequest: Schema.Schema<GetOperationsRequest>;
|
|
556
|
+
export type GetOperationsResponse = Operation;
|
|
557
|
+
export declare const GetOperationsResponse: Schema.Schema<Operation>;
|
|
558
|
+
export type GetOperationsError = DefaultErrors;
|
|
559
|
+
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
560
|
+
export declare const getOperations: API.OperationMethod<GetOperationsRequest, GetOperationsResponse, GetOperationsError, Credentials | HttpClient.HttpClient>;
|
|
561
|
+
export interface CancelOperationsRequest {
|
|
562
|
+
/** The name of the operation resource to be cancelled. */
|
|
563
|
+
name: string;
|
|
564
|
+
/** Request body */
|
|
565
|
+
body?: CancelOperationRequest;
|
|
566
|
+
}
|
|
567
|
+
export declare const CancelOperationsRequest: Schema.Schema<CancelOperationsRequest>;
|
|
568
|
+
export type CancelOperationsResponse = Empty;
|
|
569
|
+
export declare const CancelOperationsResponse: Schema.Schema<Empty>;
|
|
570
|
+
export type CancelOperationsError = DefaultErrors;
|
|
571
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
572
|
+
export declare const cancelOperations: API.OperationMethod<CancelOperationsRequest, CancelOperationsResponse, CancelOperationsError, Credentials | HttpClient.HttpClient>;
|
|
573
|
+
export interface DeleteOperationsRequest {
|
|
574
|
+
/** The name of the operation resource to be deleted. */
|
|
575
|
+
name: string;
|
|
576
|
+
}
|
|
577
|
+
export declare const DeleteOperationsRequest: Schema.Schema<DeleteOperationsRequest>;
|
|
578
|
+
export type DeleteOperationsResponse = Empty;
|
|
579
|
+
export declare const DeleteOperationsResponse: Schema.Schema<Empty>;
|
|
580
|
+
export type DeleteOperationsError = DefaultErrors;
|
|
581
|
+
/** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
|
|
582
|
+
export declare const deleteOperations: API.OperationMethod<DeleteOperationsRequest, DeleteOperationsResponse, DeleteOperationsError, Credentials | HttpClient.HttpClient>;
|
|
583
|
+
export interface ListOperationsRequest {
|
|
584
|
+
/** The standard list page size. */
|
|
585
|
+
pageSize?: number;
|
|
586
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
587
|
+
returnPartialSuccess?: boolean;
|
|
588
|
+
/** The name of the operation's parent resource. */
|
|
589
|
+
name: string;
|
|
590
|
+
/** The standard list page token. */
|
|
591
|
+
pageToken?: string;
|
|
592
|
+
/** The standard list filter. */
|
|
593
|
+
filter?: string;
|
|
594
|
+
}
|
|
595
|
+
export declare const ListOperationsRequest: Schema.Schema<ListOperationsRequest>;
|
|
596
|
+
export type ListOperationsResponse_Op = ListOperationsResponse;
|
|
597
|
+
export declare const ListOperationsResponse_Op: Schema.Schema<ListOperationsResponse>;
|
|
598
|
+
export type ListOperationsError = DefaultErrors;
|
|
599
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
600
|
+
export declare const listOperations: API.PaginatedOperationMethod<ListOperationsRequest, ListOperationsResponse_Op, ListOperationsError, Credentials | HttpClient.HttpClient>;
|
|
601
|
+
export interface ListProjectsLocationsRequest {
|
|
602
|
+
/** A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160). */
|
|
603
|
+
filter?: string;
|
|
604
|
+
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
605
|
+
pageSize?: number;
|
|
606
|
+
/** A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. */
|
|
607
|
+
pageToken?: string;
|
|
608
|
+
/** The resource that owns the locations collection, if applicable. */
|
|
609
|
+
name: string;
|
|
610
|
+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
611
|
+
extraLocationTypes?: string[];
|
|
612
|
+
}
|
|
613
|
+
export declare const ListProjectsLocationsRequest: Schema.Schema<ListProjectsLocationsRequest>;
|
|
614
|
+
export type ListProjectsLocationsResponse = ListLocationsResponse;
|
|
615
|
+
export declare const ListProjectsLocationsResponse: Schema.Schema<ListLocationsResponse>;
|
|
616
|
+
export type ListProjectsLocationsError = DefaultErrors;
|
|
617
|
+
/** 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. */
|
|
618
|
+
export declare const listProjectsLocations: API.PaginatedOperationMethod<ListProjectsLocationsRequest, ListProjectsLocationsResponse, ListProjectsLocationsError, Credentials | HttpClient.HttpClient>;
|
|
619
|
+
export interface GetProjectsLocationsRequest {
|
|
620
|
+
/** Resource name for the location. */
|
|
621
|
+
name: string;
|
|
622
|
+
}
|
|
623
|
+
export declare const GetProjectsLocationsRequest: Schema.Schema<GetProjectsLocationsRequest>;
|
|
624
|
+
export type GetProjectsLocationsResponse = GoogleCloudLocationLocation;
|
|
625
|
+
export declare const GetProjectsLocationsResponse: Schema.Schema<GoogleCloudLocationLocation>;
|
|
626
|
+
export type GetProjectsLocationsError = DefaultErrors;
|
|
627
|
+
/** Gets information about a location. */
|
|
628
|
+
export declare const getProjectsLocations: API.OperationMethod<GetProjectsLocationsRequest, GetProjectsLocationsResponse, GetProjectsLocationsError, Credentials | HttpClient.HttpClient>;
|
|
629
|
+
export interface PatchProjectsLocationsRolloutKindsRequest {
|
|
630
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/rolloutKinds/{rollout_kind_id}" */
|
|
631
|
+
name: string;
|
|
632
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
633
|
+
validateOnly?: boolean;
|
|
634
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
635
|
+
requestId?: string;
|
|
636
|
+
/** Field mask is used to specify the fields to be overwritten in the RolloutKind resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields in the RolloutKind will be overwritten. */
|
|
637
|
+
updateMask?: string;
|
|
638
|
+
/** Request body */
|
|
639
|
+
body?: RolloutKind;
|
|
640
|
+
}
|
|
641
|
+
export declare const PatchProjectsLocationsRolloutKindsRequest: Schema.Schema<PatchProjectsLocationsRolloutKindsRequest>;
|
|
642
|
+
export type PatchProjectsLocationsRolloutKindsResponse = RolloutKind;
|
|
643
|
+
export declare const PatchProjectsLocationsRolloutKindsResponse: Schema.Schema<RolloutKind>;
|
|
644
|
+
export type PatchProjectsLocationsRolloutKindsError = DefaultErrors;
|
|
645
|
+
/** Update a single rollout kind. */
|
|
646
|
+
export declare const patchProjectsLocationsRolloutKinds: API.OperationMethod<PatchProjectsLocationsRolloutKindsRequest, PatchProjectsLocationsRolloutKindsResponse, PatchProjectsLocationsRolloutKindsError, Credentials | HttpClient.HttpClient>;
|
|
647
|
+
export interface ListProjectsLocationsRolloutKindsRequest {
|
|
648
|
+
/** Order results as specified in https://google.aip.dev/132. */
|
|
649
|
+
orderBy?: string;
|
|
650
|
+
/** Required. The parent of the rollout kind. */
|
|
651
|
+
parent: string;
|
|
652
|
+
/** Filter the list as specified in https://google.aip.dev/160. */
|
|
653
|
+
filter?: string;
|
|
654
|
+
/** The page token: If the next_page_token from a previous response is provided, this request will send the subsequent page. */
|
|
655
|
+
pageToken?: string;
|
|
656
|
+
/** The maximum number of rollout kinds to send per page. */
|
|
657
|
+
pageSize?: number;
|
|
658
|
+
}
|
|
659
|
+
export declare const ListProjectsLocationsRolloutKindsRequest: Schema.Schema<ListProjectsLocationsRolloutKindsRequest>;
|
|
660
|
+
export type ListProjectsLocationsRolloutKindsResponse = ListRolloutKindsResponse;
|
|
661
|
+
export declare const ListProjectsLocationsRolloutKindsResponse: Schema.Schema<ListRolloutKindsResponse>;
|
|
662
|
+
export type ListProjectsLocationsRolloutKindsError = DefaultErrors;
|
|
663
|
+
/** Retrieve a collection of rollout kinds. */
|
|
664
|
+
export declare const listProjectsLocationsRolloutKinds: API.PaginatedOperationMethod<ListProjectsLocationsRolloutKindsRequest, ListProjectsLocationsRolloutKindsResponse, ListProjectsLocationsRolloutKindsError, Credentials | HttpClient.HttpClient>;
|
|
665
|
+
export interface GetProjectsLocationsRolloutKindsRequest {
|
|
666
|
+
/** Required. The resource name of the resource within a service. */
|
|
667
|
+
name: string;
|
|
668
|
+
}
|
|
669
|
+
export declare const GetProjectsLocationsRolloutKindsRequest: Schema.Schema<GetProjectsLocationsRolloutKindsRequest>;
|
|
670
|
+
export type GetProjectsLocationsRolloutKindsResponse = RolloutKind;
|
|
671
|
+
export declare const GetProjectsLocationsRolloutKindsResponse: Schema.Schema<RolloutKind>;
|
|
672
|
+
export type GetProjectsLocationsRolloutKindsError = DefaultErrors;
|
|
673
|
+
/** Retrieve a single rollout kind. */
|
|
674
|
+
export declare const getProjectsLocationsRolloutKinds: API.OperationMethod<GetProjectsLocationsRolloutKindsRequest, GetProjectsLocationsRolloutKindsResponse, GetProjectsLocationsRolloutKindsError, Credentials | HttpClient.HttpClient>;
|
|
675
|
+
export interface CreateProjectsLocationsRolloutKindsRequest {
|
|
676
|
+
/** Required. The ID value for the new rollout kind. */
|
|
677
|
+
rolloutKindId?: string;
|
|
678
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
679
|
+
requestId?: string;
|
|
680
|
+
/** Required. The parent of the rollout kind. */
|
|
681
|
+
parent: string;
|
|
682
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
683
|
+
validateOnly?: boolean;
|
|
684
|
+
/** Request body */
|
|
685
|
+
body?: RolloutKind;
|
|
686
|
+
}
|
|
687
|
+
export declare const CreateProjectsLocationsRolloutKindsRequest: Schema.Schema<CreateProjectsLocationsRolloutKindsRequest>;
|
|
688
|
+
export type CreateProjectsLocationsRolloutKindsResponse = RolloutKind;
|
|
689
|
+
export declare const CreateProjectsLocationsRolloutKindsResponse: Schema.Schema<RolloutKind>;
|
|
690
|
+
export type CreateProjectsLocationsRolloutKindsError = DefaultErrors;
|
|
691
|
+
/** Create a new rollout kind. */
|
|
692
|
+
export declare const createProjectsLocationsRolloutKinds: API.OperationMethod<CreateProjectsLocationsRolloutKindsRequest, CreateProjectsLocationsRolloutKindsResponse, CreateProjectsLocationsRolloutKindsError, Credentials | HttpClient.HttpClient>;
|
|
693
|
+
export interface DeleteProjectsLocationsRolloutKindsRequest {
|
|
694
|
+
/** The etag known to the client for the expected state of the rollout kind. This is used with state-changing methods to prevent accidental overwrites when multiple user agents might be acting in parallel on the same resource. An etag wildcard provide optimistic concurrency based on the expected existence of the rollout kind. The Any wildcard (`*`) requires that the resource must already exists, and the Not Any wildcard (`!*`) requires that it must not. */
|
|
695
|
+
etag?: string;
|
|
696
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
697
|
+
requestId?: string;
|
|
698
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
699
|
+
validateOnly?: boolean;
|
|
700
|
+
/** Required. The resource name of the resource within a service. */
|
|
701
|
+
name: string;
|
|
702
|
+
}
|
|
703
|
+
export declare const DeleteProjectsLocationsRolloutKindsRequest: Schema.Schema<DeleteProjectsLocationsRolloutKindsRequest>;
|
|
704
|
+
export type DeleteProjectsLocationsRolloutKindsResponse = Empty;
|
|
705
|
+
export declare const DeleteProjectsLocationsRolloutKindsResponse: Schema.Schema<Empty>;
|
|
706
|
+
export type DeleteProjectsLocationsRolloutKindsError = DefaultErrors;
|
|
707
|
+
/** Delete a single rollout kind. */
|
|
708
|
+
export declare const deleteProjectsLocationsRolloutKinds: API.OperationMethod<DeleteProjectsLocationsRolloutKindsRequest, DeleteProjectsLocationsRolloutKindsResponse, DeleteProjectsLocationsRolloutKindsError, Credentials | HttpClient.HttpClient>;
|
|
709
|
+
export interface PatchProjectsLocationsUnitsRequest {
|
|
710
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
711
|
+
requestId?: string;
|
|
712
|
+
/** Field mask is used to specify the fields to be overwritten in the Unit resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields in the Unit will be overwritten. */
|
|
713
|
+
updateMask?: string;
|
|
714
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
715
|
+
validateOnly?: boolean;
|
|
716
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/units/{unit}" */
|
|
717
|
+
name: string;
|
|
718
|
+
/** Request body */
|
|
719
|
+
body?: Unit;
|
|
720
|
+
}
|
|
721
|
+
export declare const PatchProjectsLocationsUnitsRequest: Schema.Schema<PatchProjectsLocationsUnitsRequest>;
|
|
722
|
+
export type PatchProjectsLocationsUnitsResponse = Unit;
|
|
723
|
+
export declare const PatchProjectsLocationsUnitsResponse: Schema.Schema<Unit>;
|
|
724
|
+
export type PatchProjectsLocationsUnitsError = DefaultErrors;
|
|
725
|
+
/** Update a single unit. */
|
|
726
|
+
export declare const patchProjectsLocationsUnits: API.OperationMethod<PatchProjectsLocationsUnitsRequest, PatchProjectsLocationsUnitsResponse, PatchProjectsLocationsUnitsError, Credentials | HttpClient.HttpClient>;
|
|
727
|
+
export interface DeleteProjectsLocationsUnitsRequest {
|
|
728
|
+
/** Required. The resource name of the resource within a service. */
|
|
729
|
+
name: string;
|
|
730
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
731
|
+
validateOnly?: boolean;
|
|
732
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
733
|
+
requestId?: string;
|
|
734
|
+
/** The etag known to the client for the expected state of the unit. This is used with state-changing methods to prevent accidental overwrites when multiple user agents might be acting in parallel on the same resource. An etag wildcard provide optimistic concurrency based on the expected existence of the unit. The Any wildcard (`*`) requires that the resource must already exists, and the Not Any wildcard (`!*`) requires that it must not. */
|
|
735
|
+
etag?: string;
|
|
736
|
+
}
|
|
737
|
+
export declare const DeleteProjectsLocationsUnitsRequest: Schema.Schema<DeleteProjectsLocationsUnitsRequest>;
|
|
738
|
+
export type DeleteProjectsLocationsUnitsResponse = Empty;
|
|
739
|
+
export declare const DeleteProjectsLocationsUnitsResponse: Schema.Schema<Empty>;
|
|
740
|
+
export type DeleteProjectsLocationsUnitsError = DefaultErrors;
|
|
741
|
+
/** Delete a single unit. */
|
|
742
|
+
export declare const deleteProjectsLocationsUnits: API.OperationMethod<DeleteProjectsLocationsUnitsRequest, DeleteProjectsLocationsUnitsResponse, DeleteProjectsLocationsUnitsError, Credentials | HttpClient.HttpClient>;
|
|
743
|
+
export interface GetProjectsLocationsUnitsRequest {
|
|
744
|
+
/** Required. The resource name of the resource within a service. */
|
|
745
|
+
name: string;
|
|
746
|
+
}
|
|
747
|
+
export declare const GetProjectsLocationsUnitsRequest: Schema.Schema<GetProjectsLocationsUnitsRequest>;
|
|
748
|
+
export type GetProjectsLocationsUnitsResponse = Unit;
|
|
749
|
+
export declare const GetProjectsLocationsUnitsResponse: Schema.Schema<Unit>;
|
|
750
|
+
export type GetProjectsLocationsUnitsError = DefaultErrors;
|
|
751
|
+
/** Retrieve a single unit. */
|
|
752
|
+
export declare const getProjectsLocationsUnits: API.OperationMethod<GetProjectsLocationsUnitsRequest, GetProjectsLocationsUnitsResponse, GetProjectsLocationsUnitsError, Credentials | HttpClient.HttpClient>;
|
|
753
|
+
export interface ListProjectsLocationsUnitsRequest {
|
|
754
|
+
/** Filter the list as specified in https://google.aip.dev/160. */
|
|
755
|
+
filter?: string;
|
|
756
|
+
/** The maximum number of units to send per page. */
|
|
757
|
+
pageSize?: number;
|
|
758
|
+
/** Required. The parent of the unit. */
|
|
759
|
+
parent: string;
|
|
760
|
+
/** Order results as specified in https://google.aip.dev/132. */
|
|
761
|
+
orderBy?: string;
|
|
762
|
+
/** The page token: If the next_page_token from a previous response is provided, this request will send the subsequent page. */
|
|
763
|
+
pageToken?: string;
|
|
764
|
+
}
|
|
765
|
+
export declare const ListProjectsLocationsUnitsRequest: Schema.Schema<ListProjectsLocationsUnitsRequest>;
|
|
766
|
+
export type ListProjectsLocationsUnitsResponse = ListUnitsResponse;
|
|
767
|
+
export declare const ListProjectsLocationsUnitsResponse: Schema.Schema<ListUnitsResponse>;
|
|
768
|
+
export type ListProjectsLocationsUnitsError = DefaultErrors;
|
|
769
|
+
/** Retrieve a collection of units. */
|
|
770
|
+
export declare const listProjectsLocationsUnits: API.PaginatedOperationMethod<ListProjectsLocationsUnitsRequest, ListProjectsLocationsUnitsResponse, ListProjectsLocationsUnitsError, Credentials | HttpClient.HttpClient>;
|
|
771
|
+
export interface CreateProjectsLocationsUnitsRequest {
|
|
772
|
+
/** Required. The ID value for the new unit. */
|
|
773
|
+
unitId?: string;
|
|
774
|
+
/** Required. The parent of the unit. */
|
|
775
|
+
parent: string;
|
|
776
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
777
|
+
validateOnly?: boolean;
|
|
778
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
779
|
+
requestId?: string;
|
|
780
|
+
/** Request body */
|
|
781
|
+
body?: Unit;
|
|
782
|
+
}
|
|
783
|
+
export declare const CreateProjectsLocationsUnitsRequest: Schema.Schema<CreateProjectsLocationsUnitsRequest>;
|
|
784
|
+
export type CreateProjectsLocationsUnitsResponse = Unit;
|
|
785
|
+
export declare const CreateProjectsLocationsUnitsResponse: Schema.Schema<Unit>;
|
|
786
|
+
export type CreateProjectsLocationsUnitsError = DefaultErrors;
|
|
787
|
+
/** Create a new unit. */
|
|
788
|
+
export declare const createProjectsLocationsUnits: API.OperationMethod<CreateProjectsLocationsUnitsRequest, CreateProjectsLocationsUnitsResponse, CreateProjectsLocationsUnitsError, Credentials | HttpClient.HttpClient>;
|
|
789
|
+
export interface GetProjectsLocationsUnitOperationsRequest {
|
|
790
|
+
/** Required. The resource name of the resource within a service. */
|
|
791
|
+
name: string;
|
|
792
|
+
}
|
|
793
|
+
export declare const GetProjectsLocationsUnitOperationsRequest: Schema.Schema<GetProjectsLocationsUnitOperationsRequest>;
|
|
794
|
+
export type GetProjectsLocationsUnitOperationsResponse = UnitOperation;
|
|
795
|
+
export declare const GetProjectsLocationsUnitOperationsResponse: Schema.Schema<UnitOperation>;
|
|
796
|
+
export type GetProjectsLocationsUnitOperationsError = DefaultErrors;
|
|
797
|
+
/** Retrieve a single unit operation. */
|
|
798
|
+
export declare const getProjectsLocationsUnitOperations: API.OperationMethod<GetProjectsLocationsUnitOperationsRequest, GetProjectsLocationsUnitOperationsResponse, GetProjectsLocationsUnitOperationsError, Credentials | HttpClient.HttpClient>;
|
|
799
|
+
export interface PatchProjectsLocationsUnitOperationsRequest {
|
|
800
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
801
|
+
validateOnly?: boolean;
|
|
802
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
803
|
+
requestId?: string;
|
|
804
|
+
/** Field mask is used to specify the fields to be overwritten in the UnitOperation resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields in the UnitOperation will be overwritten. */
|
|
805
|
+
updateMask?: string;
|
|
806
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitOperations/{unitOperation}" */
|
|
807
|
+
name: string;
|
|
808
|
+
/** Request body */
|
|
809
|
+
body?: UnitOperation;
|
|
810
|
+
}
|
|
811
|
+
export declare const PatchProjectsLocationsUnitOperationsRequest: Schema.Schema<PatchProjectsLocationsUnitOperationsRequest>;
|
|
812
|
+
export type PatchProjectsLocationsUnitOperationsResponse = UnitOperation;
|
|
813
|
+
export declare const PatchProjectsLocationsUnitOperationsResponse: Schema.Schema<UnitOperation>;
|
|
814
|
+
export type PatchProjectsLocationsUnitOperationsError = DefaultErrors;
|
|
815
|
+
/** Update a single unit operation. */
|
|
816
|
+
export declare const patchProjectsLocationsUnitOperations: API.OperationMethod<PatchProjectsLocationsUnitOperationsRequest, PatchProjectsLocationsUnitOperationsResponse, PatchProjectsLocationsUnitOperationsError, Credentials | HttpClient.HttpClient>;
|
|
817
|
+
export interface CreateProjectsLocationsUnitOperationsRequest {
|
|
818
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
819
|
+
validateOnly?: boolean;
|
|
820
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
821
|
+
requestId?: string;
|
|
822
|
+
/** Required. The parent of the unit operation. */
|
|
823
|
+
parent: string;
|
|
824
|
+
/** Required. The ID value for the new unit operation. */
|
|
825
|
+
unitOperationId?: string;
|
|
826
|
+
/** Request body */
|
|
827
|
+
body?: UnitOperation;
|
|
828
|
+
}
|
|
829
|
+
export declare const CreateProjectsLocationsUnitOperationsRequest: Schema.Schema<CreateProjectsLocationsUnitOperationsRequest>;
|
|
830
|
+
export type CreateProjectsLocationsUnitOperationsResponse = UnitOperation;
|
|
831
|
+
export declare const CreateProjectsLocationsUnitOperationsResponse: Schema.Schema<UnitOperation>;
|
|
832
|
+
export type CreateProjectsLocationsUnitOperationsError = DefaultErrors;
|
|
833
|
+
/** Create a new unit operation. */
|
|
834
|
+
export declare const createProjectsLocationsUnitOperations: API.OperationMethod<CreateProjectsLocationsUnitOperationsRequest, CreateProjectsLocationsUnitOperationsResponse, CreateProjectsLocationsUnitOperationsError, Credentials | HttpClient.HttpClient>;
|
|
835
|
+
export interface ListProjectsLocationsUnitOperationsRequest {
|
|
836
|
+
/** Required. The parent of the unit operation. */
|
|
837
|
+
parent: string;
|
|
838
|
+
/** The maximum number of unit operations to send per page. */
|
|
839
|
+
pageSize?: number;
|
|
840
|
+
/** Order results as specified in https://google.aip.dev/132. */
|
|
841
|
+
orderBy?: string;
|
|
842
|
+
/** The page token: If the next_page_token from a previous response is provided, this request will send the subsequent page. */
|
|
843
|
+
pageToken?: string;
|
|
844
|
+
/** Filter the list as specified in https://google.aip.dev/160. */
|
|
845
|
+
filter?: string;
|
|
846
|
+
}
|
|
847
|
+
export declare const ListProjectsLocationsUnitOperationsRequest: Schema.Schema<ListProjectsLocationsUnitOperationsRequest>;
|
|
848
|
+
export type ListProjectsLocationsUnitOperationsResponse = ListUnitOperationsResponse;
|
|
849
|
+
export declare const ListProjectsLocationsUnitOperationsResponse: Schema.Schema<ListUnitOperationsResponse>;
|
|
850
|
+
export type ListProjectsLocationsUnitOperationsError = DefaultErrors;
|
|
851
|
+
/** Retrieve a collection of unit operations. */
|
|
852
|
+
export declare const listProjectsLocationsUnitOperations: API.PaginatedOperationMethod<ListProjectsLocationsUnitOperationsRequest, ListProjectsLocationsUnitOperationsResponse, ListProjectsLocationsUnitOperationsError, Credentials | HttpClient.HttpClient>;
|
|
853
|
+
export interface DeleteProjectsLocationsUnitOperationsRequest {
|
|
854
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
855
|
+
requestId?: string;
|
|
856
|
+
/** The etag known to the client for the expected state of the unit operation. This is used with state-changing methods to prevent accidental overwrites when multiple user agents might be acting in parallel on the same resource. An etag wildcard provide optimistic concurrency based on the expected existence of the unit operation. The Any wildcard (`*`) requires that the resource must already exists, and the Not Any wildcard (`!*`) requires that it must not. */
|
|
857
|
+
etag?: string;
|
|
858
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
859
|
+
validateOnly?: boolean;
|
|
860
|
+
/** Required. The resource name of the resource within a service. */
|
|
861
|
+
name: string;
|
|
862
|
+
}
|
|
863
|
+
export declare const DeleteProjectsLocationsUnitOperationsRequest: Schema.Schema<DeleteProjectsLocationsUnitOperationsRequest>;
|
|
864
|
+
export type DeleteProjectsLocationsUnitOperationsResponse = Empty;
|
|
865
|
+
export declare const DeleteProjectsLocationsUnitOperationsResponse: Schema.Schema<Empty>;
|
|
866
|
+
export type DeleteProjectsLocationsUnitOperationsError = DefaultErrors;
|
|
867
|
+
/** Delete a single unit operation. */
|
|
868
|
+
export declare const deleteProjectsLocationsUnitOperations: API.OperationMethod<DeleteProjectsLocationsUnitOperationsRequest, DeleteProjectsLocationsUnitOperationsResponse, DeleteProjectsLocationsUnitOperationsError, Credentials | HttpClient.HttpClient>;
|
|
869
|
+
export interface CreateProjectsLocationsReleasesRequest {
|
|
870
|
+
/** Required. The ID value for the new release. */
|
|
871
|
+
releaseId?: string;
|
|
872
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
873
|
+
requestId?: string;
|
|
874
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
875
|
+
validateOnly?: boolean;
|
|
876
|
+
/** Required. The parent of the release. */
|
|
877
|
+
parent: string;
|
|
878
|
+
/** Request body */
|
|
879
|
+
body?: Release;
|
|
880
|
+
}
|
|
881
|
+
export declare const CreateProjectsLocationsReleasesRequest: Schema.Schema<CreateProjectsLocationsReleasesRequest>;
|
|
882
|
+
export type CreateProjectsLocationsReleasesResponse = Release;
|
|
883
|
+
export declare const CreateProjectsLocationsReleasesResponse: Schema.Schema<Release>;
|
|
884
|
+
export type CreateProjectsLocationsReleasesError = DefaultErrors;
|
|
885
|
+
/** Create a new release. */
|
|
886
|
+
export declare const createProjectsLocationsReleases: API.OperationMethod<CreateProjectsLocationsReleasesRequest, CreateProjectsLocationsReleasesResponse, CreateProjectsLocationsReleasesError, Credentials | HttpClient.HttpClient>;
|
|
887
|
+
export interface ListProjectsLocationsReleasesRequest {
|
|
888
|
+
/** The page token: If the next_page_token from a previous response is provided, this request will send the subsequent page. */
|
|
889
|
+
pageToken?: string;
|
|
890
|
+
/** The maximum number of releases to send per page. */
|
|
891
|
+
pageSize?: number;
|
|
892
|
+
/** Filter the list as specified in https://google.aip.dev/160. */
|
|
893
|
+
filter?: string;
|
|
894
|
+
/** Required. The parent of the release. */
|
|
895
|
+
parent: string;
|
|
896
|
+
/** Order results as specified in https://google.aip.dev/132. */
|
|
897
|
+
orderBy?: string;
|
|
898
|
+
}
|
|
899
|
+
export declare const ListProjectsLocationsReleasesRequest: Schema.Schema<ListProjectsLocationsReleasesRequest>;
|
|
900
|
+
export type ListProjectsLocationsReleasesResponse = ListReleasesResponse;
|
|
901
|
+
export declare const ListProjectsLocationsReleasesResponse: Schema.Schema<ListReleasesResponse>;
|
|
902
|
+
export type ListProjectsLocationsReleasesError = DefaultErrors;
|
|
903
|
+
/** Retrieve a collection of releases. */
|
|
904
|
+
export declare const listProjectsLocationsReleases: API.PaginatedOperationMethod<ListProjectsLocationsReleasesRequest, ListProjectsLocationsReleasesResponse, ListProjectsLocationsReleasesError, Credentials | HttpClient.HttpClient>;
|
|
905
|
+
export interface GetProjectsLocationsReleasesRequest {
|
|
906
|
+
/** Required. The resource name of the resource within a service. */
|
|
907
|
+
name: string;
|
|
908
|
+
}
|
|
909
|
+
export declare const GetProjectsLocationsReleasesRequest: Schema.Schema<GetProjectsLocationsReleasesRequest>;
|
|
910
|
+
export type GetProjectsLocationsReleasesResponse = Release;
|
|
911
|
+
export declare const GetProjectsLocationsReleasesResponse: Schema.Schema<Release>;
|
|
912
|
+
export type GetProjectsLocationsReleasesError = DefaultErrors;
|
|
913
|
+
/** Retrieve a single release. */
|
|
914
|
+
export declare const getProjectsLocationsReleases: API.OperationMethod<GetProjectsLocationsReleasesRequest, GetProjectsLocationsReleasesResponse, GetProjectsLocationsReleasesError, Credentials | HttpClient.HttpClient>;
|
|
915
|
+
export interface DeleteProjectsLocationsReleasesRequest {
|
|
916
|
+
/** The etag known to the client for the expected state of the release. This is used with state-changing methods to prevent accidental overwrites when multiple user agents might be acting in parallel on the same resource. An etag wildcard provide optimistic concurrency based on the expected existence of the release. The Any wildcard (`*`) requires that the resource must already exists, and the Not Any wildcard (`!*`) requires that it must not. */
|
|
917
|
+
etag?: string;
|
|
918
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
919
|
+
requestId?: string;
|
|
920
|
+
/** Required. The resource name of the resource within a service. */
|
|
921
|
+
name: string;
|
|
922
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
923
|
+
validateOnly?: boolean;
|
|
924
|
+
}
|
|
925
|
+
export declare const DeleteProjectsLocationsReleasesRequest: Schema.Schema<DeleteProjectsLocationsReleasesRequest>;
|
|
926
|
+
export type DeleteProjectsLocationsReleasesResponse = Empty;
|
|
927
|
+
export declare const DeleteProjectsLocationsReleasesResponse: Schema.Schema<Empty>;
|
|
928
|
+
export type DeleteProjectsLocationsReleasesError = DefaultErrors;
|
|
929
|
+
/** Delete a single release. */
|
|
930
|
+
export declare const deleteProjectsLocationsReleases: API.OperationMethod<DeleteProjectsLocationsReleasesRequest, DeleteProjectsLocationsReleasesResponse, DeleteProjectsLocationsReleasesError, Credentials | HttpClient.HttpClient>;
|
|
931
|
+
export interface PatchProjectsLocationsReleasesRequest {
|
|
932
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
933
|
+
requestId?: string;
|
|
934
|
+
/** Field mask is used to specify the fields to be overwritten in the Release resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields in the Release will be overwritten. */
|
|
935
|
+
updateMask?: string;
|
|
936
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
937
|
+
validateOnly?: boolean;
|
|
938
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/releases/{release}" */
|
|
939
|
+
name: string;
|
|
940
|
+
/** Request body */
|
|
941
|
+
body?: Release;
|
|
942
|
+
}
|
|
943
|
+
export declare const PatchProjectsLocationsReleasesRequest: Schema.Schema<PatchProjectsLocationsReleasesRequest>;
|
|
944
|
+
export type PatchProjectsLocationsReleasesResponse = Release;
|
|
945
|
+
export declare const PatchProjectsLocationsReleasesResponse: Schema.Schema<Release>;
|
|
946
|
+
export type PatchProjectsLocationsReleasesError = DefaultErrors;
|
|
947
|
+
/** Update a single release. */
|
|
948
|
+
export declare const patchProjectsLocationsReleases: API.OperationMethod<PatchProjectsLocationsReleasesRequest, PatchProjectsLocationsReleasesResponse, PatchProjectsLocationsReleasesError, Credentials | HttpClient.HttpClient>;
|
|
949
|
+
export interface ListProjectsLocationsUnitKindsRequest {
|
|
950
|
+
/** Filter the list as specified in https://google.aip.dev/160. */
|
|
951
|
+
filter?: string;
|
|
952
|
+
/** Order results as specified in https://google.aip.dev/132. */
|
|
953
|
+
orderBy?: string;
|
|
954
|
+
/** The maximum number of unit kinds to send per page. */
|
|
955
|
+
pageSize?: number;
|
|
956
|
+
/** Required. The parent of the unit kind. */
|
|
957
|
+
parent: string;
|
|
958
|
+
/** The page token: If the next_page_token from a previous response is provided, this request will send the subsequent page. */
|
|
959
|
+
pageToken?: string;
|
|
960
|
+
}
|
|
961
|
+
export declare const ListProjectsLocationsUnitKindsRequest: Schema.Schema<ListProjectsLocationsUnitKindsRequest>;
|
|
962
|
+
export type ListProjectsLocationsUnitKindsResponse = ListUnitKindsResponse;
|
|
963
|
+
export declare const ListProjectsLocationsUnitKindsResponse: Schema.Schema<ListUnitKindsResponse>;
|
|
964
|
+
export type ListProjectsLocationsUnitKindsError = DefaultErrors;
|
|
965
|
+
/** Retrieve a collection of unit kinds. */
|
|
966
|
+
export declare const listProjectsLocationsUnitKinds: API.PaginatedOperationMethod<ListProjectsLocationsUnitKindsRequest, ListProjectsLocationsUnitKindsResponse, ListProjectsLocationsUnitKindsError, Credentials | HttpClient.HttpClient>;
|
|
967
|
+
export interface DeleteProjectsLocationsUnitKindsRequest {
|
|
968
|
+
/** Required. The resource name of the resource within a service. */
|
|
969
|
+
name: string;
|
|
970
|
+
/** The etag known to the client for the expected state of the unit kind. This is used with state-changing methods to prevent accidental overwrites when multiple user agents might be acting in parallel on the same resource. An etag wildcard provide optimistic concurrency based on the expected existence of the unit kind. The Any wildcard (`*`) requires that the resource must already exists, and the Not Any wildcard (`!*`) requires that it must not. */
|
|
971
|
+
etag?: string;
|
|
972
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
973
|
+
requestId?: string;
|
|
974
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
975
|
+
validateOnly?: boolean;
|
|
976
|
+
}
|
|
977
|
+
export declare const DeleteProjectsLocationsUnitKindsRequest: Schema.Schema<DeleteProjectsLocationsUnitKindsRequest>;
|
|
978
|
+
export type DeleteProjectsLocationsUnitKindsResponse = Empty;
|
|
979
|
+
export declare const DeleteProjectsLocationsUnitKindsResponse: Schema.Schema<Empty>;
|
|
980
|
+
export type DeleteProjectsLocationsUnitKindsError = DefaultErrors;
|
|
981
|
+
/** Delete a single unit kind. */
|
|
982
|
+
export declare const deleteProjectsLocationsUnitKinds: API.OperationMethod<DeleteProjectsLocationsUnitKindsRequest, DeleteProjectsLocationsUnitKindsResponse, DeleteProjectsLocationsUnitKindsError, Credentials | HttpClient.HttpClient>;
|
|
983
|
+
export interface CreateProjectsLocationsUnitKindsRequest {
|
|
984
|
+
/** Required. The ID value for the new unit kind. */
|
|
985
|
+
unitKindId?: string;
|
|
986
|
+
/** Required. The parent of the unit kind. */
|
|
987
|
+
parent: string;
|
|
988
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
989
|
+
validateOnly?: boolean;
|
|
990
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
991
|
+
requestId?: string;
|
|
992
|
+
/** Request body */
|
|
993
|
+
body?: UnitKind;
|
|
994
|
+
}
|
|
995
|
+
export declare const CreateProjectsLocationsUnitKindsRequest: Schema.Schema<CreateProjectsLocationsUnitKindsRequest>;
|
|
996
|
+
export type CreateProjectsLocationsUnitKindsResponse = UnitKind;
|
|
997
|
+
export declare const CreateProjectsLocationsUnitKindsResponse: Schema.Schema<UnitKind>;
|
|
998
|
+
export type CreateProjectsLocationsUnitKindsError = DefaultErrors;
|
|
999
|
+
/** Create a new unit kind. */
|
|
1000
|
+
export declare const createProjectsLocationsUnitKinds: API.OperationMethod<CreateProjectsLocationsUnitKindsRequest, CreateProjectsLocationsUnitKindsResponse, CreateProjectsLocationsUnitKindsError, Credentials | HttpClient.HttpClient>;
|
|
1001
|
+
export interface PatchProjectsLocationsUnitKindsRequest {
|
|
1002
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1003
|
+
requestId?: string;
|
|
1004
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}" */
|
|
1005
|
+
name: string;
|
|
1006
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1007
|
+
validateOnly?: boolean;
|
|
1008
|
+
/** Field mask is used to specify the fields to be overwritten in the UnitKind resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields in the UnitKind will be overwritten. */
|
|
1009
|
+
updateMask?: string;
|
|
1010
|
+
/** Request body */
|
|
1011
|
+
body?: UnitKind;
|
|
1012
|
+
}
|
|
1013
|
+
export declare const PatchProjectsLocationsUnitKindsRequest: Schema.Schema<PatchProjectsLocationsUnitKindsRequest>;
|
|
1014
|
+
export type PatchProjectsLocationsUnitKindsResponse = UnitKind;
|
|
1015
|
+
export declare const PatchProjectsLocationsUnitKindsResponse: Schema.Schema<UnitKind>;
|
|
1016
|
+
export type PatchProjectsLocationsUnitKindsError = DefaultErrors;
|
|
1017
|
+
/** Update a single unit kind. */
|
|
1018
|
+
export declare const patchProjectsLocationsUnitKinds: API.OperationMethod<PatchProjectsLocationsUnitKindsRequest, PatchProjectsLocationsUnitKindsResponse, PatchProjectsLocationsUnitKindsError, Credentials | HttpClient.HttpClient>;
|
|
1019
|
+
export interface GetProjectsLocationsUnitKindsRequest {
|
|
1020
|
+
/** Required. The resource name of the resource within a service. */
|
|
1021
|
+
name: string;
|
|
1022
|
+
}
|
|
1023
|
+
export declare const GetProjectsLocationsUnitKindsRequest: Schema.Schema<GetProjectsLocationsUnitKindsRequest>;
|
|
1024
|
+
export type GetProjectsLocationsUnitKindsResponse = UnitKind;
|
|
1025
|
+
export declare const GetProjectsLocationsUnitKindsResponse: Schema.Schema<UnitKind>;
|
|
1026
|
+
export type GetProjectsLocationsUnitKindsError = DefaultErrors;
|
|
1027
|
+
/** Retrieve a single unit kind. */
|
|
1028
|
+
export declare const getProjectsLocationsUnitKinds: API.OperationMethod<GetProjectsLocationsUnitKindsRequest, GetProjectsLocationsUnitKindsResponse, GetProjectsLocationsUnitKindsError, Credentials | HttpClient.HttpClient>;
|
|
1029
|
+
export interface CreateProjectsLocationsTenantsRequest {
|
|
1030
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1031
|
+
requestId?: string;
|
|
1032
|
+
/** Required. The ID value for the new tenant. */
|
|
1033
|
+
tenantId?: string;
|
|
1034
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1035
|
+
validateOnly?: boolean;
|
|
1036
|
+
/** Required. The parent of the tenant. */
|
|
1037
|
+
parent: string;
|
|
1038
|
+
/** Request body */
|
|
1039
|
+
body?: Tenant;
|
|
1040
|
+
}
|
|
1041
|
+
export declare const CreateProjectsLocationsTenantsRequest: Schema.Schema<CreateProjectsLocationsTenantsRequest>;
|
|
1042
|
+
export type CreateProjectsLocationsTenantsResponse = Tenant;
|
|
1043
|
+
export declare const CreateProjectsLocationsTenantsResponse: Schema.Schema<Tenant>;
|
|
1044
|
+
export type CreateProjectsLocationsTenantsError = DefaultErrors;
|
|
1045
|
+
/** Create a new tenant. */
|
|
1046
|
+
export declare const createProjectsLocationsTenants: API.OperationMethod<CreateProjectsLocationsTenantsRequest, CreateProjectsLocationsTenantsResponse, CreateProjectsLocationsTenantsError, Credentials | HttpClient.HttpClient>;
|
|
1047
|
+
export interface DeleteProjectsLocationsTenantsRequest {
|
|
1048
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1049
|
+
requestId?: string;
|
|
1050
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1051
|
+
validateOnly?: boolean;
|
|
1052
|
+
/** The etag known to the client for the expected state of the tenant. This is used with state-changing methods to prevent accidental overwrites when multiple user agents might be acting in parallel on the same resource. An etag wildcard provide optimistic concurrency based on the expected existence of the tenant. The Any wildcard (`*`) requires that the resource must already exists, and the Not Any wildcard (`!*`) requires that it must not. */
|
|
1053
|
+
etag?: string;
|
|
1054
|
+
/** Required. The resource name of the resource within a service. */
|
|
1055
|
+
name: string;
|
|
1056
|
+
}
|
|
1057
|
+
export declare const DeleteProjectsLocationsTenantsRequest: Schema.Schema<DeleteProjectsLocationsTenantsRequest>;
|
|
1058
|
+
export type DeleteProjectsLocationsTenantsResponse = Empty;
|
|
1059
|
+
export declare const DeleteProjectsLocationsTenantsResponse: Schema.Schema<Empty>;
|
|
1060
|
+
export type DeleteProjectsLocationsTenantsError = DefaultErrors;
|
|
1061
|
+
/** Delete a single tenant. */
|
|
1062
|
+
export declare const deleteProjectsLocationsTenants: API.OperationMethod<DeleteProjectsLocationsTenantsRequest, DeleteProjectsLocationsTenantsResponse, DeleteProjectsLocationsTenantsError, Credentials | HttpClient.HttpClient>;
|
|
1063
|
+
export interface ListProjectsLocationsTenantsRequest {
|
|
1064
|
+
/** The maximum number of tenants to send per page. */
|
|
1065
|
+
pageSize?: number;
|
|
1066
|
+
/** The page token: If the next_page_token from a previous response is provided, this request will send the subsequent page. */
|
|
1067
|
+
pageToken?: string;
|
|
1068
|
+
/** Order results as specified in https://google.aip.dev/132. */
|
|
1069
|
+
orderBy?: string;
|
|
1070
|
+
/** Filter the list as specified in https://google.aip.dev/160. */
|
|
1071
|
+
filter?: string;
|
|
1072
|
+
/** Required. The parent of the tenant. */
|
|
1073
|
+
parent: string;
|
|
1074
|
+
}
|
|
1075
|
+
export declare const ListProjectsLocationsTenantsRequest: Schema.Schema<ListProjectsLocationsTenantsRequest>;
|
|
1076
|
+
export type ListProjectsLocationsTenantsResponse = ListTenantsResponse;
|
|
1077
|
+
export declare const ListProjectsLocationsTenantsResponse: Schema.Schema<ListTenantsResponse>;
|
|
1078
|
+
export type ListProjectsLocationsTenantsError = DefaultErrors;
|
|
1079
|
+
/** Retrieve a collection of tenants. */
|
|
1080
|
+
export declare const listProjectsLocationsTenants: API.PaginatedOperationMethod<ListProjectsLocationsTenantsRequest, ListProjectsLocationsTenantsResponse, ListProjectsLocationsTenantsError, Credentials | HttpClient.HttpClient>;
|
|
1081
|
+
export interface GetProjectsLocationsTenantsRequest {
|
|
1082
|
+
/** Required. The resource name of the resource within a service. */
|
|
1083
|
+
name: string;
|
|
1084
|
+
}
|
|
1085
|
+
export declare const GetProjectsLocationsTenantsRequest: Schema.Schema<GetProjectsLocationsTenantsRequest>;
|
|
1086
|
+
export type GetProjectsLocationsTenantsResponse = Tenant;
|
|
1087
|
+
export declare const GetProjectsLocationsTenantsResponse: Schema.Schema<Tenant>;
|
|
1088
|
+
export type GetProjectsLocationsTenantsError = DefaultErrors;
|
|
1089
|
+
/** Retrieve a single tenant. */
|
|
1090
|
+
export declare const getProjectsLocationsTenants: API.OperationMethod<GetProjectsLocationsTenantsRequest, GetProjectsLocationsTenantsResponse, GetProjectsLocationsTenantsError, Credentials | HttpClient.HttpClient>;
|
|
1091
|
+
export interface PatchProjectsLocationsTenantsRequest {
|
|
1092
|
+
/** Field mask is used to specify the fields to be overwritten in the Tenant resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields in the Tenant will be overwritten. */
|
|
1093
|
+
updateMask?: string;
|
|
1094
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1095
|
+
validateOnly?: boolean;
|
|
1096
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1097
|
+
requestId?: string;
|
|
1098
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/tenants/{tenant}" */
|
|
1099
|
+
name: string;
|
|
1100
|
+
/** Request body */
|
|
1101
|
+
body?: Tenant;
|
|
1102
|
+
}
|
|
1103
|
+
export declare const PatchProjectsLocationsTenantsRequest: Schema.Schema<PatchProjectsLocationsTenantsRequest>;
|
|
1104
|
+
export type PatchProjectsLocationsTenantsResponse = Tenant;
|
|
1105
|
+
export declare const PatchProjectsLocationsTenantsResponse: Schema.Schema<Tenant>;
|
|
1106
|
+
export type PatchProjectsLocationsTenantsError = DefaultErrors;
|
|
1107
|
+
/** Update a single tenant. */
|
|
1108
|
+
export declare const patchProjectsLocationsTenants: API.OperationMethod<PatchProjectsLocationsTenantsRequest, PatchProjectsLocationsTenantsResponse, PatchProjectsLocationsTenantsError, Credentials | HttpClient.HttpClient>;
|
|
1109
|
+
export interface CreateProjectsLocationsSaasRequest {
|
|
1110
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1111
|
+
requestId?: string;
|
|
1112
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1113
|
+
validateOnly?: boolean;
|
|
1114
|
+
/** Required. The ID value for the new saas. */
|
|
1115
|
+
saasId?: string;
|
|
1116
|
+
/** Required. The parent of the saas. */
|
|
1117
|
+
parent: string;
|
|
1118
|
+
/** Request body */
|
|
1119
|
+
body?: Saas;
|
|
1120
|
+
}
|
|
1121
|
+
export declare const CreateProjectsLocationsSaasRequest: Schema.Schema<CreateProjectsLocationsSaasRequest>;
|
|
1122
|
+
export type CreateProjectsLocationsSaasResponse = Saas;
|
|
1123
|
+
export declare const CreateProjectsLocationsSaasResponse: Schema.Schema<Saas>;
|
|
1124
|
+
export type CreateProjectsLocationsSaasError = DefaultErrors;
|
|
1125
|
+
/** Create a new saas. */
|
|
1126
|
+
export declare const createProjectsLocationsSaas: API.OperationMethod<CreateProjectsLocationsSaasRequest, CreateProjectsLocationsSaasResponse, CreateProjectsLocationsSaasError, Credentials | HttpClient.HttpClient>;
|
|
1127
|
+
export interface ListProjectsLocationsSaasRequest {
|
|
1128
|
+
/** The maximum number of saas to send per page. */
|
|
1129
|
+
pageSize?: number;
|
|
1130
|
+
/** Order results as specified in https://google.aip.dev/132. */
|
|
1131
|
+
orderBy?: string;
|
|
1132
|
+
/** Required. The parent of the saas. */
|
|
1133
|
+
parent: string;
|
|
1134
|
+
/** Filter the list as specified in https://google.aip.dev/160. */
|
|
1135
|
+
filter?: string;
|
|
1136
|
+
/** The page token: If the next_page_token from a previous response is provided, this request will send the subsequent page. */
|
|
1137
|
+
pageToken?: string;
|
|
1138
|
+
}
|
|
1139
|
+
export declare const ListProjectsLocationsSaasRequest: Schema.Schema<ListProjectsLocationsSaasRequest>;
|
|
1140
|
+
export type ListProjectsLocationsSaasResponse = ListSaasResponse;
|
|
1141
|
+
export declare const ListProjectsLocationsSaasResponse: Schema.Schema<ListSaasResponse>;
|
|
1142
|
+
export type ListProjectsLocationsSaasError = DefaultErrors;
|
|
1143
|
+
/** Retrieve a collection of saas. */
|
|
1144
|
+
export declare const listProjectsLocationsSaas: API.PaginatedOperationMethod<ListProjectsLocationsSaasRequest, ListProjectsLocationsSaasResponse, ListProjectsLocationsSaasError, Credentials | HttpClient.HttpClient>;
|
|
1145
|
+
export interface PatchProjectsLocationsSaasRequest {
|
|
1146
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1147
|
+
validateOnly?: boolean;
|
|
1148
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1149
|
+
requestId?: string;
|
|
1150
|
+
/** Field mask is used to specify the fields to be overwritten in the Saas resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields in the Saas will be overwritten. */
|
|
1151
|
+
updateMask?: string;
|
|
1152
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/saas/{saas}" */
|
|
1153
|
+
name: string;
|
|
1154
|
+
/** Request body */
|
|
1155
|
+
body?: Saas;
|
|
1156
|
+
}
|
|
1157
|
+
export declare const PatchProjectsLocationsSaasRequest: Schema.Schema<PatchProjectsLocationsSaasRequest>;
|
|
1158
|
+
export type PatchProjectsLocationsSaasResponse = Saas;
|
|
1159
|
+
export declare const PatchProjectsLocationsSaasResponse: Schema.Schema<Saas>;
|
|
1160
|
+
export type PatchProjectsLocationsSaasError = DefaultErrors;
|
|
1161
|
+
/** Update a single saas. */
|
|
1162
|
+
export declare const patchProjectsLocationsSaas: API.OperationMethod<PatchProjectsLocationsSaasRequest, PatchProjectsLocationsSaasResponse, PatchProjectsLocationsSaasError, Credentials | HttpClient.HttpClient>;
|
|
1163
|
+
export interface DeleteProjectsLocationsSaasRequest {
|
|
1164
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1165
|
+
requestId?: string;
|
|
1166
|
+
/** Required. The resource name of the resource within a service. */
|
|
1167
|
+
name: string;
|
|
1168
|
+
/** The etag known to the client for the expected state of the saas. This is used with state-changing methods to prevent accidental overwrites when multiple user agents might be acting in parallel on the same resource. An etag wildcard provide optimistic concurrency based on the expected existence of the saas. The Any wildcard (`*`) requires that the resource must already exists, and the Not Any wildcard (`!*`) requires that it must not. */
|
|
1169
|
+
etag?: string;
|
|
1170
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1171
|
+
validateOnly?: boolean;
|
|
1172
|
+
}
|
|
1173
|
+
export declare const DeleteProjectsLocationsSaasRequest: Schema.Schema<DeleteProjectsLocationsSaasRequest>;
|
|
1174
|
+
export type DeleteProjectsLocationsSaasResponse = Empty;
|
|
1175
|
+
export declare const DeleteProjectsLocationsSaasResponse: Schema.Schema<Empty>;
|
|
1176
|
+
export type DeleteProjectsLocationsSaasError = DefaultErrors;
|
|
1177
|
+
/** Delete a single saas. */
|
|
1178
|
+
export declare const deleteProjectsLocationsSaas: API.OperationMethod<DeleteProjectsLocationsSaasRequest, DeleteProjectsLocationsSaasResponse, DeleteProjectsLocationsSaasError, Credentials | HttpClient.HttpClient>;
|
|
1179
|
+
export interface GetProjectsLocationsSaasRequest {
|
|
1180
|
+
/** Required. The resource name of the resource within a service. */
|
|
1181
|
+
name: string;
|
|
1182
|
+
}
|
|
1183
|
+
export declare const GetProjectsLocationsSaasRequest: Schema.Schema<GetProjectsLocationsSaasRequest>;
|
|
1184
|
+
export type GetProjectsLocationsSaasResponse = Saas;
|
|
1185
|
+
export declare const GetProjectsLocationsSaasResponse: Schema.Schema<Saas>;
|
|
1186
|
+
export type GetProjectsLocationsSaasError = DefaultErrors;
|
|
1187
|
+
/** Retrieve a single saas. */
|
|
1188
|
+
export declare const getProjectsLocationsSaas: API.OperationMethod<GetProjectsLocationsSaasRequest, GetProjectsLocationsSaasResponse, GetProjectsLocationsSaasError, Credentials | HttpClient.HttpClient>;
|
|
1189
|
+
export interface DeleteProjectsLocationsRolloutsRequest {
|
|
1190
|
+
/** Required. The resource name of the resource within a service. */
|
|
1191
|
+
name: string;
|
|
1192
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1193
|
+
validateOnly?: boolean;
|
|
1194
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1195
|
+
requestId?: string;
|
|
1196
|
+
/** The etag known to the client for the expected state of the rollout. This is used with state-changing methods to prevent accidental overwrites when multiple user agents might be acting in parallel on the same resource. An etag wildcard provide optimistic concurrency based on the expected existence of the rollout. The Any wildcard (`*`) requires that the resource must already exists, and the Not Any wildcard (`!*`) requires that it must not. */
|
|
1197
|
+
etag?: string;
|
|
1198
|
+
}
|
|
1199
|
+
export declare const DeleteProjectsLocationsRolloutsRequest: Schema.Schema<DeleteProjectsLocationsRolloutsRequest>;
|
|
1200
|
+
export type DeleteProjectsLocationsRolloutsResponse = Empty;
|
|
1201
|
+
export declare const DeleteProjectsLocationsRolloutsResponse: Schema.Schema<Empty>;
|
|
1202
|
+
export type DeleteProjectsLocationsRolloutsError = DefaultErrors;
|
|
1203
|
+
/** Delete a single rollout. */
|
|
1204
|
+
export declare const deleteProjectsLocationsRollouts: API.OperationMethod<DeleteProjectsLocationsRolloutsRequest, DeleteProjectsLocationsRolloutsResponse, DeleteProjectsLocationsRolloutsError, Credentials | HttpClient.HttpClient>;
|
|
1205
|
+
export interface ListProjectsLocationsRolloutsRequest {
|
|
1206
|
+
/** The maximum number of rollouts to send per page. */
|
|
1207
|
+
pageSize?: number;
|
|
1208
|
+
/** Required. The parent of the rollout. */
|
|
1209
|
+
parent: string;
|
|
1210
|
+
/** Filter the list as specified in https://google.aip.dev/160. */
|
|
1211
|
+
filter?: string;
|
|
1212
|
+
/** The page token: If the next_page_token from a previous response is provided, this request will send the subsequent page. */
|
|
1213
|
+
pageToken?: string;
|
|
1214
|
+
/** Order results as specified in https://google.aip.dev/132. */
|
|
1215
|
+
orderBy?: string;
|
|
1216
|
+
}
|
|
1217
|
+
export declare const ListProjectsLocationsRolloutsRequest: Schema.Schema<ListProjectsLocationsRolloutsRequest>;
|
|
1218
|
+
export type ListProjectsLocationsRolloutsResponse = ListRolloutsResponse;
|
|
1219
|
+
export declare const ListProjectsLocationsRolloutsResponse: Schema.Schema<ListRolloutsResponse>;
|
|
1220
|
+
export type ListProjectsLocationsRolloutsError = DefaultErrors;
|
|
1221
|
+
/** Retrieve a collection of rollouts. */
|
|
1222
|
+
export declare const listProjectsLocationsRollouts: API.PaginatedOperationMethod<ListProjectsLocationsRolloutsRequest, ListProjectsLocationsRolloutsResponse, ListProjectsLocationsRolloutsError, Credentials | HttpClient.HttpClient>;
|
|
1223
|
+
export interface CreateProjectsLocationsRolloutsRequest {
|
|
1224
|
+
/** Required. The ID value for the new rollout. */
|
|
1225
|
+
rolloutId?: string;
|
|
1226
|
+
/** Required. The parent of the rollout. */
|
|
1227
|
+
parent: string;
|
|
1228
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1229
|
+
validateOnly?: boolean;
|
|
1230
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1231
|
+
requestId?: string;
|
|
1232
|
+
/** Request body */
|
|
1233
|
+
body?: Rollout;
|
|
1234
|
+
}
|
|
1235
|
+
export declare const CreateProjectsLocationsRolloutsRequest: Schema.Schema<CreateProjectsLocationsRolloutsRequest>;
|
|
1236
|
+
export type CreateProjectsLocationsRolloutsResponse = Rollout;
|
|
1237
|
+
export declare const CreateProjectsLocationsRolloutsResponse: Schema.Schema<Rollout>;
|
|
1238
|
+
export type CreateProjectsLocationsRolloutsError = DefaultErrors;
|
|
1239
|
+
/** Create a new rollout. */
|
|
1240
|
+
export declare const createProjectsLocationsRollouts: API.OperationMethod<CreateProjectsLocationsRolloutsRequest, CreateProjectsLocationsRolloutsResponse, CreateProjectsLocationsRolloutsError, Credentials | HttpClient.HttpClient>;
|
|
1241
|
+
export interface PatchProjectsLocationsRolloutsRequest {
|
|
1242
|
+
/** Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/rollout/{rollout_id}" */
|
|
1243
|
+
name: string;
|
|
1244
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1245
|
+
requestId?: string;
|
|
1246
|
+
/** If "validate_only" is set to true, the service will try to validate that this request would succeed, but will not actually make changes. */
|
|
1247
|
+
validateOnly?: boolean;
|
|
1248
|
+
/** Field mask is used to specify the fields to be overwritten in the Rollout resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields in the Rollout will be overwritten. */
|
|
1249
|
+
updateMask?: string;
|
|
1250
|
+
/** Request body */
|
|
1251
|
+
body?: Rollout;
|
|
1252
|
+
}
|
|
1253
|
+
export declare const PatchProjectsLocationsRolloutsRequest: Schema.Schema<PatchProjectsLocationsRolloutsRequest>;
|
|
1254
|
+
export type PatchProjectsLocationsRolloutsResponse = Rollout;
|
|
1255
|
+
export declare const PatchProjectsLocationsRolloutsResponse: Schema.Schema<Rollout>;
|
|
1256
|
+
export type PatchProjectsLocationsRolloutsError = DefaultErrors;
|
|
1257
|
+
/** Update a single rollout. */
|
|
1258
|
+
export declare const patchProjectsLocationsRollouts: API.OperationMethod<PatchProjectsLocationsRolloutsRequest, PatchProjectsLocationsRolloutsResponse, PatchProjectsLocationsRolloutsError, Credentials | HttpClient.HttpClient>;
|
|
1259
|
+
export interface GetProjectsLocationsRolloutsRequest {
|
|
1260
|
+
/** Required. The resource name of the resource within a service. */
|
|
1261
|
+
name: string;
|
|
1262
|
+
}
|
|
1263
|
+
export declare const GetProjectsLocationsRolloutsRequest: Schema.Schema<GetProjectsLocationsRolloutsRequest>;
|
|
1264
|
+
export type GetProjectsLocationsRolloutsResponse = Rollout;
|
|
1265
|
+
export declare const GetProjectsLocationsRolloutsResponse: Schema.Schema<Rollout>;
|
|
1266
|
+
export type GetProjectsLocationsRolloutsError = DefaultErrors;
|
|
1267
|
+
/** Retrieve a single rollout. */
|
|
1268
|
+
export declare const getProjectsLocationsRollouts: API.OperationMethod<GetProjectsLocationsRolloutsRequest, GetProjectsLocationsRolloutsResponse, GetProjectsLocationsRolloutsError, Credentials | HttpClient.HttpClient>;
|
|
1269
|
+
//# sourceMappingURL=saasservicemgmt-v1.d.ts.map
|