@googleapis/vmmigration 12.1.0 → 13.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/build/index.d.ts +1 -1
- package/build/index.js.map +1 -1
- package/build/v1.d.ts +127 -119
- package/build/v1.js.map +1 -1
- package/build/v1alpha1.d.ts +127 -119
- package/build/v1alpha1.js.map +1 -1
- package/index.ts +0 -1
- package/package.json +2 -2
- package/v1.ts +335 -194
- package/v1alpha1.ts +335 -194
package/build/v1alpha1.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient,
|
|
2
|
+
import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common';
|
|
3
3
|
import { Readable } from 'stream';
|
|
4
4
|
export declare namespace vmmigration_v1alpha1 {
|
|
5
5
|
export interface Options extends GlobalOptions {
|
|
@@ -1397,6 +1397,10 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
1397
1397
|
* Parameters affecting the OS adaptation process.
|
|
1398
1398
|
*/
|
|
1399
1399
|
export interface Schema$ImageImportOsAdaptationParameters {
|
|
1400
|
+
/**
|
|
1401
|
+
* Optional. By default the image will keep its existing boot option. Setting this property will trigger an internal process which will convert the image from using the existing boot option to another. The size of the boot disk might be increased to allow the conversion
|
|
1402
|
+
*/
|
|
1403
|
+
bootConversion?: string | null;
|
|
1400
1404
|
/**
|
|
1401
1405
|
* Optional. Set to true in order to generalize the imported image. The generalization process enables co-existence of multiple VMs created from the same image. For Windows, generalizing the image removes computer-specific information such as installed drivers and the computer security identifier (SID).
|
|
1402
1406
|
*/
|
|
@@ -2850,8 +2854,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2850
2854
|
* @param callback - Optional callback that handles the response.
|
|
2851
2855
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2852
2856
|
*/
|
|
2853
|
-
get(params: Params$Resource$Projects$Locations$Get, options: StreamMethodOptions):
|
|
2854
|
-
get(params?: Params$Resource$Projects$Locations$Get, options?: MethodOptions):
|
|
2857
|
+
get(params: Params$Resource$Projects$Locations$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2858
|
+
get(params?: Params$Resource$Projects$Locations$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Location>>;
|
|
2855
2859
|
get(params: Params$Resource$Projects$Locations$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2856
2860
|
get(params: Params$Resource$Projects$Locations$Get, options: MethodOptions | BodyResponseCallback<Schema$Location>, callback: BodyResponseCallback<Schema$Location>): void;
|
|
2857
2861
|
get(params: Params$Resource$Projects$Locations$Get, callback: BodyResponseCallback<Schema$Location>): void;
|
|
@@ -2864,8 +2868,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2864
2868
|
* @param callback - Optional callback that handles the response.
|
|
2865
2869
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2866
2870
|
*/
|
|
2867
|
-
list(params: Params$Resource$Projects$Locations$List, options: StreamMethodOptions):
|
|
2868
|
-
list(params?: Params$Resource$Projects$Locations$List, options?: MethodOptions):
|
|
2871
|
+
list(params: Params$Resource$Projects$Locations$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2872
|
+
list(params?: Params$Resource$Projects$Locations$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListLocationsResponse>>;
|
|
2869
2873
|
list(params: Params$Resource$Projects$Locations$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2870
2874
|
list(params: Params$Resource$Projects$Locations$List, options: MethodOptions | BodyResponseCallback<Schema$ListLocationsResponse>, callback: BodyResponseCallback<Schema$ListLocationsResponse>): void;
|
|
2871
2875
|
list(params: Params$Resource$Projects$Locations$List, callback: BodyResponseCallback<Schema$ListLocationsResponse>): void;
|
|
@@ -2878,6 +2882,10 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2878
2882
|
name?: string;
|
|
2879
2883
|
}
|
|
2880
2884
|
export interface Params$Resource$Projects$Locations$List extends StandardParameters {
|
|
2885
|
+
/**
|
|
2886
|
+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
|
|
2887
|
+
*/
|
|
2888
|
+
extraLocationTypes?: string[];
|
|
2881
2889
|
/**
|
|
2882
2890
|
* 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).
|
|
2883
2891
|
*/
|
|
@@ -2906,8 +2914,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2906
2914
|
* @param callback - Optional callback that handles the response.
|
|
2907
2915
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2908
2916
|
*/
|
|
2909
|
-
addGroupMigration(params: Params$Resource$Projects$Locations$Groups$Addgroupmigration, options: StreamMethodOptions):
|
|
2910
|
-
addGroupMigration(params?: Params$Resource$Projects$Locations$Groups$Addgroupmigration, options?: MethodOptions):
|
|
2917
|
+
addGroupMigration(params: Params$Resource$Projects$Locations$Groups$Addgroupmigration, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2918
|
+
addGroupMigration(params?: Params$Resource$Projects$Locations$Groups$Addgroupmigration, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
2911
2919
|
addGroupMigration(params: Params$Resource$Projects$Locations$Groups$Addgroupmigration, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2912
2920
|
addGroupMigration(params: Params$Resource$Projects$Locations$Groups$Addgroupmigration, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
2913
2921
|
addGroupMigration(params: Params$Resource$Projects$Locations$Groups$Addgroupmigration, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -2920,8 +2928,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2920
2928
|
* @param callback - Optional callback that handles the response.
|
|
2921
2929
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2922
2930
|
*/
|
|
2923
|
-
create(params: Params$Resource$Projects$Locations$Groups$Create, options: StreamMethodOptions):
|
|
2924
|
-
create(params?: Params$Resource$Projects$Locations$Groups$Create, options?: MethodOptions):
|
|
2931
|
+
create(params: Params$Resource$Projects$Locations$Groups$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2932
|
+
create(params?: Params$Resource$Projects$Locations$Groups$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
2925
2933
|
create(params: Params$Resource$Projects$Locations$Groups$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2926
2934
|
create(params: Params$Resource$Projects$Locations$Groups$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
2927
2935
|
create(params: Params$Resource$Projects$Locations$Groups$Create, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -2934,8 +2942,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2934
2942
|
* @param callback - Optional callback that handles the response.
|
|
2935
2943
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2936
2944
|
*/
|
|
2937
|
-
delete(params: Params$Resource$Projects$Locations$Groups$Delete, options: StreamMethodOptions):
|
|
2938
|
-
delete(params?: Params$Resource$Projects$Locations$Groups$Delete, options?: MethodOptions):
|
|
2945
|
+
delete(params: Params$Resource$Projects$Locations$Groups$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2946
|
+
delete(params?: Params$Resource$Projects$Locations$Groups$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
2939
2947
|
delete(params: Params$Resource$Projects$Locations$Groups$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2940
2948
|
delete(params: Params$Resource$Projects$Locations$Groups$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
2941
2949
|
delete(params: Params$Resource$Projects$Locations$Groups$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -2948,8 +2956,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2948
2956
|
* @param callback - Optional callback that handles the response.
|
|
2949
2957
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2950
2958
|
*/
|
|
2951
|
-
get(params: Params$Resource$Projects$Locations$Groups$Get, options: StreamMethodOptions):
|
|
2952
|
-
get(params?: Params$Resource$Projects$Locations$Groups$Get, options?: MethodOptions):
|
|
2959
|
+
get(params: Params$Resource$Projects$Locations$Groups$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2960
|
+
get(params?: Params$Resource$Projects$Locations$Groups$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Group>>;
|
|
2953
2961
|
get(params: Params$Resource$Projects$Locations$Groups$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2954
2962
|
get(params: Params$Resource$Projects$Locations$Groups$Get, options: MethodOptions | BodyResponseCallback<Schema$Group>, callback: BodyResponseCallback<Schema$Group>): void;
|
|
2955
2963
|
get(params: Params$Resource$Projects$Locations$Groups$Get, callback: BodyResponseCallback<Schema$Group>): void;
|
|
@@ -2962,8 +2970,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2962
2970
|
* @param callback - Optional callback that handles the response.
|
|
2963
2971
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2964
2972
|
*/
|
|
2965
|
-
list(params: Params$Resource$Projects$Locations$Groups$List, options: StreamMethodOptions):
|
|
2966
|
-
list(params?: Params$Resource$Projects$Locations$Groups$List, options?: MethodOptions):
|
|
2973
|
+
list(params: Params$Resource$Projects$Locations$Groups$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2974
|
+
list(params?: Params$Resource$Projects$Locations$Groups$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListGroupsResponse>>;
|
|
2967
2975
|
list(params: Params$Resource$Projects$Locations$Groups$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2968
2976
|
list(params: Params$Resource$Projects$Locations$Groups$List, options: MethodOptions | BodyResponseCallback<Schema$ListGroupsResponse>, callback: BodyResponseCallback<Schema$ListGroupsResponse>): void;
|
|
2969
2977
|
list(params: Params$Resource$Projects$Locations$Groups$List, callback: BodyResponseCallback<Schema$ListGroupsResponse>): void;
|
|
@@ -2976,8 +2984,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2976
2984
|
* @param callback - Optional callback that handles the response.
|
|
2977
2985
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2978
2986
|
*/
|
|
2979
|
-
patch(params: Params$Resource$Projects$Locations$Groups$Patch, options: StreamMethodOptions):
|
|
2980
|
-
patch(params?: Params$Resource$Projects$Locations$Groups$Patch, options?: MethodOptions):
|
|
2987
|
+
patch(params: Params$Resource$Projects$Locations$Groups$Patch, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2988
|
+
patch(params?: Params$Resource$Projects$Locations$Groups$Patch, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
2981
2989
|
patch(params: Params$Resource$Projects$Locations$Groups$Patch, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2982
2990
|
patch(params: Params$Resource$Projects$Locations$Groups$Patch, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
2983
2991
|
patch(params: Params$Resource$Projects$Locations$Groups$Patch, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -2990,8 +2998,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
2990
2998
|
* @param callback - Optional callback that handles the response.
|
|
2991
2999
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2992
3000
|
*/
|
|
2993
|
-
removeGroupMigration(params: Params$Resource$Projects$Locations$Groups$Removegroupmigration, options: StreamMethodOptions):
|
|
2994
|
-
removeGroupMigration(params?: Params$Resource$Projects$Locations$Groups$Removegroupmigration, options?: MethodOptions):
|
|
3001
|
+
removeGroupMigration(params: Params$Resource$Projects$Locations$Groups$Removegroupmigration, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3002
|
+
removeGroupMigration(params?: Params$Resource$Projects$Locations$Groups$Removegroupmigration, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
2995
3003
|
removeGroupMigration(params: Params$Resource$Projects$Locations$Groups$Removegroupmigration, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2996
3004
|
removeGroupMigration(params: Params$Resource$Projects$Locations$Groups$Removegroupmigration, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
2997
3005
|
removeGroupMigration(params: Params$Resource$Projects$Locations$Groups$Removegroupmigration, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3103,8 +3111,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3103
3111
|
* @param callback - Optional callback that handles the response.
|
|
3104
3112
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3105
3113
|
*/
|
|
3106
|
-
create(params: Params$Resource$Projects$Locations$Imageimports$Create, options: StreamMethodOptions):
|
|
3107
|
-
create(params?: Params$Resource$Projects$Locations$Imageimports$Create, options?: MethodOptions):
|
|
3114
|
+
create(params: Params$Resource$Projects$Locations$Imageimports$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3115
|
+
create(params?: Params$Resource$Projects$Locations$Imageimports$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3108
3116
|
create(params: Params$Resource$Projects$Locations$Imageimports$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3109
3117
|
create(params: Params$Resource$Projects$Locations$Imageimports$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3110
3118
|
create(params: Params$Resource$Projects$Locations$Imageimports$Create, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3117,8 +3125,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3117
3125
|
* @param callback - Optional callback that handles the response.
|
|
3118
3126
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3119
3127
|
*/
|
|
3120
|
-
delete(params: Params$Resource$Projects$Locations$Imageimports$Delete, options: StreamMethodOptions):
|
|
3121
|
-
delete(params?: Params$Resource$Projects$Locations$Imageimports$Delete, options?: MethodOptions):
|
|
3128
|
+
delete(params: Params$Resource$Projects$Locations$Imageimports$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3129
|
+
delete(params?: Params$Resource$Projects$Locations$Imageimports$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3122
3130
|
delete(params: Params$Resource$Projects$Locations$Imageimports$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3123
3131
|
delete(params: Params$Resource$Projects$Locations$Imageimports$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3124
3132
|
delete(params: Params$Resource$Projects$Locations$Imageimports$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3131,8 +3139,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3131
3139
|
* @param callback - Optional callback that handles the response.
|
|
3132
3140
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3133
3141
|
*/
|
|
3134
|
-
get(params: Params$Resource$Projects$Locations$Imageimports$Get, options: StreamMethodOptions):
|
|
3135
|
-
get(params?: Params$Resource$Projects$Locations$Imageimports$Get, options?: MethodOptions):
|
|
3142
|
+
get(params: Params$Resource$Projects$Locations$Imageimports$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3143
|
+
get(params?: Params$Resource$Projects$Locations$Imageimports$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ImageImport>>;
|
|
3136
3144
|
get(params: Params$Resource$Projects$Locations$Imageimports$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3137
3145
|
get(params: Params$Resource$Projects$Locations$Imageimports$Get, options: MethodOptions | BodyResponseCallback<Schema$ImageImport>, callback: BodyResponseCallback<Schema$ImageImport>): void;
|
|
3138
3146
|
get(params: Params$Resource$Projects$Locations$Imageimports$Get, callback: BodyResponseCallback<Schema$ImageImport>): void;
|
|
@@ -3145,8 +3153,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3145
3153
|
* @param callback - Optional callback that handles the response.
|
|
3146
3154
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3147
3155
|
*/
|
|
3148
|
-
list(params: Params$Resource$Projects$Locations$Imageimports$List, options: StreamMethodOptions):
|
|
3149
|
-
list(params?: Params$Resource$Projects$Locations$Imageimports$List, options?: MethodOptions):
|
|
3156
|
+
list(params: Params$Resource$Projects$Locations$Imageimports$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3157
|
+
list(params?: Params$Resource$Projects$Locations$Imageimports$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListImageImportsResponse>>;
|
|
3150
3158
|
list(params: Params$Resource$Projects$Locations$Imageimports$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3151
3159
|
list(params: Params$Resource$Projects$Locations$Imageimports$List, options: MethodOptions | BodyResponseCallback<Schema$ListImageImportsResponse>, callback: BodyResponseCallback<Schema$ListImageImportsResponse>): void;
|
|
3152
3160
|
list(params: Params$Resource$Projects$Locations$Imageimports$List, callback: BodyResponseCallback<Schema$ListImageImportsResponse>): void;
|
|
@@ -3219,8 +3227,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3219
3227
|
* @param callback - Optional callback that handles the response.
|
|
3220
3228
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3221
3229
|
*/
|
|
3222
|
-
cancel(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Cancel, options: StreamMethodOptions):
|
|
3223
|
-
cancel(params?: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Cancel, options?: MethodOptions):
|
|
3230
|
+
cancel(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Cancel, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3231
|
+
cancel(params?: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Cancel, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3224
3232
|
cancel(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Cancel, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3225
3233
|
cancel(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Cancel, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3226
3234
|
cancel(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Cancel, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3233,8 +3241,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3233
3241
|
* @param callback - Optional callback that handles the response.
|
|
3234
3242
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3235
3243
|
*/
|
|
3236
|
-
get(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Get, options: StreamMethodOptions):
|
|
3237
|
-
get(params?: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Get, options?: MethodOptions):
|
|
3244
|
+
get(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3245
|
+
get(params?: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ImageImportJob>>;
|
|
3238
3246
|
get(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3239
3247
|
get(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Get, options: MethodOptions | BodyResponseCallback<Schema$ImageImportJob>, callback: BodyResponseCallback<Schema$ImageImportJob>): void;
|
|
3240
3248
|
get(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$Get, callback: BodyResponseCallback<Schema$ImageImportJob>): void;
|
|
@@ -3247,8 +3255,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3247
3255
|
* @param callback - Optional callback that handles the response.
|
|
3248
3256
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3249
3257
|
*/
|
|
3250
|
-
list(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$List, options: StreamMethodOptions):
|
|
3251
|
-
list(params?: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$List, options?: MethodOptions):
|
|
3258
|
+
list(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3259
|
+
list(params?: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListImageImportJobsResponse>>;
|
|
3252
3260
|
list(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3253
3261
|
list(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$List, options: MethodOptions | BodyResponseCallback<Schema$ListImageImportJobsResponse>, callback: BodyResponseCallback<Schema$ListImageImportJobsResponse>): void;
|
|
3254
3262
|
list(params: Params$Resource$Projects$Locations$Imageimports$Imageimportjobs$List, callback: BodyResponseCallback<Schema$ListImageImportJobsResponse>): void;
|
|
@@ -3303,8 +3311,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3303
3311
|
* @param callback - Optional callback that handles the response.
|
|
3304
3312
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3305
3313
|
*/
|
|
3306
|
-
cancel(params: Params$Resource$Projects$Locations$Operations$Cancel, options: StreamMethodOptions):
|
|
3307
|
-
cancel(params?: Params$Resource$Projects$Locations$Operations$Cancel, options?: MethodOptions):
|
|
3314
|
+
cancel(params: Params$Resource$Projects$Locations$Operations$Cancel, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3315
|
+
cancel(params?: Params$Resource$Projects$Locations$Operations$Cancel, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Empty>>;
|
|
3308
3316
|
cancel(params: Params$Resource$Projects$Locations$Operations$Cancel, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3309
3317
|
cancel(params: Params$Resource$Projects$Locations$Operations$Cancel, options: MethodOptions | BodyResponseCallback<Schema$Empty>, callback: BodyResponseCallback<Schema$Empty>): void;
|
|
3310
3318
|
cancel(params: Params$Resource$Projects$Locations$Operations$Cancel, callback: BodyResponseCallback<Schema$Empty>): void;
|
|
@@ -3317,8 +3325,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3317
3325
|
* @param callback - Optional callback that handles the response.
|
|
3318
3326
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3319
3327
|
*/
|
|
3320
|
-
delete(params: Params$Resource$Projects$Locations$Operations$Delete, options: StreamMethodOptions):
|
|
3321
|
-
delete(params?: Params$Resource$Projects$Locations$Operations$Delete, options?: MethodOptions):
|
|
3328
|
+
delete(params: Params$Resource$Projects$Locations$Operations$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3329
|
+
delete(params?: Params$Resource$Projects$Locations$Operations$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Empty>>;
|
|
3322
3330
|
delete(params: Params$Resource$Projects$Locations$Operations$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3323
3331
|
delete(params: Params$Resource$Projects$Locations$Operations$Delete, options: MethodOptions | BodyResponseCallback<Schema$Empty>, callback: BodyResponseCallback<Schema$Empty>): void;
|
|
3324
3332
|
delete(params: Params$Resource$Projects$Locations$Operations$Delete, callback: BodyResponseCallback<Schema$Empty>): void;
|
|
@@ -3331,8 +3339,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3331
3339
|
* @param callback - Optional callback that handles the response.
|
|
3332
3340
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3333
3341
|
*/
|
|
3334
|
-
get(params: Params$Resource$Projects$Locations$Operations$Get, options: StreamMethodOptions):
|
|
3335
|
-
get(params?: Params$Resource$Projects$Locations$Operations$Get, options?: MethodOptions):
|
|
3342
|
+
get(params: Params$Resource$Projects$Locations$Operations$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3343
|
+
get(params?: Params$Resource$Projects$Locations$Operations$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3336
3344
|
get(params: Params$Resource$Projects$Locations$Operations$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3337
3345
|
get(params: Params$Resource$Projects$Locations$Operations$Get, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3338
3346
|
get(params: Params$Resource$Projects$Locations$Operations$Get, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3345,8 +3353,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3345
3353
|
* @param callback - Optional callback that handles the response.
|
|
3346
3354
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3347
3355
|
*/
|
|
3348
|
-
list(params: Params$Resource$Projects$Locations$Operations$List, options: StreamMethodOptions):
|
|
3349
|
-
list(params?: Params$Resource$Projects$Locations$Operations$List, options?: MethodOptions):
|
|
3356
|
+
list(params: Params$Resource$Projects$Locations$Operations$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3357
|
+
list(params?: Params$Resource$Projects$Locations$Operations$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListOperationsResponse>>;
|
|
3350
3358
|
list(params: Params$Resource$Projects$Locations$Operations$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3351
3359
|
list(params: Params$Resource$Projects$Locations$Operations$List, options: MethodOptions | BodyResponseCallback<Schema$ListOperationsResponse>, callback: BodyResponseCallback<Schema$ListOperationsResponse>): void;
|
|
3352
3360
|
list(params: Params$Resource$Projects$Locations$Operations$List, callback: BodyResponseCallback<Schema$ListOperationsResponse>): void;
|
|
@@ -3406,8 +3414,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3406
3414
|
* @param callback - Optional callback that handles the response.
|
|
3407
3415
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3408
3416
|
*/
|
|
3409
|
-
create(params: Params$Resource$Projects$Locations$Sources$Create, options: StreamMethodOptions):
|
|
3410
|
-
create(params?: Params$Resource$Projects$Locations$Sources$Create, options?: MethodOptions):
|
|
3417
|
+
create(params: Params$Resource$Projects$Locations$Sources$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3418
|
+
create(params?: Params$Resource$Projects$Locations$Sources$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3411
3419
|
create(params: Params$Resource$Projects$Locations$Sources$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3412
3420
|
create(params: Params$Resource$Projects$Locations$Sources$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3413
3421
|
create(params: Params$Resource$Projects$Locations$Sources$Create, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3420,8 +3428,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3420
3428
|
* @param callback - Optional callback that handles the response.
|
|
3421
3429
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3422
3430
|
*/
|
|
3423
|
-
delete(params: Params$Resource$Projects$Locations$Sources$Delete, options: StreamMethodOptions):
|
|
3424
|
-
delete(params?: Params$Resource$Projects$Locations$Sources$Delete, options?: MethodOptions):
|
|
3431
|
+
delete(params: Params$Resource$Projects$Locations$Sources$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3432
|
+
delete(params?: Params$Resource$Projects$Locations$Sources$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3425
3433
|
delete(params: Params$Resource$Projects$Locations$Sources$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3426
3434
|
delete(params: Params$Resource$Projects$Locations$Sources$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3427
3435
|
delete(params: Params$Resource$Projects$Locations$Sources$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3434,8 +3442,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3434
3442
|
* @param callback - Optional callback that handles the response.
|
|
3435
3443
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3436
3444
|
*/
|
|
3437
|
-
fetchInventory(params: Params$Resource$Projects$Locations$Sources$Fetchinventory, options: StreamMethodOptions):
|
|
3438
|
-
fetchInventory(params?: Params$Resource$Projects$Locations$Sources$Fetchinventory, options?: MethodOptions):
|
|
3445
|
+
fetchInventory(params: Params$Resource$Projects$Locations$Sources$Fetchinventory, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3446
|
+
fetchInventory(params?: Params$Resource$Projects$Locations$Sources$Fetchinventory, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$FetchInventoryResponse>>;
|
|
3439
3447
|
fetchInventory(params: Params$Resource$Projects$Locations$Sources$Fetchinventory, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3440
3448
|
fetchInventory(params: Params$Resource$Projects$Locations$Sources$Fetchinventory, options: MethodOptions | BodyResponseCallback<Schema$FetchInventoryResponse>, callback: BodyResponseCallback<Schema$FetchInventoryResponse>): void;
|
|
3441
3449
|
fetchInventory(params: Params$Resource$Projects$Locations$Sources$Fetchinventory, callback: BodyResponseCallback<Schema$FetchInventoryResponse>): void;
|
|
@@ -3448,8 +3456,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3448
3456
|
* @param callback - Optional callback that handles the response.
|
|
3449
3457
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3450
3458
|
*/
|
|
3451
|
-
get(params: Params$Resource$Projects$Locations$Sources$Get, options: StreamMethodOptions):
|
|
3452
|
-
get(params?: Params$Resource$Projects$Locations$Sources$Get, options?: MethodOptions):
|
|
3459
|
+
get(params: Params$Resource$Projects$Locations$Sources$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3460
|
+
get(params?: Params$Resource$Projects$Locations$Sources$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Source>>;
|
|
3453
3461
|
get(params: Params$Resource$Projects$Locations$Sources$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3454
3462
|
get(params: Params$Resource$Projects$Locations$Sources$Get, options: MethodOptions | BodyResponseCallback<Schema$Source>, callback: BodyResponseCallback<Schema$Source>): void;
|
|
3455
3463
|
get(params: Params$Resource$Projects$Locations$Sources$Get, callback: BodyResponseCallback<Schema$Source>): void;
|
|
@@ -3462,8 +3470,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3462
3470
|
* @param callback - Optional callback that handles the response.
|
|
3463
3471
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3464
3472
|
*/
|
|
3465
|
-
list(params: Params$Resource$Projects$Locations$Sources$List, options: StreamMethodOptions):
|
|
3466
|
-
list(params?: Params$Resource$Projects$Locations$Sources$List, options?: MethodOptions):
|
|
3473
|
+
list(params: Params$Resource$Projects$Locations$Sources$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3474
|
+
list(params?: Params$Resource$Projects$Locations$Sources$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListSourcesResponse>>;
|
|
3467
3475
|
list(params: Params$Resource$Projects$Locations$Sources$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3468
3476
|
list(params: Params$Resource$Projects$Locations$Sources$List, options: MethodOptions | BodyResponseCallback<Schema$ListSourcesResponse>, callback: BodyResponseCallback<Schema$ListSourcesResponse>): void;
|
|
3469
3477
|
list(params: Params$Resource$Projects$Locations$Sources$List, callback: BodyResponseCallback<Schema$ListSourcesResponse>): void;
|
|
@@ -3476,8 +3484,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3476
3484
|
* @param callback - Optional callback that handles the response.
|
|
3477
3485
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3478
3486
|
*/
|
|
3479
|
-
patch(params: Params$Resource$Projects$Locations$Sources$Patch, options: StreamMethodOptions):
|
|
3480
|
-
patch(params?: Params$Resource$Projects$Locations$Sources$Patch, options?: MethodOptions):
|
|
3487
|
+
patch(params: Params$Resource$Projects$Locations$Sources$Patch, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3488
|
+
patch(params?: Params$Resource$Projects$Locations$Sources$Patch, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3481
3489
|
patch(params: Params$Resource$Projects$Locations$Sources$Patch, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3482
3490
|
patch(params: Params$Resource$Projects$Locations$Sources$Patch, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3483
3491
|
patch(params: Params$Resource$Projects$Locations$Sources$Patch, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3586,8 +3594,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3586
3594
|
* @param callback - Optional callback that handles the response.
|
|
3587
3595
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3588
3596
|
*/
|
|
3589
|
-
create(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Create, options: StreamMethodOptions):
|
|
3590
|
-
create(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Create, options?: MethodOptions):
|
|
3597
|
+
create(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3598
|
+
create(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3591
3599
|
create(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3592
3600
|
create(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3593
3601
|
create(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Create, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3600,8 +3608,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3600
3608
|
* @param callback - Optional callback that handles the response.
|
|
3601
3609
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3602
3610
|
*/
|
|
3603
|
-
delete(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Delete, options: StreamMethodOptions):
|
|
3604
|
-
delete(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Delete, options?: MethodOptions):
|
|
3611
|
+
delete(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3612
|
+
delete(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3605
3613
|
delete(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3606
3614
|
delete(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3607
3615
|
delete(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3614,8 +3622,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3614
3622
|
* @param callback - Optional callback that handles the response.
|
|
3615
3623
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3616
3624
|
*/
|
|
3617
|
-
get(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Get, options: StreamMethodOptions):
|
|
3618
|
-
get(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Get, options?: MethodOptions):
|
|
3625
|
+
get(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3626
|
+
get(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$DatacenterConnector>>;
|
|
3619
3627
|
get(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3620
3628
|
get(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Get, options: MethodOptions | BodyResponseCallback<Schema$DatacenterConnector>, callback: BodyResponseCallback<Schema$DatacenterConnector>): void;
|
|
3621
3629
|
get(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Get, callback: BodyResponseCallback<Schema$DatacenterConnector>): void;
|
|
@@ -3628,8 +3636,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3628
3636
|
* @param callback - Optional callback that handles the response.
|
|
3629
3637
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3630
3638
|
*/
|
|
3631
|
-
list(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$List, options: StreamMethodOptions):
|
|
3632
|
-
list(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$List, options?: MethodOptions):
|
|
3639
|
+
list(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3640
|
+
list(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListDatacenterConnectorsResponse>>;
|
|
3633
3641
|
list(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3634
3642
|
list(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$List, options: MethodOptions | BodyResponseCallback<Schema$ListDatacenterConnectorsResponse>, callback: BodyResponseCallback<Schema$ListDatacenterConnectorsResponse>): void;
|
|
3635
3643
|
list(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$List, callback: BodyResponseCallback<Schema$ListDatacenterConnectorsResponse>): void;
|
|
@@ -3642,8 +3650,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3642
3650
|
* @param callback - Optional callback that handles the response.
|
|
3643
3651
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3644
3652
|
*/
|
|
3645
|
-
upgradeAppliance(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Upgradeappliance, options: StreamMethodOptions):
|
|
3646
|
-
upgradeAppliance(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Upgradeappliance, options?: MethodOptions):
|
|
3653
|
+
upgradeAppliance(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Upgradeappliance, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3654
|
+
upgradeAppliance(params?: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Upgradeappliance, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3647
3655
|
upgradeAppliance(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Upgradeappliance, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3648
3656
|
upgradeAppliance(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Upgradeappliance, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3649
3657
|
upgradeAppliance(params: Params$Resource$Projects$Locations$Sources$Datacenterconnectors$Upgradeappliance, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3729,8 +3737,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3729
3737
|
* @param callback - Optional callback that handles the response.
|
|
3730
3738
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3731
3739
|
*/
|
|
3732
|
-
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Create, options: StreamMethodOptions):
|
|
3733
|
-
create(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Create, options?: MethodOptions):
|
|
3740
|
+
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3741
|
+
create(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3734
3742
|
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3735
3743
|
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3736
3744
|
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Create, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3743,8 +3751,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3743
3751
|
* @param callback - Optional callback that handles the response.
|
|
3744
3752
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3745
3753
|
*/
|
|
3746
|
-
delete(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Delete, options: StreamMethodOptions):
|
|
3747
|
-
delete(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Delete, options?: MethodOptions):
|
|
3754
|
+
delete(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3755
|
+
delete(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3748
3756
|
delete(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3749
3757
|
delete(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3750
3758
|
delete(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3757,8 +3765,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3757
3765
|
* @param callback - Optional callback that handles the response.
|
|
3758
3766
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3759
3767
|
*/
|
|
3760
|
-
finalizeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Finalizemigration, options: StreamMethodOptions):
|
|
3761
|
-
finalizeMigration(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Finalizemigration, options?: MethodOptions):
|
|
3768
|
+
finalizeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Finalizemigration, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3769
|
+
finalizeMigration(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Finalizemigration, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3762
3770
|
finalizeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Finalizemigration, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3763
3771
|
finalizeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Finalizemigration, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3764
3772
|
finalizeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Finalizemigration, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3771,8 +3779,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3771
3779
|
* @param callback - Optional callback that handles the response.
|
|
3772
3780
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3773
3781
|
*/
|
|
3774
|
-
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Get, options: StreamMethodOptions):
|
|
3775
|
-
get(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Get, options?: MethodOptions):
|
|
3782
|
+
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3783
|
+
get(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$MigratingVm>>;
|
|
3776
3784
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3777
3785
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Get, options: MethodOptions | BodyResponseCallback<Schema$MigratingVm>, callback: BodyResponseCallback<Schema$MigratingVm>): void;
|
|
3778
3786
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Get, callback: BodyResponseCallback<Schema$MigratingVm>): void;
|
|
@@ -3785,8 +3793,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3785
3793
|
* @param callback - Optional callback that handles the response.
|
|
3786
3794
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3787
3795
|
*/
|
|
3788
|
-
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$List, options: StreamMethodOptions):
|
|
3789
|
-
list(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$List, options?: MethodOptions):
|
|
3796
|
+
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3797
|
+
list(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListMigratingVmsResponse>>;
|
|
3790
3798
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3791
3799
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$List, options: MethodOptions | BodyResponseCallback<Schema$ListMigratingVmsResponse>, callback: BodyResponseCallback<Schema$ListMigratingVmsResponse>): void;
|
|
3792
3800
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$List, callback: BodyResponseCallback<Schema$ListMigratingVmsResponse>): void;
|
|
@@ -3799,8 +3807,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3799
3807
|
* @param callback - Optional callback that handles the response.
|
|
3800
3808
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3801
3809
|
*/
|
|
3802
|
-
patch(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Patch, options: StreamMethodOptions):
|
|
3803
|
-
patch(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Patch, options?: MethodOptions):
|
|
3810
|
+
patch(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Patch, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3811
|
+
patch(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Patch, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3804
3812
|
patch(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Patch, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3805
3813
|
patch(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Patch, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3806
3814
|
patch(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Patch, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3813,8 +3821,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3813
3821
|
* @param callback - Optional callback that handles the response.
|
|
3814
3822
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3815
3823
|
*/
|
|
3816
|
-
pauseMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Pausemigration, options: StreamMethodOptions):
|
|
3817
|
-
pauseMigration(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Pausemigration, options?: MethodOptions):
|
|
3824
|
+
pauseMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Pausemigration, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3825
|
+
pauseMigration(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Pausemigration, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3818
3826
|
pauseMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Pausemigration, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3819
3827
|
pauseMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Pausemigration, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3820
3828
|
pauseMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Pausemigration, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3827,8 +3835,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3827
3835
|
* @param callback - Optional callback that handles the response.
|
|
3828
3836
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3829
3837
|
*/
|
|
3830
|
-
resumeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Resumemigration, options: StreamMethodOptions):
|
|
3831
|
-
resumeMigration(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Resumemigration, options?: MethodOptions):
|
|
3838
|
+
resumeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Resumemigration, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3839
|
+
resumeMigration(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Resumemigration, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3832
3840
|
resumeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Resumemigration, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3833
3841
|
resumeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Resumemigration, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3834
3842
|
resumeMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Resumemigration, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3841,8 +3849,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3841
3849
|
* @param callback - Optional callback that handles the response.
|
|
3842
3850
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3843
3851
|
*/
|
|
3844
|
-
startMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Startmigration, options: StreamMethodOptions):
|
|
3845
|
-
startMigration(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Startmigration, options?: MethodOptions):
|
|
3852
|
+
startMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Startmigration, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3853
|
+
startMigration(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Startmigration, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3846
3854
|
startMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Startmigration, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3847
3855
|
startMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Startmigration, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3848
3856
|
startMigration(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Startmigration, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3977,8 +3985,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3977
3985
|
* @param callback - Optional callback that handles the response.
|
|
3978
3986
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3979
3987
|
*/
|
|
3980
|
-
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Cancel, options: StreamMethodOptions):
|
|
3981
|
-
cancel(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Cancel, options?: MethodOptions):
|
|
3988
|
+
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Cancel, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3989
|
+
cancel(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Cancel, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3982
3990
|
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Cancel, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3983
3991
|
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Cancel, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3984
3992
|
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Cancel, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -3991,8 +3999,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
3991
3999
|
* @param callback - Optional callback that handles the response.
|
|
3992
4000
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3993
4001
|
*/
|
|
3994
|
-
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Create, options: StreamMethodOptions):
|
|
3995
|
-
create(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Create, options?: MethodOptions):
|
|
4002
|
+
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4003
|
+
create(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
3996
4004
|
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3997
4005
|
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
3998
4006
|
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Create, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -4005,8 +4013,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4005
4013
|
* @param callback - Optional callback that handles the response.
|
|
4006
4014
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4007
4015
|
*/
|
|
4008
|
-
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Get, options: StreamMethodOptions):
|
|
4009
|
-
get(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Get, options?: MethodOptions):
|
|
4016
|
+
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4017
|
+
get(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CloneJob>>;
|
|
4010
4018
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4011
4019
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Get, options: MethodOptions | BodyResponseCallback<Schema$CloneJob>, callback: BodyResponseCallback<Schema$CloneJob>): void;
|
|
4012
4020
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$Get, callback: BodyResponseCallback<Schema$CloneJob>): void;
|
|
@@ -4019,8 +4027,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4019
4027
|
* @param callback - Optional callback that handles the response.
|
|
4020
4028
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4021
4029
|
*/
|
|
4022
|
-
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$List, options: StreamMethodOptions):
|
|
4023
|
-
list(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$List, options?: MethodOptions):
|
|
4030
|
+
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4031
|
+
list(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListCloneJobsResponse>>;
|
|
4024
4032
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4025
4033
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$List, options: MethodOptions | BodyResponseCallback<Schema$ListCloneJobsResponse>, callback: BodyResponseCallback<Schema$ListCloneJobsResponse>): void;
|
|
4026
4034
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Clonejobs$List, callback: BodyResponseCallback<Schema$ListCloneJobsResponse>): void;
|
|
@@ -4093,8 +4101,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4093
4101
|
* @param callback - Optional callback that handles the response.
|
|
4094
4102
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4095
4103
|
*/
|
|
4096
|
-
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Cancel, options: StreamMethodOptions):
|
|
4097
|
-
cancel(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Cancel, options?: MethodOptions):
|
|
4104
|
+
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Cancel, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4105
|
+
cancel(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Cancel, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
4098
4106
|
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Cancel, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4099
4107
|
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Cancel, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
4100
4108
|
cancel(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Cancel, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -4107,8 +4115,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4107
4115
|
* @param callback - Optional callback that handles the response.
|
|
4108
4116
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4109
4117
|
*/
|
|
4110
|
-
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Create, options: StreamMethodOptions):
|
|
4111
|
-
create(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Create, options?: MethodOptions):
|
|
4118
|
+
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4119
|
+
create(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
4112
4120
|
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4113
4121
|
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
4114
4122
|
create(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Create, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -4121,8 +4129,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4121
4129
|
* @param callback - Optional callback that handles the response.
|
|
4122
4130
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4123
4131
|
*/
|
|
4124
|
-
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Get, options: StreamMethodOptions):
|
|
4125
|
-
get(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Get, options?: MethodOptions):
|
|
4132
|
+
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4133
|
+
get(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CutoverJob>>;
|
|
4126
4134
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4127
4135
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Get, options: MethodOptions | BodyResponseCallback<Schema$CutoverJob>, callback: BodyResponseCallback<Schema$CutoverJob>): void;
|
|
4128
4136
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$Get, callback: BodyResponseCallback<Schema$CutoverJob>): void;
|
|
@@ -4135,8 +4143,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4135
4143
|
* @param callback - Optional callback that handles the response.
|
|
4136
4144
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4137
4145
|
*/
|
|
4138
|
-
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$List, options: StreamMethodOptions):
|
|
4139
|
-
list(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$List, options?: MethodOptions):
|
|
4146
|
+
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4147
|
+
list(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListCutoverJobsResponse>>;
|
|
4140
4148
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4141
4149
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$List, options: MethodOptions | BodyResponseCallback<Schema$ListCutoverJobsResponse>, callback: BodyResponseCallback<Schema$ListCutoverJobsResponse>): void;
|
|
4142
4150
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Cutoverjobs$List, callback: BodyResponseCallback<Schema$ListCutoverJobsResponse>): void;
|
|
@@ -4209,8 +4217,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4209
4217
|
* @param callback - Optional callback that handles the response.
|
|
4210
4218
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4211
4219
|
*/
|
|
4212
|
-
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$Get, options: StreamMethodOptions):
|
|
4213
|
-
get(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$Get, options?: MethodOptions):
|
|
4220
|
+
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4221
|
+
get(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ReplicationCycle>>;
|
|
4214
4222
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4215
4223
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$Get, options: MethodOptions | BodyResponseCallback<Schema$ReplicationCycle>, callback: BodyResponseCallback<Schema$ReplicationCycle>): void;
|
|
4216
4224
|
get(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$Get, callback: BodyResponseCallback<Schema$ReplicationCycle>): void;
|
|
@@ -4223,8 +4231,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4223
4231
|
* @param callback - Optional callback that handles the response.
|
|
4224
4232
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4225
4233
|
*/
|
|
4226
|
-
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$List, options: StreamMethodOptions):
|
|
4227
|
-
list(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$List, options?: MethodOptions):
|
|
4234
|
+
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4235
|
+
list(params?: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListReplicationCyclesResponse>>;
|
|
4228
4236
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4229
4237
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$List, options: MethodOptions | BodyResponseCallback<Schema$ListReplicationCyclesResponse>, callback: BodyResponseCallback<Schema$ListReplicationCyclesResponse>): void;
|
|
4230
4238
|
list(params: Params$Resource$Projects$Locations$Sources$Migratingvms$Replicationcycles$List, callback: BodyResponseCallback<Schema$ListReplicationCyclesResponse>): void;
|
|
@@ -4269,8 +4277,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4269
4277
|
* @param callback - Optional callback that handles the response.
|
|
4270
4278
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4271
4279
|
*/
|
|
4272
|
-
create(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Create, options: StreamMethodOptions):
|
|
4273
|
-
create(params?: Params$Resource$Projects$Locations$Sources$Utilizationreports$Create, options?: MethodOptions):
|
|
4280
|
+
create(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4281
|
+
create(params?: Params$Resource$Projects$Locations$Sources$Utilizationreports$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
4274
4282
|
create(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4275
4283
|
create(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
4276
4284
|
create(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Create, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -4283,8 +4291,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4283
4291
|
* @param callback - Optional callback that handles the response.
|
|
4284
4292
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4285
4293
|
*/
|
|
4286
|
-
delete(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Delete, options: StreamMethodOptions):
|
|
4287
|
-
delete(params?: Params$Resource$Projects$Locations$Sources$Utilizationreports$Delete, options?: MethodOptions):
|
|
4294
|
+
delete(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4295
|
+
delete(params?: Params$Resource$Projects$Locations$Sources$Utilizationreports$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
4288
4296
|
delete(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4289
4297
|
delete(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
4290
4298
|
delete(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -4297,8 +4305,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4297
4305
|
* @param callback - Optional callback that handles the response.
|
|
4298
4306
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4299
4307
|
*/
|
|
4300
|
-
get(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Get, options: StreamMethodOptions):
|
|
4301
|
-
get(params?: Params$Resource$Projects$Locations$Sources$Utilizationreports$Get, options?: MethodOptions):
|
|
4308
|
+
get(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4309
|
+
get(params?: Params$Resource$Projects$Locations$Sources$Utilizationreports$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$UtilizationReport>>;
|
|
4302
4310
|
get(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4303
4311
|
get(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Get, options: MethodOptions | BodyResponseCallback<Schema$UtilizationReport>, callback: BodyResponseCallback<Schema$UtilizationReport>): void;
|
|
4304
4312
|
get(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$Get, callback: BodyResponseCallback<Schema$UtilizationReport>): void;
|
|
@@ -4311,8 +4319,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4311
4319
|
* @param callback - Optional callback that handles the response.
|
|
4312
4320
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4313
4321
|
*/
|
|
4314
|
-
list(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$List, options: StreamMethodOptions):
|
|
4315
|
-
list(params?: Params$Resource$Projects$Locations$Sources$Utilizationreports$List, options?: MethodOptions):
|
|
4322
|
+
list(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4323
|
+
list(params?: Params$Resource$Projects$Locations$Sources$Utilizationreports$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListUtilizationReportsResponse>>;
|
|
4316
4324
|
list(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4317
4325
|
list(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$List, options: MethodOptions | BodyResponseCallback<Schema$ListUtilizationReportsResponse>, callback: BodyResponseCallback<Schema$ListUtilizationReportsResponse>): void;
|
|
4318
4326
|
list(params: Params$Resource$Projects$Locations$Sources$Utilizationreports$List, callback: BodyResponseCallback<Schema$ListUtilizationReportsResponse>): void;
|
|
@@ -4393,8 +4401,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4393
4401
|
* @param callback - Optional callback that handles the response.
|
|
4394
4402
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4395
4403
|
*/
|
|
4396
|
-
create(params: Params$Resource$Projects$Locations$Targetprojects$Create, options: StreamMethodOptions):
|
|
4397
|
-
create(params?: Params$Resource$Projects$Locations$Targetprojects$Create, options?: MethodOptions):
|
|
4404
|
+
create(params: Params$Resource$Projects$Locations$Targetprojects$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4405
|
+
create(params?: Params$Resource$Projects$Locations$Targetprojects$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
4398
4406
|
create(params: Params$Resource$Projects$Locations$Targetprojects$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4399
4407
|
create(params: Params$Resource$Projects$Locations$Targetprojects$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
4400
4408
|
create(params: Params$Resource$Projects$Locations$Targetprojects$Create, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -4407,8 +4415,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4407
4415
|
* @param callback - Optional callback that handles the response.
|
|
4408
4416
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4409
4417
|
*/
|
|
4410
|
-
delete(params: Params$Resource$Projects$Locations$Targetprojects$Delete, options: StreamMethodOptions):
|
|
4411
|
-
delete(params?: Params$Resource$Projects$Locations$Targetprojects$Delete, options?: MethodOptions):
|
|
4418
|
+
delete(params: Params$Resource$Projects$Locations$Targetprojects$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4419
|
+
delete(params?: Params$Resource$Projects$Locations$Targetprojects$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
4412
4420
|
delete(params: Params$Resource$Projects$Locations$Targetprojects$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4413
4421
|
delete(params: Params$Resource$Projects$Locations$Targetprojects$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
4414
4422
|
delete(params: Params$Resource$Projects$Locations$Targetprojects$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
@@ -4421,8 +4429,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4421
4429
|
* @param callback - Optional callback that handles the response.
|
|
4422
4430
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4423
4431
|
*/
|
|
4424
|
-
get(params: Params$Resource$Projects$Locations$Targetprojects$Get, options: StreamMethodOptions):
|
|
4425
|
-
get(params?: Params$Resource$Projects$Locations$Targetprojects$Get, options?: MethodOptions):
|
|
4432
|
+
get(params: Params$Resource$Projects$Locations$Targetprojects$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4433
|
+
get(params?: Params$Resource$Projects$Locations$Targetprojects$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$TargetProject>>;
|
|
4426
4434
|
get(params: Params$Resource$Projects$Locations$Targetprojects$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4427
4435
|
get(params: Params$Resource$Projects$Locations$Targetprojects$Get, options: MethodOptions | BodyResponseCallback<Schema$TargetProject>, callback: BodyResponseCallback<Schema$TargetProject>): void;
|
|
4428
4436
|
get(params: Params$Resource$Projects$Locations$Targetprojects$Get, callback: BodyResponseCallback<Schema$TargetProject>): void;
|
|
@@ -4435,8 +4443,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4435
4443
|
* @param callback - Optional callback that handles the response.
|
|
4436
4444
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4437
4445
|
*/
|
|
4438
|
-
list(params: Params$Resource$Projects$Locations$Targetprojects$List, options: StreamMethodOptions):
|
|
4439
|
-
list(params?: Params$Resource$Projects$Locations$Targetprojects$List, options?: MethodOptions):
|
|
4446
|
+
list(params: Params$Resource$Projects$Locations$Targetprojects$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4447
|
+
list(params?: Params$Resource$Projects$Locations$Targetprojects$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListTargetProjectsResponse>>;
|
|
4440
4448
|
list(params: Params$Resource$Projects$Locations$Targetprojects$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4441
4449
|
list(params: Params$Resource$Projects$Locations$Targetprojects$List, options: MethodOptions | BodyResponseCallback<Schema$ListTargetProjectsResponse>, callback: BodyResponseCallback<Schema$ListTargetProjectsResponse>): void;
|
|
4442
4450
|
list(params: Params$Resource$Projects$Locations$Targetprojects$List, callback: BodyResponseCallback<Schema$ListTargetProjectsResponse>): void;
|
|
@@ -4449,8 +4457,8 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
4449
4457
|
* @param callback - Optional callback that handles the response.
|
|
4450
4458
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4451
4459
|
*/
|
|
4452
|
-
patch(params: Params$Resource$Projects$Locations$Targetprojects$Patch, options: StreamMethodOptions):
|
|
4453
|
-
patch(params?: Params$Resource$Projects$Locations$Targetprojects$Patch, options?: MethodOptions):
|
|
4460
|
+
patch(params: Params$Resource$Projects$Locations$Targetprojects$Patch, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4461
|
+
patch(params?: Params$Resource$Projects$Locations$Targetprojects$Patch, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
|
|
4454
4462
|
patch(params: Params$Resource$Projects$Locations$Targetprojects$Patch, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4455
4463
|
patch(params: Params$Resource$Projects$Locations$Targetprojects$Patch, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
|
|
4456
4464
|
patch(params: Params$Resource$Projects$Locations$Targetprojects$Patch, callback: BodyResponseCallback<Schema$Operation>): void;
|