@google-cloud/dms 3.2.0 → 3.4.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.
- package/CHANGELOG.md +15 -0
- package/build/protos/google/cloud/clouddms/v1/clouddms.proto +1 -1
- package/build/protos/google/cloud/clouddms/v1/clouddms_resources.proto +1 -1
- package/build/protos/google/cloud/clouddms/v1/conversionworkspace_resources.proto +1 -1
- package/build/protos/protos.d.ts +770 -16
- package/build/protos/protos.js +2848 -154
- package/build/protos/protos.json +349 -17
- package/build/src/v1/data_migration_service_client.js +10 -7
- package/package.json +3 -3
package/build/protos/protos.d.ts
CHANGED
|
@@ -17724,6 +17724,9 @@ export namespace google {
|
|
|
17724
17724
|
|
|
17725
17725
|
/** Publishing librarySettings */
|
|
17726
17726
|
librarySettings?: (google.api.IClientLibrarySettings[]|null);
|
|
17727
|
+
|
|
17728
|
+
/** Publishing protoReferenceDocumentationUri */
|
|
17729
|
+
protoReferenceDocumentationUri?: (string|null);
|
|
17727
17730
|
}
|
|
17728
17731
|
|
|
17729
17732
|
/** Represents a Publishing. */
|
|
@@ -17762,6 +17765,9 @@ export namespace google {
|
|
|
17762
17765
|
/** Publishing librarySettings. */
|
|
17763
17766
|
public librarySettings: google.api.IClientLibrarySettings[];
|
|
17764
17767
|
|
|
17768
|
+
/** Publishing protoReferenceDocumentationUri. */
|
|
17769
|
+
public protoReferenceDocumentationUri: string;
|
|
17770
|
+
|
|
17765
17771
|
/**
|
|
17766
17772
|
* Creates a new Publishing instance using the specified properties.
|
|
17767
17773
|
* @param [properties] Properties to set
|
|
@@ -18342,6 +18348,21 @@ export namespace google {
|
|
|
18342
18348
|
|
|
18343
18349
|
/** DotnetSettings common */
|
|
18344
18350
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
18351
|
+
|
|
18352
|
+
/** DotnetSettings renamedServices */
|
|
18353
|
+
renamedServices?: ({ [k: string]: string }|null);
|
|
18354
|
+
|
|
18355
|
+
/** DotnetSettings renamedResources */
|
|
18356
|
+
renamedResources?: ({ [k: string]: string }|null);
|
|
18357
|
+
|
|
18358
|
+
/** DotnetSettings ignoredResources */
|
|
18359
|
+
ignoredResources?: (string[]|null);
|
|
18360
|
+
|
|
18361
|
+
/** DotnetSettings forcedNamespaceAliases */
|
|
18362
|
+
forcedNamespaceAliases?: (string[]|null);
|
|
18363
|
+
|
|
18364
|
+
/** DotnetSettings handwrittenSignatures */
|
|
18365
|
+
handwrittenSignatures?: (string[]|null);
|
|
18345
18366
|
}
|
|
18346
18367
|
|
|
18347
18368
|
/** Represents a DotnetSettings. */
|
|
@@ -18356,6 +18377,21 @@ export namespace google {
|
|
|
18356
18377
|
/** DotnetSettings common. */
|
|
18357
18378
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
18358
18379
|
|
|
18380
|
+
/** DotnetSettings renamedServices. */
|
|
18381
|
+
public renamedServices: { [k: string]: string };
|
|
18382
|
+
|
|
18383
|
+
/** DotnetSettings renamedResources. */
|
|
18384
|
+
public renamedResources: { [k: string]: string };
|
|
18385
|
+
|
|
18386
|
+
/** DotnetSettings ignoredResources. */
|
|
18387
|
+
public ignoredResources: string[];
|
|
18388
|
+
|
|
18389
|
+
/** DotnetSettings forcedNamespaceAliases. */
|
|
18390
|
+
public forcedNamespaceAliases: string[];
|
|
18391
|
+
|
|
18392
|
+
/** DotnetSettings handwrittenSignatures. */
|
|
18393
|
+
public handwrittenSignatures: string[];
|
|
18394
|
+
|
|
18359
18395
|
/**
|
|
18360
18396
|
* Creates a new DotnetSettings instance using the specified properties.
|
|
18361
18397
|
* @param [properties] Properties to set
|
|
@@ -18636,6 +18672,9 @@ export namespace google {
|
|
|
18636
18672
|
|
|
18637
18673
|
/** MethodSettings longRunning */
|
|
18638
18674
|
longRunning?: (google.api.MethodSettings.ILongRunning|null);
|
|
18675
|
+
|
|
18676
|
+
/** MethodSettings autoPopulatedFields */
|
|
18677
|
+
autoPopulatedFields?: (string[]|null);
|
|
18639
18678
|
}
|
|
18640
18679
|
|
|
18641
18680
|
/** Represents a MethodSettings. */
|
|
@@ -18653,6 +18692,9 @@ export namespace google {
|
|
|
18653
18692
|
/** MethodSettings longRunning. */
|
|
18654
18693
|
public longRunning?: (google.api.MethodSettings.ILongRunning|null);
|
|
18655
18694
|
|
|
18695
|
+
/** MethodSettings autoPopulatedFields. */
|
|
18696
|
+
public autoPopulatedFields: string[];
|
|
18697
|
+
|
|
18656
18698
|
/**
|
|
18657
18699
|
* Creates a new MethodSettings instance using the specified properties.
|
|
18658
18700
|
* @param [properties] Properties to set
|
|
@@ -18855,7 +18897,10 @@ export namespace google {
|
|
|
18855
18897
|
CLOUD = 1,
|
|
18856
18898
|
ADS = 2,
|
|
18857
18899
|
PHOTOS = 3,
|
|
18858
|
-
STREET_VIEW = 4
|
|
18900
|
+
STREET_VIEW = 4,
|
|
18901
|
+
SHOPPING = 5,
|
|
18902
|
+
GEO = 6,
|
|
18903
|
+
GENERATIVE_AI = 7
|
|
18859
18904
|
}
|
|
18860
18905
|
|
|
18861
18906
|
/** ClientLibraryDestination enum. */
|
|
@@ -18886,7 +18931,8 @@ export namespace google {
|
|
|
18886
18931
|
INPUT_ONLY = 4,
|
|
18887
18932
|
IMMUTABLE = 5,
|
|
18888
18933
|
UNORDERED_LIST = 6,
|
|
18889
|
-
NON_EMPTY_DEFAULT = 7
|
|
18934
|
+
NON_EMPTY_DEFAULT = 7,
|
|
18935
|
+
IDENTIFIER = 8
|
|
18890
18936
|
}
|
|
18891
18937
|
|
|
18892
18938
|
/** Properties of a ResourceDescriptor. */
|
|
@@ -19242,6 +19288,21 @@ export namespace google {
|
|
|
19242
19288
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
19243
19289
|
}
|
|
19244
19290
|
|
|
19291
|
+
/** Edition enum. */
|
|
19292
|
+
enum Edition {
|
|
19293
|
+
EDITION_UNKNOWN = 0,
|
|
19294
|
+
EDITION_PROTO2 = 998,
|
|
19295
|
+
EDITION_PROTO3 = 999,
|
|
19296
|
+
EDITION_2023 = 1000,
|
|
19297
|
+
EDITION_2024 = 1001,
|
|
19298
|
+
EDITION_1_TEST_ONLY = 1,
|
|
19299
|
+
EDITION_2_TEST_ONLY = 2,
|
|
19300
|
+
EDITION_99997_TEST_ONLY = 99997,
|
|
19301
|
+
EDITION_99998_TEST_ONLY = 99998,
|
|
19302
|
+
EDITION_99999_TEST_ONLY = 99999,
|
|
19303
|
+
EDITION_MAX = 2147483647
|
|
19304
|
+
}
|
|
19305
|
+
|
|
19245
19306
|
/** Properties of a FileDescriptorProto. */
|
|
19246
19307
|
interface IFileDescriptorProto {
|
|
19247
19308
|
|
|
@@ -19282,7 +19343,7 @@ export namespace google {
|
|
|
19282
19343
|
syntax?: (string|null);
|
|
19283
19344
|
|
|
19284
19345
|
/** FileDescriptorProto edition */
|
|
19285
|
-
edition?: (
|
|
19346
|
+
edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
19286
19347
|
}
|
|
19287
19348
|
|
|
19288
19349
|
/** Represents a FileDescriptorProto. */
|
|
@@ -19331,7 +19392,7 @@ export namespace google {
|
|
|
19331
19392
|
public syntax: string;
|
|
19332
19393
|
|
|
19333
19394
|
/** FileDescriptorProto edition. */
|
|
19334
|
-
public edition:
|
|
19395
|
+
public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
19335
19396
|
|
|
19336
19397
|
/**
|
|
19337
19398
|
* Creates a new FileDescriptorProto instance using the specified properties.
|
|
@@ -19782,6 +19843,15 @@ export namespace google {
|
|
|
19782
19843
|
|
|
19783
19844
|
/** ExtensionRangeOptions uninterpretedOption */
|
|
19784
19845
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
19846
|
+
|
|
19847
|
+
/** ExtensionRangeOptions declaration */
|
|
19848
|
+
declaration?: (google.protobuf.ExtensionRangeOptions.IDeclaration[]|null);
|
|
19849
|
+
|
|
19850
|
+
/** ExtensionRangeOptions features */
|
|
19851
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
19852
|
+
|
|
19853
|
+
/** ExtensionRangeOptions verification */
|
|
19854
|
+
verification?: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState|null);
|
|
19785
19855
|
}
|
|
19786
19856
|
|
|
19787
19857
|
/** Represents an ExtensionRangeOptions. */
|
|
@@ -19796,6 +19866,15 @@ export namespace google {
|
|
|
19796
19866
|
/** ExtensionRangeOptions uninterpretedOption. */
|
|
19797
19867
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
19798
19868
|
|
|
19869
|
+
/** ExtensionRangeOptions declaration. */
|
|
19870
|
+
public declaration: google.protobuf.ExtensionRangeOptions.IDeclaration[];
|
|
19871
|
+
|
|
19872
|
+
/** ExtensionRangeOptions features. */
|
|
19873
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
19874
|
+
|
|
19875
|
+
/** ExtensionRangeOptions verification. */
|
|
19876
|
+
public verification: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState);
|
|
19877
|
+
|
|
19799
19878
|
/**
|
|
19800
19879
|
* Creates a new ExtensionRangeOptions instance using the specified properties.
|
|
19801
19880
|
* @param [properties] Properties to set
|
|
@@ -19874,6 +19953,136 @@ export namespace google {
|
|
|
19874
19953
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
19875
19954
|
}
|
|
19876
19955
|
|
|
19956
|
+
namespace ExtensionRangeOptions {
|
|
19957
|
+
|
|
19958
|
+
/** Properties of a Declaration. */
|
|
19959
|
+
interface IDeclaration {
|
|
19960
|
+
|
|
19961
|
+
/** Declaration number */
|
|
19962
|
+
number?: (number|null);
|
|
19963
|
+
|
|
19964
|
+
/** Declaration fullName */
|
|
19965
|
+
fullName?: (string|null);
|
|
19966
|
+
|
|
19967
|
+
/** Declaration type */
|
|
19968
|
+
type?: (string|null);
|
|
19969
|
+
|
|
19970
|
+
/** Declaration reserved */
|
|
19971
|
+
reserved?: (boolean|null);
|
|
19972
|
+
|
|
19973
|
+
/** Declaration repeated */
|
|
19974
|
+
repeated?: (boolean|null);
|
|
19975
|
+
}
|
|
19976
|
+
|
|
19977
|
+
/** Represents a Declaration. */
|
|
19978
|
+
class Declaration implements IDeclaration {
|
|
19979
|
+
|
|
19980
|
+
/**
|
|
19981
|
+
* Constructs a new Declaration.
|
|
19982
|
+
* @param [properties] Properties to set
|
|
19983
|
+
*/
|
|
19984
|
+
constructor(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration);
|
|
19985
|
+
|
|
19986
|
+
/** Declaration number. */
|
|
19987
|
+
public number: number;
|
|
19988
|
+
|
|
19989
|
+
/** Declaration fullName. */
|
|
19990
|
+
public fullName: string;
|
|
19991
|
+
|
|
19992
|
+
/** Declaration type. */
|
|
19993
|
+
public type: string;
|
|
19994
|
+
|
|
19995
|
+
/** Declaration reserved. */
|
|
19996
|
+
public reserved: boolean;
|
|
19997
|
+
|
|
19998
|
+
/** Declaration repeated. */
|
|
19999
|
+
public repeated: boolean;
|
|
20000
|
+
|
|
20001
|
+
/**
|
|
20002
|
+
* Creates a new Declaration instance using the specified properties.
|
|
20003
|
+
* @param [properties] Properties to set
|
|
20004
|
+
* @returns Declaration instance
|
|
20005
|
+
*/
|
|
20006
|
+
public static create(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
20007
|
+
|
|
20008
|
+
/**
|
|
20009
|
+
* Encodes the specified Declaration message. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
|
|
20010
|
+
* @param message Declaration message or plain object to encode
|
|
20011
|
+
* @param [writer] Writer to encode to
|
|
20012
|
+
* @returns Writer
|
|
20013
|
+
*/
|
|
20014
|
+
public static encode(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20015
|
+
|
|
20016
|
+
/**
|
|
20017
|
+
* Encodes the specified Declaration message, length delimited. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
|
|
20018
|
+
* @param message Declaration message or plain object to encode
|
|
20019
|
+
* @param [writer] Writer to encode to
|
|
20020
|
+
* @returns Writer
|
|
20021
|
+
*/
|
|
20022
|
+
public static encodeDelimited(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20023
|
+
|
|
20024
|
+
/**
|
|
20025
|
+
* Decodes a Declaration message from the specified reader or buffer.
|
|
20026
|
+
* @param reader Reader or buffer to decode from
|
|
20027
|
+
* @param [length] Message length if known beforehand
|
|
20028
|
+
* @returns Declaration
|
|
20029
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20030
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20031
|
+
*/
|
|
20032
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
20033
|
+
|
|
20034
|
+
/**
|
|
20035
|
+
* Decodes a Declaration message from the specified reader or buffer, length delimited.
|
|
20036
|
+
* @param reader Reader or buffer to decode from
|
|
20037
|
+
* @returns Declaration
|
|
20038
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20039
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20040
|
+
*/
|
|
20041
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
20042
|
+
|
|
20043
|
+
/**
|
|
20044
|
+
* Verifies a Declaration message.
|
|
20045
|
+
* @param message Plain object to verify
|
|
20046
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
20047
|
+
*/
|
|
20048
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
20049
|
+
|
|
20050
|
+
/**
|
|
20051
|
+
* Creates a Declaration message from a plain object. Also converts values to their respective internal types.
|
|
20052
|
+
* @param object Plain object
|
|
20053
|
+
* @returns Declaration
|
|
20054
|
+
*/
|
|
20055
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
20056
|
+
|
|
20057
|
+
/**
|
|
20058
|
+
* Creates a plain object from a Declaration message. Also converts values to other types if specified.
|
|
20059
|
+
* @param message Declaration
|
|
20060
|
+
* @param [options] Conversion options
|
|
20061
|
+
* @returns Plain object
|
|
20062
|
+
*/
|
|
20063
|
+
public static toObject(message: google.protobuf.ExtensionRangeOptions.Declaration, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
20064
|
+
|
|
20065
|
+
/**
|
|
20066
|
+
* Converts this Declaration to JSON.
|
|
20067
|
+
* @returns JSON object
|
|
20068
|
+
*/
|
|
20069
|
+
public toJSON(): { [k: string]: any };
|
|
20070
|
+
|
|
20071
|
+
/**
|
|
20072
|
+
* Gets the default type url for Declaration
|
|
20073
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
20074
|
+
* @returns The default type url
|
|
20075
|
+
*/
|
|
20076
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
20077
|
+
}
|
|
20078
|
+
|
|
20079
|
+
/** VerificationState enum. */
|
|
20080
|
+
enum VerificationState {
|
|
20081
|
+
DECLARATION = 0,
|
|
20082
|
+
UNVERIFIED = 1
|
|
20083
|
+
}
|
|
20084
|
+
}
|
|
20085
|
+
|
|
19877
20086
|
/** Properties of a FieldDescriptorProto. */
|
|
19878
20087
|
interface IFieldDescriptorProto {
|
|
19879
20088
|
|
|
@@ -20058,8 +20267,8 @@ export namespace google {
|
|
|
20058
20267
|
/** Label enum. */
|
|
20059
20268
|
enum Label {
|
|
20060
20269
|
LABEL_OPTIONAL = 1,
|
|
20061
|
-
|
|
20062
|
-
|
|
20270
|
+
LABEL_REPEATED = 3,
|
|
20271
|
+
LABEL_REQUIRED = 2
|
|
20063
20272
|
}
|
|
20064
20273
|
}
|
|
20065
20274
|
|
|
@@ -20771,9 +20980,6 @@ export namespace google {
|
|
|
20771
20980
|
/** FileOptions pyGenericServices */
|
|
20772
20981
|
pyGenericServices?: (boolean|null);
|
|
20773
20982
|
|
|
20774
|
-
/** FileOptions phpGenericServices */
|
|
20775
|
-
phpGenericServices?: (boolean|null);
|
|
20776
|
-
|
|
20777
20983
|
/** FileOptions deprecated */
|
|
20778
20984
|
deprecated?: (boolean|null);
|
|
20779
20985
|
|
|
@@ -20801,6 +21007,9 @@ export namespace google {
|
|
|
20801
21007
|
/** FileOptions rubyPackage */
|
|
20802
21008
|
rubyPackage?: (string|null);
|
|
20803
21009
|
|
|
21010
|
+
/** FileOptions features */
|
|
21011
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
21012
|
+
|
|
20804
21013
|
/** FileOptions uninterpretedOption */
|
|
20805
21014
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
20806
21015
|
|
|
@@ -20847,9 +21056,6 @@ export namespace google {
|
|
|
20847
21056
|
/** FileOptions pyGenericServices. */
|
|
20848
21057
|
public pyGenericServices: boolean;
|
|
20849
21058
|
|
|
20850
|
-
/** FileOptions phpGenericServices. */
|
|
20851
|
-
public phpGenericServices: boolean;
|
|
20852
|
-
|
|
20853
21059
|
/** FileOptions deprecated. */
|
|
20854
21060
|
public deprecated: boolean;
|
|
20855
21061
|
|
|
@@ -20877,6 +21083,9 @@ export namespace google {
|
|
|
20877
21083
|
/** FileOptions rubyPackage. */
|
|
20878
21084
|
public rubyPackage: string;
|
|
20879
21085
|
|
|
21086
|
+
/** FileOptions features. */
|
|
21087
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
21088
|
+
|
|
20880
21089
|
/** FileOptions uninterpretedOption. */
|
|
20881
21090
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
20882
21091
|
|
|
@@ -20986,6 +21195,9 @@ export namespace google {
|
|
|
20986
21195
|
/** MessageOptions deprecatedLegacyJsonFieldConflicts */
|
|
20987
21196
|
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
20988
21197
|
|
|
21198
|
+
/** MessageOptions features */
|
|
21199
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
21200
|
+
|
|
20989
21201
|
/** MessageOptions uninterpretedOption */
|
|
20990
21202
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
20991
21203
|
|
|
@@ -21017,6 +21229,9 @@ export namespace google {
|
|
|
21017
21229
|
/** MessageOptions deprecatedLegacyJsonFieldConflicts. */
|
|
21018
21230
|
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
21019
21231
|
|
|
21232
|
+
/** MessageOptions features. */
|
|
21233
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
21234
|
+
|
|
21020
21235
|
/** MessageOptions uninterpretedOption. */
|
|
21021
21236
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
21022
21237
|
|
|
@@ -21128,8 +21343,14 @@ export namespace google {
|
|
|
21128
21343
|
/** FieldOptions retention */
|
|
21129
21344
|
retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
|
|
21130
21345
|
|
|
21131
|
-
/** FieldOptions
|
|
21132
|
-
|
|
21346
|
+
/** FieldOptions targets */
|
|
21347
|
+
targets?: (google.protobuf.FieldOptions.OptionTargetType[]|null);
|
|
21348
|
+
|
|
21349
|
+
/** FieldOptions editionDefaults */
|
|
21350
|
+
editionDefaults?: (google.protobuf.FieldOptions.IEditionDefault[]|null);
|
|
21351
|
+
|
|
21352
|
+
/** FieldOptions features */
|
|
21353
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
21133
21354
|
|
|
21134
21355
|
/** FieldOptions uninterpretedOption */
|
|
21135
21356
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
@@ -21177,8 +21398,14 @@ export namespace google {
|
|
|
21177
21398
|
/** FieldOptions retention. */
|
|
21178
21399
|
public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
|
|
21179
21400
|
|
|
21180
|
-
/** FieldOptions
|
|
21181
|
-
public
|
|
21401
|
+
/** FieldOptions targets. */
|
|
21402
|
+
public targets: google.protobuf.FieldOptions.OptionTargetType[];
|
|
21403
|
+
|
|
21404
|
+
/** FieldOptions editionDefaults. */
|
|
21405
|
+
public editionDefaults: google.protobuf.FieldOptions.IEditionDefault[];
|
|
21406
|
+
|
|
21407
|
+
/** FieldOptions features. */
|
|
21408
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
21182
21409
|
|
|
21183
21410
|
/** FieldOptions uninterpretedOption. */
|
|
21184
21411
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
@@ -21297,11 +21524,117 @@ export namespace google {
|
|
|
21297
21524
|
TARGET_TYPE_SERVICE = 8,
|
|
21298
21525
|
TARGET_TYPE_METHOD = 9
|
|
21299
21526
|
}
|
|
21527
|
+
|
|
21528
|
+
/** Properties of an EditionDefault. */
|
|
21529
|
+
interface IEditionDefault {
|
|
21530
|
+
|
|
21531
|
+
/** EditionDefault edition */
|
|
21532
|
+
edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
21533
|
+
|
|
21534
|
+
/** EditionDefault value */
|
|
21535
|
+
value?: (string|null);
|
|
21536
|
+
}
|
|
21537
|
+
|
|
21538
|
+
/** Represents an EditionDefault. */
|
|
21539
|
+
class EditionDefault implements IEditionDefault {
|
|
21540
|
+
|
|
21541
|
+
/**
|
|
21542
|
+
* Constructs a new EditionDefault.
|
|
21543
|
+
* @param [properties] Properties to set
|
|
21544
|
+
*/
|
|
21545
|
+
constructor(properties?: google.protobuf.FieldOptions.IEditionDefault);
|
|
21546
|
+
|
|
21547
|
+
/** EditionDefault edition. */
|
|
21548
|
+
public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
21549
|
+
|
|
21550
|
+
/** EditionDefault value. */
|
|
21551
|
+
public value: string;
|
|
21552
|
+
|
|
21553
|
+
/**
|
|
21554
|
+
* Creates a new EditionDefault instance using the specified properties.
|
|
21555
|
+
* @param [properties] Properties to set
|
|
21556
|
+
* @returns EditionDefault instance
|
|
21557
|
+
*/
|
|
21558
|
+
public static create(properties?: google.protobuf.FieldOptions.IEditionDefault): google.protobuf.FieldOptions.EditionDefault;
|
|
21559
|
+
|
|
21560
|
+
/**
|
|
21561
|
+
* Encodes the specified EditionDefault message. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
|
|
21562
|
+
* @param message EditionDefault message or plain object to encode
|
|
21563
|
+
* @param [writer] Writer to encode to
|
|
21564
|
+
* @returns Writer
|
|
21565
|
+
*/
|
|
21566
|
+
public static encode(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21567
|
+
|
|
21568
|
+
/**
|
|
21569
|
+
* Encodes the specified EditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
|
|
21570
|
+
* @param message EditionDefault message or plain object to encode
|
|
21571
|
+
* @param [writer] Writer to encode to
|
|
21572
|
+
* @returns Writer
|
|
21573
|
+
*/
|
|
21574
|
+
public static encodeDelimited(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21575
|
+
|
|
21576
|
+
/**
|
|
21577
|
+
* Decodes an EditionDefault message from the specified reader or buffer.
|
|
21578
|
+
* @param reader Reader or buffer to decode from
|
|
21579
|
+
* @param [length] Message length if known beforehand
|
|
21580
|
+
* @returns EditionDefault
|
|
21581
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21582
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21583
|
+
*/
|
|
21584
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.EditionDefault;
|
|
21585
|
+
|
|
21586
|
+
/**
|
|
21587
|
+
* Decodes an EditionDefault message from the specified reader or buffer, length delimited.
|
|
21588
|
+
* @param reader Reader or buffer to decode from
|
|
21589
|
+
* @returns EditionDefault
|
|
21590
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21591
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21592
|
+
*/
|
|
21593
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.EditionDefault;
|
|
21594
|
+
|
|
21595
|
+
/**
|
|
21596
|
+
* Verifies an EditionDefault message.
|
|
21597
|
+
* @param message Plain object to verify
|
|
21598
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
21599
|
+
*/
|
|
21600
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
21601
|
+
|
|
21602
|
+
/**
|
|
21603
|
+
* Creates an EditionDefault message from a plain object. Also converts values to their respective internal types.
|
|
21604
|
+
* @param object Plain object
|
|
21605
|
+
* @returns EditionDefault
|
|
21606
|
+
*/
|
|
21607
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.EditionDefault;
|
|
21608
|
+
|
|
21609
|
+
/**
|
|
21610
|
+
* Creates a plain object from an EditionDefault message. Also converts values to other types if specified.
|
|
21611
|
+
* @param message EditionDefault
|
|
21612
|
+
* @param [options] Conversion options
|
|
21613
|
+
* @returns Plain object
|
|
21614
|
+
*/
|
|
21615
|
+
public static toObject(message: google.protobuf.FieldOptions.EditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
21616
|
+
|
|
21617
|
+
/**
|
|
21618
|
+
* Converts this EditionDefault to JSON.
|
|
21619
|
+
* @returns JSON object
|
|
21620
|
+
*/
|
|
21621
|
+
public toJSON(): { [k: string]: any };
|
|
21622
|
+
|
|
21623
|
+
/**
|
|
21624
|
+
* Gets the default type url for EditionDefault
|
|
21625
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
21626
|
+
* @returns The default type url
|
|
21627
|
+
*/
|
|
21628
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21629
|
+
}
|
|
21300
21630
|
}
|
|
21301
21631
|
|
|
21302
21632
|
/** Properties of an OneofOptions. */
|
|
21303
21633
|
interface IOneofOptions {
|
|
21304
21634
|
|
|
21635
|
+
/** OneofOptions features */
|
|
21636
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
21637
|
+
|
|
21305
21638
|
/** OneofOptions uninterpretedOption */
|
|
21306
21639
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
21307
21640
|
}
|
|
@@ -21315,6 +21648,9 @@ export namespace google {
|
|
|
21315
21648
|
*/
|
|
21316
21649
|
constructor(properties?: google.protobuf.IOneofOptions);
|
|
21317
21650
|
|
|
21651
|
+
/** OneofOptions features. */
|
|
21652
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
21653
|
+
|
|
21318
21654
|
/** OneofOptions uninterpretedOption. */
|
|
21319
21655
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
21320
21656
|
|
|
@@ -21408,6 +21744,9 @@ export namespace google {
|
|
|
21408
21744
|
/** EnumOptions deprecatedLegacyJsonFieldConflicts */
|
|
21409
21745
|
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
21410
21746
|
|
|
21747
|
+
/** EnumOptions features */
|
|
21748
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
21749
|
+
|
|
21411
21750
|
/** EnumOptions uninterpretedOption */
|
|
21412
21751
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
21413
21752
|
}
|
|
@@ -21430,6 +21769,9 @@ export namespace google {
|
|
|
21430
21769
|
/** EnumOptions deprecatedLegacyJsonFieldConflicts. */
|
|
21431
21770
|
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
21432
21771
|
|
|
21772
|
+
/** EnumOptions features. */
|
|
21773
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
21774
|
+
|
|
21433
21775
|
/** EnumOptions uninterpretedOption. */
|
|
21434
21776
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
21435
21777
|
|
|
@@ -21517,6 +21859,12 @@ export namespace google {
|
|
|
21517
21859
|
/** EnumValueOptions deprecated */
|
|
21518
21860
|
deprecated?: (boolean|null);
|
|
21519
21861
|
|
|
21862
|
+
/** EnumValueOptions features */
|
|
21863
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
21864
|
+
|
|
21865
|
+
/** EnumValueOptions debugRedact */
|
|
21866
|
+
debugRedact?: (boolean|null);
|
|
21867
|
+
|
|
21520
21868
|
/** EnumValueOptions uninterpretedOption */
|
|
21521
21869
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
21522
21870
|
}
|
|
@@ -21533,6 +21881,12 @@ export namespace google {
|
|
|
21533
21881
|
/** EnumValueOptions deprecated. */
|
|
21534
21882
|
public deprecated: boolean;
|
|
21535
21883
|
|
|
21884
|
+
/** EnumValueOptions features. */
|
|
21885
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
21886
|
+
|
|
21887
|
+
/** EnumValueOptions debugRedact. */
|
|
21888
|
+
public debugRedact: boolean;
|
|
21889
|
+
|
|
21536
21890
|
/** EnumValueOptions uninterpretedOption. */
|
|
21537
21891
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
21538
21892
|
|
|
@@ -21617,6 +21971,9 @@ export namespace google {
|
|
|
21617
21971
|
/** Properties of a ServiceOptions. */
|
|
21618
21972
|
interface IServiceOptions {
|
|
21619
21973
|
|
|
21974
|
+
/** ServiceOptions features */
|
|
21975
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
21976
|
+
|
|
21620
21977
|
/** ServiceOptions deprecated */
|
|
21621
21978
|
deprecated?: (boolean|null);
|
|
21622
21979
|
|
|
@@ -21639,6 +21996,9 @@ export namespace google {
|
|
|
21639
21996
|
*/
|
|
21640
21997
|
constructor(properties?: google.protobuf.IServiceOptions);
|
|
21641
21998
|
|
|
21999
|
+
/** ServiceOptions features. */
|
|
22000
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
22001
|
+
|
|
21642
22002
|
/** ServiceOptions deprecated. */
|
|
21643
22003
|
public deprecated: boolean;
|
|
21644
22004
|
|
|
@@ -21732,6 +22092,9 @@ export namespace google {
|
|
|
21732
22092
|
/** MethodOptions idempotencyLevel */
|
|
21733
22093
|
idempotencyLevel?: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel|null);
|
|
21734
22094
|
|
|
22095
|
+
/** MethodOptions features */
|
|
22096
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
22097
|
+
|
|
21735
22098
|
/** MethodOptions uninterpretedOption */
|
|
21736
22099
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
21737
22100
|
|
|
@@ -21760,6 +22123,9 @@ export namespace google {
|
|
|
21760
22123
|
/** MethodOptions idempotencyLevel. */
|
|
21761
22124
|
public idempotencyLevel: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel);
|
|
21762
22125
|
|
|
22126
|
+
/** MethodOptions features. */
|
|
22127
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
22128
|
+
|
|
21763
22129
|
/** MethodOptions uninterpretedOption. */
|
|
21764
22130
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
21765
22131
|
|
|
@@ -22090,6 +22456,394 @@ export namespace google {
|
|
|
22090
22456
|
}
|
|
22091
22457
|
}
|
|
22092
22458
|
|
|
22459
|
+
/** Properties of a FeatureSet. */
|
|
22460
|
+
interface IFeatureSet {
|
|
22461
|
+
|
|
22462
|
+
/** FeatureSet fieldPresence */
|
|
22463
|
+
fieldPresence?: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence|null);
|
|
22464
|
+
|
|
22465
|
+
/** FeatureSet enumType */
|
|
22466
|
+
enumType?: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType|null);
|
|
22467
|
+
|
|
22468
|
+
/** FeatureSet repeatedFieldEncoding */
|
|
22469
|
+
repeatedFieldEncoding?: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding|null);
|
|
22470
|
+
|
|
22471
|
+
/** FeatureSet utf8Validation */
|
|
22472
|
+
utf8Validation?: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation|null);
|
|
22473
|
+
|
|
22474
|
+
/** FeatureSet messageEncoding */
|
|
22475
|
+
messageEncoding?: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding|null);
|
|
22476
|
+
|
|
22477
|
+
/** FeatureSet jsonFormat */
|
|
22478
|
+
jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
|
|
22479
|
+
}
|
|
22480
|
+
|
|
22481
|
+
/** Represents a FeatureSet. */
|
|
22482
|
+
class FeatureSet implements IFeatureSet {
|
|
22483
|
+
|
|
22484
|
+
/**
|
|
22485
|
+
* Constructs a new FeatureSet.
|
|
22486
|
+
* @param [properties] Properties to set
|
|
22487
|
+
*/
|
|
22488
|
+
constructor(properties?: google.protobuf.IFeatureSet);
|
|
22489
|
+
|
|
22490
|
+
/** FeatureSet fieldPresence. */
|
|
22491
|
+
public fieldPresence: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence);
|
|
22492
|
+
|
|
22493
|
+
/** FeatureSet enumType. */
|
|
22494
|
+
public enumType: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType);
|
|
22495
|
+
|
|
22496
|
+
/** FeatureSet repeatedFieldEncoding. */
|
|
22497
|
+
public repeatedFieldEncoding: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding);
|
|
22498
|
+
|
|
22499
|
+
/** FeatureSet utf8Validation. */
|
|
22500
|
+
public utf8Validation: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation);
|
|
22501
|
+
|
|
22502
|
+
/** FeatureSet messageEncoding. */
|
|
22503
|
+
public messageEncoding: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding);
|
|
22504
|
+
|
|
22505
|
+
/** FeatureSet jsonFormat. */
|
|
22506
|
+
public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
|
|
22507
|
+
|
|
22508
|
+
/**
|
|
22509
|
+
* Creates a new FeatureSet instance using the specified properties.
|
|
22510
|
+
* @param [properties] Properties to set
|
|
22511
|
+
* @returns FeatureSet instance
|
|
22512
|
+
*/
|
|
22513
|
+
public static create(properties?: google.protobuf.IFeatureSet): google.protobuf.FeatureSet;
|
|
22514
|
+
|
|
22515
|
+
/**
|
|
22516
|
+
* Encodes the specified FeatureSet message. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
|
|
22517
|
+
* @param message FeatureSet message or plain object to encode
|
|
22518
|
+
* @param [writer] Writer to encode to
|
|
22519
|
+
* @returns Writer
|
|
22520
|
+
*/
|
|
22521
|
+
public static encode(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22522
|
+
|
|
22523
|
+
/**
|
|
22524
|
+
* Encodes the specified FeatureSet message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
|
|
22525
|
+
* @param message FeatureSet message or plain object to encode
|
|
22526
|
+
* @param [writer] Writer to encode to
|
|
22527
|
+
* @returns Writer
|
|
22528
|
+
*/
|
|
22529
|
+
public static encodeDelimited(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22530
|
+
|
|
22531
|
+
/**
|
|
22532
|
+
* Decodes a FeatureSet message from the specified reader or buffer.
|
|
22533
|
+
* @param reader Reader or buffer to decode from
|
|
22534
|
+
* @param [length] Message length if known beforehand
|
|
22535
|
+
* @returns FeatureSet
|
|
22536
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22537
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22538
|
+
*/
|
|
22539
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet;
|
|
22540
|
+
|
|
22541
|
+
/**
|
|
22542
|
+
* Decodes a FeatureSet message from the specified reader or buffer, length delimited.
|
|
22543
|
+
* @param reader Reader or buffer to decode from
|
|
22544
|
+
* @returns FeatureSet
|
|
22545
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22546
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22547
|
+
*/
|
|
22548
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet;
|
|
22549
|
+
|
|
22550
|
+
/**
|
|
22551
|
+
* Verifies a FeatureSet message.
|
|
22552
|
+
* @param message Plain object to verify
|
|
22553
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
22554
|
+
*/
|
|
22555
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
22556
|
+
|
|
22557
|
+
/**
|
|
22558
|
+
* Creates a FeatureSet message from a plain object. Also converts values to their respective internal types.
|
|
22559
|
+
* @param object Plain object
|
|
22560
|
+
* @returns FeatureSet
|
|
22561
|
+
*/
|
|
22562
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet;
|
|
22563
|
+
|
|
22564
|
+
/**
|
|
22565
|
+
* Creates a plain object from a FeatureSet message. Also converts values to other types if specified.
|
|
22566
|
+
* @param message FeatureSet
|
|
22567
|
+
* @param [options] Conversion options
|
|
22568
|
+
* @returns Plain object
|
|
22569
|
+
*/
|
|
22570
|
+
public static toObject(message: google.protobuf.FeatureSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
22571
|
+
|
|
22572
|
+
/**
|
|
22573
|
+
* Converts this FeatureSet to JSON.
|
|
22574
|
+
* @returns JSON object
|
|
22575
|
+
*/
|
|
22576
|
+
public toJSON(): { [k: string]: any };
|
|
22577
|
+
|
|
22578
|
+
/**
|
|
22579
|
+
* Gets the default type url for FeatureSet
|
|
22580
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
22581
|
+
* @returns The default type url
|
|
22582
|
+
*/
|
|
22583
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
22584
|
+
}
|
|
22585
|
+
|
|
22586
|
+
namespace FeatureSet {
|
|
22587
|
+
|
|
22588
|
+
/** FieldPresence enum. */
|
|
22589
|
+
enum FieldPresence {
|
|
22590
|
+
FIELD_PRESENCE_UNKNOWN = 0,
|
|
22591
|
+
EXPLICIT = 1,
|
|
22592
|
+
IMPLICIT = 2,
|
|
22593
|
+
LEGACY_REQUIRED = 3
|
|
22594
|
+
}
|
|
22595
|
+
|
|
22596
|
+
/** EnumType enum. */
|
|
22597
|
+
enum EnumType {
|
|
22598
|
+
ENUM_TYPE_UNKNOWN = 0,
|
|
22599
|
+
OPEN = 1,
|
|
22600
|
+
CLOSED = 2
|
|
22601
|
+
}
|
|
22602
|
+
|
|
22603
|
+
/** RepeatedFieldEncoding enum. */
|
|
22604
|
+
enum RepeatedFieldEncoding {
|
|
22605
|
+
REPEATED_FIELD_ENCODING_UNKNOWN = 0,
|
|
22606
|
+
PACKED = 1,
|
|
22607
|
+
EXPANDED = 2
|
|
22608
|
+
}
|
|
22609
|
+
|
|
22610
|
+
/** Utf8Validation enum. */
|
|
22611
|
+
enum Utf8Validation {
|
|
22612
|
+
UTF8_VALIDATION_UNKNOWN = 0,
|
|
22613
|
+
VERIFY = 2,
|
|
22614
|
+
NONE = 3
|
|
22615
|
+
}
|
|
22616
|
+
|
|
22617
|
+
/** MessageEncoding enum. */
|
|
22618
|
+
enum MessageEncoding {
|
|
22619
|
+
MESSAGE_ENCODING_UNKNOWN = 0,
|
|
22620
|
+
LENGTH_PREFIXED = 1,
|
|
22621
|
+
DELIMITED = 2
|
|
22622
|
+
}
|
|
22623
|
+
|
|
22624
|
+
/** JsonFormat enum. */
|
|
22625
|
+
enum JsonFormat {
|
|
22626
|
+
JSON_FORMAT_UNKNOWN = 0,
|
|
22627
|
+
ALLOW = 1,
|
|
22628
|
+
LEGACY_BEST_EFFORT = 2
|
|
22629
|
+
}
|
|
22630
|
+
}
|
|
22631
|
+
|
|
22632
|
+
/** Properties of a FeatureSetDefaults. */
|
|
22633
|
+
interface IFeatureSetDefaults {
|
|
22634
|
+
|
|
22635
|
+
/** FeatureSetDefaults defaults */
|
|
22636
|
+
defaults?: (google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[]|null);
|
|
22637
|
+
|
|
22638
|
+
/** FeatureSetDefaults minimumEdition */
|
|
22639
|
+
minimumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
22640
|
+
|
|
22641
|
+
/** FeatureSetDefaults maximumEdition */
|
|
22642
|
+
maximumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
22643
|
+
}
|
|
22644
|
+
|
|
22645
|
+
/** Represents a FeatureSetDefaults. */
|
|
22646
|
+
class FeatureSetDefaults implements IFeatureSetDefaults {
|
|
22647
|
+
|
|
22648
|
+
/**
|
|
22649
|
+
* Constructs a new FeatureSetDefaults.
|
|
22650
|
+
* @param [properties] Properties to set
|
|
22651
|
+
*/
|
|
22652
|
+
constructor(properties?: google.protobuf.IFeatureSetDefaults);
|
|
22653
|
+
|
|
22654
|
+
/** FeatureSetDefaults defaults. */
|
|
22655
|
+
public defaults: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[];
|
|
22656
|
+
|
|
22657
|
+
/** FeatureSetDefaults minimumEdition. */
|
|
22658
|
+
public minimumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
22659
|
+
|
|
22660
|
+
/** FeatureSetDefaults maximumEdition. */
|
|
22661
|
+
public maximumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
22662
|
+
|
|
22663
|
+
/**
|
|
22664
|
+
* Creates a new FeatureSetDefaults instance using the specified properties.
|
|
22665
|
+
* @param [properties] Properties to set
|
|
22666
|
+
* @returns FeatureSetDefaults instance
|
|
22667
|
+
*/
|
|
22668
|
+
public static create(properties?: google.protobuf.IFeatureSetDefaults): google.protobuf.FeatureSetDefaults;
|
|
22669
|
+
|
|
22670
|
+
/**
|
|
22671
|
+
* Encodes the specified FeatureSetDefaults message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
|
|
22672
|
+
* @param message FeatureSetDefaults message or plain object to encode
|
|
22673
|
+
* @param [writer] Writer to encode to
|
|
22674
|
+
* @returns Writer
|
|
22675
|
+
*/
|
|
22676
|
+
public static encode(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22677
|
+
|
|
22678
|
+
/**
|
|
22679
|
+
* Encodes the specified FeatureSetDefaults message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
|
|
22680
|
+
* @param message FeatureSetDefaults message or plain object to encode
|
|
22681
|
+
* @param [writer] Writer to encode to
|
|
22682
|
+
* @returns Writer
|
|
22683
|
+
*/
|
|
22684
|
+
public static encodeDelimited(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22685
|
+
|
|
22686
|
+
/**
|
|
22687
|
+
* Decodes a FeatureSetDefaults message from the specified reader or buffer.
|
|
22688
|
+
* @param reader Reader or buffer to decode from
|
|
22689
|
+
* @param [length] Message length if known beforehand
|
|
22690
|
+
* @returns FeatureSetDefaults
|
|
22691
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22692
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22693
|
+
*/
|
|
22694
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults;
|
|
22695
|
+
|
|
22696
|
+
/**
|
|
22697
|
+
* Decodes a FeatureSetDefaults message from the specified reader or buffer, length delimited.
|
|
22698
|
+
* @param reader Reader or buffer to decode from
|
|
22699
|
+
* @returns FeatureSetDefaults
|
|
22700
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22701
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22702
|
+
*/
|
|
22703
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults;
|
|
22704
|
+
|
|
22705
|
+
/**
|
|
22706
|
+
* Verifies a FeatureSetDefaults message.
|
|
22707
|
+
* @param message Plain object to verify
|
|
22708
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
22709
|
+
*/
|
|
22710
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
22711
|
+
|
|
22712
|
+
/**
|
|
22713
|
+
* Creates a FeatureSetDefaults message from a plain object. Also converts values to their respective internal types.
|
|
22714
|
+
* @param object Plain object
|
|
22715
|
+
* @returns FeatureSetDefaults
|
|
22716
|
+
*/
|
|
22717
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults;
|
|
22718
|
+
|
|
22719
|
+
/**
|
|
22720
|
+
* Creates a plain object from a FeatureSetDefaults message. Also converts values to other types if specified.
|
|
22721
|
+
* @param message FeatureSetDefaults
|
|
22722
|
+
* @param [options] Conversion options
|
|
22723
|
+
* @returns Plain object
|
|
22724
|
+
*/
|
|
22725
|
+
public static toObject(message: google.protobuf.FeatureSetDefaults, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
22726
|
+
|
|
22727
|
+
/**
|
|
22728
|
+
* Converts this FeatureSetDefaults to JSON.
|
|
22729
|
+
* @returns JSON object
|
|
22730
|
+
*/
|
|
22731
|
+
public toJSON(): { [k: string]: any };
|
|
22732
|
+
|
|
22733
|
+
/**
|
|
22734
|
+
* Gets the default type url for FeatureSetDefaults
|
|
22735
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
22736
|
+
* @returns The default type url
|
|
22737
|
+
*/
|
|
22738
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
22739
|
+
}
|
|
22740
|
+
|
|
22741
|
+
namespace FeatureSetDefaults {
|
|
22742
|
+
|
|
22743
|
+
/** Properties of a FeatureSetEditionDefault. */
|
|
22744
|
+
interface IFeatureSetEditionDefault {
|
|
22745
|
+
|
|
22746
|
+
/** FeatureSetEditionDefault edition */
|
|
22747
|
+
edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
22748
|
+
|
|
22749
|
+
/** FeatureSetEditionDefault features */
|
|
22750
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
22751
|
+
}
|
|
22752
|
+
|
|
22753
|
+
/** Represents a FeatureSetEditionDefault. */
|
|
22754
|
+
class FeatureSetEditionDefault implements IFeatureSetEditionDefault {
|
|
22755
|
+
|
|
22756
|
+
/**
|
|
22757
|
+
* Constructs a new FeatureSetEditionDefault.
|
|
22758
|
+
* @param [properties] Properties to set
|
|
22759
|
+
*/
|
|
22760
|
+
constructor(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault);
|
|
22761
|
+
|
|
22762
|
+
/** FeatureSetEditionDefault edition. */
|
|
22763
|
+
public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
22764
|
+
|
|
22765
|
+
/** FeatureSetEditionDefault features. */
|
|
22766
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
22767
|
+
|
|
22768
|
+
/**
|
|
22769
|
+
* Creates a new FeatureSetEditionDefault instance using the specified properties.
|
|
22770
|
+
* @param [properties] Properties to set
|
|
22771
|
+
* @returns FeatureSetEditionDefault instance
|
|
22772
|
+
*/
|
|
22773
|
+
public static create(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
|
|
22774
|
+
|
|
22775
|
+
/**
|
|
22776
|
+
* Encodes the specified FeatureSetEditionDefault message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
|
|
22777
|
+
* @param message FeatureSetEditionDefault message or plain object to encode
|
|
22778
|
+
* @param [writer] Writer to encode to
|
|
22779
|
+
* @returns Writer
|
|
22780
|
+
*/
|
|
22781
|
+
public static encode(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22782
|
+
|
|
22783
|
+
/**
|
|
22784
|
+
* Encodes the specified FeatureSetEditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
|
|
22785
|
+
* @param message FeatureSetEditionDefault message or plain object to encode
|
|
22786
|
+
* @param [writer] Writer to encode to
|
|
22787
|
+
* @returns Writer
|
|
22788
|
+
*/
|
|
22789
|
+
public static encodeDelimited(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22790
|
+
|
|
22791
|
+
/**
|
|
22792
|
+
* Decodes a FeatureSetEditionDefault message from the specified reader or buffer.
|
|
22793
|
+
* @param reader Reader or buffer to decode from
|
|
22794
|
+
* @param [length] Message length if known beforehand
|
|
22795
|
+
* @returns FeatureSetEditionDefault
|
|
22796
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22797
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22798
|
+
*/
|
|
22799
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
|
|
22800
|
+
|
|
22801
|
+
/**
|
|
22802
|
+
* Decodes a FeatureSetEditionDefault message from the specified reader or buffer, length delimited.
|
|
22803
|
+
* @param reader Reader or buffer to decode from
|
|
22804
|
+
* @returns FeatureSetEditionDefault
|
|
22805
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22806
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22807
|
+
*/
|
|
22808
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
|
|
22809
|
+
|
|
22810
|
+
/**
|
|
22811
|
+
* Verifies a FeatureSetEditionDefault message.
|
|
22812
|
+
* @param message Plain object to verify
|
|
22813
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
22814
|
+
*/
|
|
22815
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
22816
|
+
|
|
22817
|
+
/**
|
|
22818
|
+
* Creates a FeatureSetEditionDefault message from a plain object. Also converts values to their respective internal types.
|
|
22819
|
+
* @param object Plain object
|
|
22820
|
+
* @returns FeatureSetEditionDefault
|
|
22821
|
+
*/
|
|
22822
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
|
|
22823
|
+
|
|
22824
|
+
/**
|
|
22825
|
+
* Creates a plain object from a FeatureSetEditionDefault message. Also converts values to other types if specified.
|
|
22826
|
+
* @param message FeatureSetEditionDefault
|
|
22827
|
+
* @param [options] Conversion options
|
|
22828
|
+
* @returns Plain object
|
|
22829
|
+
*/
|
|
22830
|
+
public static toObject(message: google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
22831
|
+
|
|
22832
|
+
/**
|
|
22833
|
+
* Converts this FeatureSetEditionDefault to JSON.
|
|
22834
|
+
* @returns JSON object
|
|
22835
|
+
*/
|
|
22836
|
+
public toJSON(): { [k: string]: any };
|
|
22837
|
+
|
|
22838
|
+
/**
|
|
22839
|
+
* Gets the default type url for FeatureSetEditionDefault
|
|
22840
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
22841
|
+
* @returns The default type url
|
|
22842
|
+
*/
|
|
22843
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
22844
|
+
}
|
|
22845
|
+
}
|
|
22846
|
+
|
|
22093
22847
|
/** Properties of a SourceCodeInfo. */
|
|
22094
22848
|
interface ISourceCodeInfo {
|
|
22095
22849
|
|