Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
4643b66
Remove service name default
jlian Aug 27, 2024
09f5e80
no change
nonsocode Sep 4, 2024
f16cd16
Merge branch 'Azure:main' into remove-serviceName-default
jlian Sep 5, 2024
628bbdd
add new type
nonsocode Sep 5, 2024
4f512fb
tsv
nonsocode Sep 5, 2024
63ffb1d
move to auth
nonsocode Sep 5, 2024
7d33a89
format changes
nonsocode Sep 5, 2024
3a10acd
add non-empty
nonsocode Sep 5, 2024
4567cc3
Merge branch 'main' into nchukwuogor/gen-preview
nonsocode Sep 5, 2024
19bb5f2
Merge branch 'remove-serviceName-default' of https://github.com/jlian…
nonsocode Sep 6, 2024
3655ee4
Merge remote-tracking branch 'upstream/main' into nchukwuogor/gen-pre…
nonsocode Sep 6, 2024
fab0347
chnge back
nonsocode Sep 6, 2024
e86671f
push readme
nonsocode Sep 6, 2024
cfdabb7
fix
nonsocode Sep 6, 2024
3f0fcc7
fix examples
nonsocode Sep 6, 2024
ecceb96
9-15
nonsocode Sep 7, 2024
5b499be
Merge remote-tracking branch 'upstream/main' into nchukwuogor/gen-pre…
nonsocode Sep 7, 2024
13960ed
tsv
nonsocode Sep 7, 2024
0bc95c2
Merge remote-tracking branch 'upstream/main' into nchukwuogor/gen-pre…
nonsocode Sep 13, 2024
98cdd23
non-empty string
nonsocode Sep 16, 2024
02e5ab3
get rid of components
nonsocode Sep 16, 2024
8b6a18a
schema registry id
nonsocode Sep 16, 2024
700b848
components examples
nonsocode Sep 16, 2024
d8a1f9c
Case
nonsocode Sep 16, 2024
c477422
schema registry id
nonsocode Sep 16, 2024
63c35c9
schema registry id
nonsocode Sep 17, 2024
6c5cd7b
fix surpression
nonsocode Sep 17, 2024
777416a
Merge remote-tracking branch 'upstream/main' into nchukwuogor/gen-pre…
nonsocode Sep 17, 2024
037039c
fix sub id
nonsocode Sep 17, 2024
7e70c62
changed
nonsocode Sep 17, 2024
bb557d5
schema reg ref
nonsocode Sep 19, 2024
9bfda71
schemaref
nonsocode Sep 20, 2024
b75a559
Merge remote-tracking branch 'upstream/main' into nchukwuogor/gen-pre…
nonsocode Sep 20, 2024
2577623
fix schema ref
nonsocode Sep 20, 2024
a3b2aa4
Instance update
nonsocode Sep 20, 2024
94bb844
format
nonsocode Sep 20, 2024
c9c9a6e
Merge branch 'main' into nchukwuogor/gen-preview
nonsocode Sep 24, 2024
85beffb
Merge branch 'main' into nchukwuogor/gen-preview
nonsocode Sep 26, 2024
3f67f94
add batching
nonsocode Sep 27, 2024
e18a7f2
Merge branch 'nchukwuogor/gen-preview' of https://github.com/nonsocod…
nonsocode Sep 27, 2024
6c712c6
Merge branch 'main' into nchukwuogor/gen-preview
nonsocode Sep 27, 2024
1d903cb
Revert "add batching"
nonsocode Oct 2, 2024
061b073
Merge branch 'main' into nchukwuogor/gen-preview
nonsocode Oct 2, 2024
a16bddb
remove otel config
nonsocode Oct 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
schema registry id
  • Loading branch information
nonsocode committed Sep 16, 2024
commit c47742206a4e48f8649f94975b45ef155b4f48fe
Original file line number Diff line number Diff line change
Expand Up @@ -247,3 +247,9 @@ union ServiceAccountTokenMethod {
@doc("ServiceAccountToken Option")
ServiceAccountToken: ServiceAccountToken,
}

scalar SchemaRegistryID extends Azure.Core.armResourceIdentifier<[
{
type: "Microsoft.DeviceRegistry/schemaRegistries";
}
]>;
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ model InstanceProperties {
version?: string;

@doc("The reference to the Schema Registry for this AIO Instance.")
@pattern("^[a-z0-9][a-z0-9-]*[a-z0-9]$")
schemaRegistryId: string;
schemaRegistryId: SchemaRegistryID;
}

@doc("The properties of an ADR instance.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5351,9 +5351,8 @@
"readOnly": true
},
"schemaRegistryId": {
"type": "string",
"description": "The reference to the Schema Registry for this AIO Instance.",
"pattern": "^[a-z0-9][a-z0-9-]*[a-z0-9]$"
"$ref": "#/definitions/SchemaRegistryID",
"description": "The reference to the Schema Registry for this AIO Instance."
}
},
"required": [
Expand Down Expand Up @@ -5697,6 +5696,11 @@
]
}
},
"NonEmptyString": {
"type": "string",
"description": "A string with a minimum length of 1.",
"minLength": 1
},
"OpenTelemetryExportConfig": {
"type": "object",
"description": "OpenTelemetry Export Configuration properties",
Expand Down Expand Up @@ -6059,6 +6063,18 @@
]
}
},
"SchemaRegistryID": {
"type": "string",
"format": "arm-id",
"description": "A type definition that refers the id to an Azure Resource Manager resource.",
"x-ms-arm-id-details": {
"allowedResources": [
{
"type": "Microsoft.DeviceRegistry/schemaRegistries"
}
]
}
},
"SchemaRegistryInstanceProperties": {
"type": "object",
"description": "The properties of a Schema Registry instance.",
Expand Down Expand Up @@ -6661,11 +6677,6 @@
"secretRef"
]
},
"NonEmptyString": {
"type": "string",
"description": "A string with a minimum length of 1.",
"minLength": 1
},
"x509CertificateMethod": {
"type": "string",
"description": "x509 Certificate Method",
Expand Down