@@ -705,6 +705,8 @@ export class ApiManagementClient extends coreClient.ServiceClient {
705705 // (undocumented)
706706 gatewayHostnameConfiguration: GatewayHostnameConfiguration ;
707707 // (undocumented)
708+ globalSchema: GlobalSchema ;
709+ // (undocumented)
708710 group: Group ;
709711 // (undocumented)
710712 groupUser: GroupUser ;
@@ -2745,7 +2747,7 @@ export interface ContentItemCollection {
27452747// @public
27462748export type ContentItemContract = Resource & {
27472749 properties? : {
2748- [propertyName : string ]: Record < string , unknown > ;
2750+ [propertyName : string ]: any ;
27492751 };
27502752};
27512753
@@ -3619,6 +3621,94 @@ export interface GenerateSsoUrlResult {
36193621 value? : string ;
36203622}
36213623
3624+ // @public
3625+ export interface GlobalSchema {
3626+ beginCreateOrUpdate(resourceGroupName : string , serviceName : string , schemaId : string , parameters : GlobalSchemaContract , options ? : GlobalSchemaCreateOrUpdateOptionalParams ): Promise <PollerLike <PollOperationState <GlobalSchemaCreateOrUpdateResponse >, GlobalSchemaCreateOrUpdateResponse >>;
3627+ beginCreateOrUpdateAndWait(resourceGroupName : string , serviceName : string , schemaId : string , parameters : GlobalSchemaContract , options ? : GlobalSchemaCreateOrUpdateOptionalParams ): Promise <GlobalSchemaCreateOrUpdateResponse >;
3628+ delete(resourceGroupName : string , serviceName : string , schemaId : string , ifMatch : string , options ? : GlobalSchemaDeleteOptionalParams ): Promise <void >;
3629+ get(resourceGroupName : string , serviceName : string , schemaId : string , options ? : GlobalSchemaGetOptionalParams ): Promise <GlobalSchemaGetResponse >;
3630+ getEntityTag(resourceGroupName : string , serviceName : string , schemaId : string , options ? : GlobalSchemaGetEntityTagOptionalParams ): Promise <GlobalSchemaGetEntityTagResponse >;
3631+ listByService(resourceGroupName : string , serviceName : string , options ? : GlobalSchemaListByServiceOptionalParams ): PagedAsyncIterableIterator <GlobalSchemaContract >;
3632+ }
3633+
3634+ // @public
3635+ export interface GlobalSchemaCollection {
3636+ count? : number ;
3637+ readonly nextLink? : string ;
3638+ readonly value? : GlobalSchemaContract [];
3639+ }
3640+
3641+ // @public
3642+ export type GlobalSchemaContract = Resource & {
3643+ schemaType? : SchemaType ;
3644+ description? : string ;
3645+ value? : any ;
3646+ document? : Record <string , unknown >;
3647+ };
3648+
3649+ // @public
3650+ export interface GlobalSchemaCreateOrUpdateHeaders {
3651+ eTag? : string ;
3652+ }
3653+
3654+ // @public
3655+ export interface GlobalSchemaCreateOrUpdateOptionalParams extends coreClient .OperationOptions {
3656+ ifMatch? : string ;
3657+ resumeFrom? : string ;
3658+ updateIntervalInMs? : number ;
3659+ }
3660+
3661+ // @public
3662+ export type GlobalSchemaCreateOrUpdateResponse = GlobalSchemaCreateOrUpdateHeaders & GlobalSchemaContract ;
3663+
3664+ // @public
3665+ export interface GlobalSchemaDeleteOptionalParams extends coreClient .OperationOptions {
3666+ }
3667+
3668+ // @public
3669+ export interface GlobalSchemaGetEntityTagHeaders {
3670+ eTag? : string ;
3671+ }
3672+
3673+ // @public
3674+ export interface GlobalSchemaGetEntityTagOptionalParams extends coreClient .OperationOptions {
3675+ }
3676+
3677+ // @public
3678+ export type GlobalSchemaGetEntityTagResponse = GlobalSchemaGetEntityTagHeaders ;
3679+
3680+ // @public
3681+ export interface GlobalSchemaGetHeaders {
3682+ eTag? : string ;
3683+ }
3684+
3685+ // @public
3686+ export interface GlobalSchemaGetOptionalParams extends coreClient .OperationOptions {
3687+ }
3688+
3689+ // @public
3690+ export type GlobalSchemaGetResponse = GlobalSchemaGetHeaders & GlobalSchemaContract ;
3691+
3692+ // @public
3693+ export interface GlobalSchemaListByServiceNextOptionalParams extends coreClient .OperationOptions {
3694+ filter? : string ;
3695+ skip? : number ;
3696+ top? : number ;
3697+ }
3698+
3699+ // @public
3700+ export type GlobalSchemaListByServiceNextResponse = GlobalSchemaCollection ;
3701+
3702+ // @public
3703+ export interface GlobalSchemaListByServiceOptionalParams extends coreClient .OperationOptions {
3704+ filter? : string ;
3705+ skip? : number ;
3706+ top? : number ;
3707+ }
3708+
3709+ // @public
3710+ export type GlobalSchemaListByServiceResponse = GlobalSchemaCollection ;
3711+
36223712// @public
36233713export type GrantType = string ;
36243714
@@ -4557,6 +4647,12 @@ export enum KnownSamplingType {
45574647 Fixed = " fixed"
45584648}
45594649
4650+ // @public
4651+ export enum KnownSchemaType {
4652+ Json = " json" ,
4653+ Xml = " xml"
4654+ }
4655+
45604656// @public
45614657export enum KnownSettingsTypeName {
45624658 // (undocumented)
@@ -6667,6 +6763,9 @@ export type SchemaContract = Resource & {
66676763 components? : Record <string , unknown >;
66686764};
66696765
6766+ // @public
6767+ export type SchemaType = string ;
6768+
66706769// @public
66716770export type SettingsTypeName = string ;
66726771
0 commit comments