amf-client-js 5.6.0-SNAPSHOT.7 → 5.6.0-SNAPSHOT.9
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/amf.js +11807 -11773
- package/package.json +1 -1
- package/typings/amf-client-js.d.ts +80 -0
package/package.json
CHANGED
|
@@ -4727,6 +4727,86 @@ declare module "amf-client-js" {
|
|
|
4727
4727
|
|
|
4728
4728
|
withMaxMessageBytes(maxMessageBytes: number): this;
|
|
4729
4729
|
}
|
|
4730
|
+
export class KafkaTopicConfiguration040 implements KafkaTopicConfiguration {
|
|
4731
|
+
customDomainProperties: Array<DomainExtension>;
|
|
4732
|
+
extendsNode: Array<DomainElement>;
|
|
4733
|
+
id: string;
|
|
4734
|
+
isExternalLink: BoolField;
|
|
4735
|
+
position: Range;
|
|
4736
|
+
cleanupPolicy: Array<string>;
|
|
4737
|
+
retentionMs: number;
|
|
4738
|
+
retentionBytes: number;
|
|
4739
|
+
deleteRetentionMs: number;
|
|
4740
|
+
maxMessageBytes: number;
|
|
4741
|
+
|
|
4742
|
+
annotations(): Annotations;
|
|
4743
|
+
|
|
4744
|
+
graph(): Graph;
|
|
4745
|
+
|
|
4746
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
4747
|
+
|
|
4748
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
4749
|
+
|
|
4750
|
+
withId(id: string): this;
|
|
4751
|
+
|
|
4752
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
4753
|
+
|
|
4754
|
+
withCleanupPolicy(cleanupPolicy: Array<string>): this;
|
|
4755
|
+
|
|
4756
|
+
withRetentionMs(retentionMs: number): this;
|
|
4757
|
+
|
|
4758
|
+
withRetentionBytes(retentionBytes: number): this;
|
|
4759
|
+
|
|
4760
|
+
withDeleteRetentionMS(deleteRetentionMS: number): this;
|
|
4761
|
+
|
|
4762
|
+
withMaxMessageBytes(maxMessageBytes: number): this;
|
|
4763
|
+
}
|
|
4764
|
+
export class KafkaTopicConfiguration050 implements KafkaTopicConfiguration {
|
|
4765
|
+
customDomainProperties: Array<DomainExtension>;
|
|
4766
|
+
extendsNode: Array<DomainElement>;
|
|
4767
|
+
id: string;
|
|
4768
|
+
isExternalLink: BoolField;
|
|
4769
|
+
position: Range;
|
|
4770
|
+
cleanupPolicy: Array<string>;
|
|
4771
|
+
retentionMs: number;
|
|
4772
|
+
retentionBytes: number;
|
|
4773
|
+
deleteRetentionMs: number;
|
|
4774
|
+
maxMessageBytes: number;
|
|
4775
|
+
confluentKeySchemaValidation: boolean;
|
|
4776
|
+
confluentKeySubjectNameStrategy: string;
|
|
4777
|
+
confluentValueSchemaValidation: boolean;
|
|
4778
|
+
confluentValueSubjectNameStrategy: string;
|
|
4779
|
+
|
|
4780
|
+
annotations(): Annotations;
|
|
4781
|
+
|
|
4782
|
+
graph(): Graph;
|
|
4783
|
+
|
|
4784
|
+
withCustomDomainProperties(extensions: Array<DomainExtension>): this;
|
|
4785
|
+
|
|
4786
|
+
withExtendsNode(extension: Array<ParametrizedDeclaration>): this;
|
|
4787
|
+
|
|
4788
|
+
withId(id: string): this;
|
|
4789
|
+
|
|
4790
|
+
withIsExternalLink(isExternalLink: boolean): DomainElement;
|
|
4791
|
+
|
|
4792
|
+
withCleanupPolicy(cleanupPolicy: Array<string>): this;
|
|
4793
|
+
|
|
4794
|
+
withRetentionMs(retentionMs: number): this;
|
|
4795
|
+
|
|
4796
|
+
withRetentionBytes(retentionBytes: number): this;
|
|
4797
|
+
|
|
4798
|
+
withDeleteRetentionMS(deleteRetentionMS: number): this;
|
|
4799
|
+
|
|
4800
|
+
withMaxMessageBytes(maxMessageBytes: number): this;
|
|
4801
|
+
|
|
4802
|
+
withConfluentKeySchemaValidation(confluentKeySchemaValidation: string): this;
|
|
4803
|
+
|
|
4804
|
+
withConfluentKeySubjectNameStrategy(confluentKeySubjectNameStrategy: string): this;
|
|
4805
|
+
|
|
4806
|
+
withConfluentValueSchemaValidation(confluentValueSchemaValidation: string): this;
|
|
4807
|
+
|
|
4808
|
+
withConfluentValueSubjectNameStrategy(confluentValueSubjectNameStrategy: string): this;
|
|
4809
|
+
}
|
|
4730
4810
|
export class Key implements DomainElement {
|
|
4731
4811
|
components: Array<PropertyShapePath>;
|
|
4732
4812
|
customDomainProperties: Array<DomainExtension>;
|