@azure/arm-deviceupdate 1.0.0-alpha.20220601.1 → 1.0.0-beta.2
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 +2 -8
- package/README.md +7 -7
- package/dist/index.js +42 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/deviceUpdate.js +1 -1
- package/dist-esm/src/deviceUpdate.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +61 -18
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +41 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/package.json +4 -5
- package/review/arm-deviceupdate.api.md +29 -68
- package/src/deviceUpdate.ts +1 -1
- package/src/models/index.ts +68 -24
- package/types/arm-deviceupdate.d.ts +61 -18
|
@@ -5,7 +5,7 @@ import { PollerLike } from '@azure/core-lro';
|
|
|
5
5
|
import { PollOperationState } from '@azure/core-lro';
|
|
6
6
|
|
|
7
7
|
/** Device Update account details. */
|
|
8
|
-
export declare
|
|
8
|
+
export declare interface Account extends TrackedResource {
|
|
9
9
|
/** The type of identity used for the resource. */
|
|
10
10
|
identity?: ManagedServiceIdentity;
|
|
11
11
|
/**
|
|
@@ -29,7 +29,7 @@ export declare type Account = TrackedResource & {
|
|
|
29
29
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
30
30
|
*/
|
|
31
31
|
readonly locations?: Location_2[];
|
|
32
|
-
}
|
|
32
|
+
}
|
|
33
33
|
|
|
34
34
|
/** List of Accounts. */
|
|
35
35
|
export declare interface AccountList {
|
|
@@ -189,12 +189,12 @@ export declare interface AccountsUpdateOptionalParams extends coreClient.Operati
|
|
|
189
189
|
export declare type AccountsUpdateResponse = Account;
|
|
190
190
|
|
|
191
191
|
/** Request payload used to update and existing Accounts. */
|
|
192
|
-
export declare
|
|
192
|
+
export declare interface AccountUpdate extends TagUpdate {
|
|
193
193
|
/** The type of identity used for the resource. */
|
|
194
194
|
identity?: ManagedServiceIdentity;
|
|
195
195
|
/** The geo-location where the resource lives */
|
|
196
196
|
location?: string;
|
|
197
|
-
}
|
|
197
|
+
}
|
|
198
198
|
|
|
199
199
|
/**
|
|
200
200
|
* Defines values for ActionType. \
|
|
@@ -423,7 +423,7 @@ export declare interface GroupConnectivityInformation {
|
|
|
423
423
|
export declare type GroupIdProvisioningState = string;
|
|
424
424
|
|
|
425
425
|
/** The group information for creating a private endpoint on an Account */
|
|
426
|
-
export declare
|
|
426
|
+
export declare interface GroupInformation extends ProxyResource {
|
|
427
427
|
/**
|
|
428
428
|
* The private link resource group id.
|
|
429
429
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
@@ -441,19 +441,19 @@ export declare type GroupInformation = ProxyResource & {
|
|
|
441
441
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
442
442
|
*/
|
|
443
443
|
readonly provisioningState?: GroupIdProvisioningState;
|
|
444
|
-
}
|
|
444
|
+
}
|
|
445
445
|
|
|
446
446
|
/** The properties for a group information object */
|
|
447
|
-
export declare
|
|
447
|
+
export declare interface GroupInformationProperties extends PrivateLinkResourceProperties {
|
|
448
448
|
/**
|
|
449
449
|
* The provisioning state of private link group ID.
|
|
450
450
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
451
451
|
*/
|
|
452
452
|
readonly provisioningState?: GroupIdProvisioningState;
|
|
453
|
-
}
|
|
453
|
+
}
|
|
454
454
|
|
|
455
455
|
/** Device Update instance details. */
|
|
456
|
-
export declare
|
|
456
|
+
export declare interface Instance extends TrackedResource {
|
|
457
457
|
/**
|
|
458
458
|
* Provisioning state.
|
|
459
459
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
@@ -470,7 +470,7 @@ export declare type Instance = TrackedResource & {
|
|
|
470
470
|
enableDiagnostics?: boolean;
|
|
471
471
|
/** Customer-initiated diagnostic log collection storage properties */
|
|
472
472
|
diagnosticStorageProperties?: DiagnosticStorageProperties;
|
|
473
|
-
}
|
|
473
|
+
}
|
|
474
474
|
|
|
475
475
|
/** List of Instances. */
|
|
476
476
|
export declare interface InstanceList {
|
|
@@ -614,98 +614,139 @@ export declare interface IotHubSettings {
|
|
|
614
614
|
|
|
615
615
|
/** Known values of {@link ActionType} that the service accepts. */
|
|
616
616
|
export declare enum KnownActionType {
|
|
617
|
+
/** Internal */
|
|
617
618
|
Internal = "Internal"
|
|
618
619
|
}
|
|
619
620
|
|
|
620
621
|
/** Known values of {@link AuthenticationType} that the service accepts. */
|
|
621
622
|
export declare enum KnownAuthenticationType {
|
|
623
|
+
/** KeyBased */
|
|
622
624
|
KeyBased = "KeyBased"
|
|
623
625
|
}
|
|
624
626
|
|
|
625
627
|
/** Known values of {@link CheckNameAvailabilityReason} that the service accepts. */
|
|
626
628
|
export declare enum KnownCheckNameAvailabilityReason {
|
|
629
|
+
/** Invalid */
|
|
627
630
|
Invalid = "Invalid",
|
|
631
|
+
/** AlreadyExists */
|
|
628
632
|
AlreadyExists = "AlreadyExists"
|
|
629
633
|
}
|
|
630
634
|
|
|
631
635
|
/** Known values of {@link CreatedByType} that the service accepts. */
|
|
632
636
|
export declare enum KnownCreatedByType {
|
|
637
|
+
/** User */
|
|
633
638
|
User = "User",
|
|
639
|
+
/** Application */
|
|
634
640
|
Application = "Application",
|
|
641
|
+
/** ManagedIdentity */
|
|
635
642
|
ManagedIdentity = "ManagedIdentity",
|
|
643
|
+
/** Key */
|
|
636
644
|
Key = "Key"
|
|
637
645
|
}
|
|
638
646
|
|
|
639
647
|
/** Known values of {@link GroupIdProvisioningState} that the service accepts. */
|
|
640
648
|
export declare enum KnownGroupIdProvisioningState {
|
|
649
|
+
/** Succeeded */
|
|
641
650
|
Succeeded = "Succeeded",
|
|
651
|
+
/** Failed */
|
|
642
652
|
Failed = "Failed",
|
|
653
|
+
/** Canceled */
|
|
643
654
|
Canceled = "Canceled"
|
|
644
655
|
}
|
|
645
656
|
|
|
646
657
|
/** Known values of {@link ManagedServiceIdentityType} that the service accepts. */
|
|
647
658
|
export declare enum KnownManagedServiceIdentityType {
|
|
659
|
+
/** None */
|
|
648
660
|
None = "None",
|
|
661
|
+
/** SystemAssigned */
|
|
649
662
|
SystemAssigned = "SystemAssigned",
|
|
663
|
+
/** UserAssigned */
|
|
650
664
|
UserAssigned = "UserAssigned",
|
|
665
|
+
/** SystemAssignedUserAssigned */
|
|
651
666
|
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned"
|
|
652
667
|
}
|
|
653
668
|
|
|
654
669
|
/** Known values of {@link Origin} that the service accepts. */
|
|
655
670
|
export declare enum KnownOrigin {
|
|
671
|
+
/** User */
|
|
656
672
|
User = "user",
|
|
673
|
+
/** System */
|
|
657
674
|
System = "system",
|
|
675
|
+
/** UserSystem */
|
|
658
676
|
UserSystem = "user,system"
|
|
659
677
|
}
|
|
660
678
|
|
|
661
679
|
/** Known values of {@link PrivateEndpointConnectionProvisioningState} that the service accepts. */
|
|
662
680
|
export declare enum KnownPrivateEndpointConnectionProvisioningState {
|
|
681
|
+
/** Succeeded */
|
|
663
682
|
Succeeded = "Succeeded",
|
|
683
|
+
/** Creating */
|
|
664
684
|
Creating = "Creating",
|
|
685
|
+
/** Deleting */
|
|
665
686
|
Deleting = "Deleting",
|
|
687
|
+
/** Failed */
|
|
666
688
|
Failed = "Failed"
|
|
667
689
|
}
|
|
668
690
|
|
|
669
691
|
/** Known values of {@link PrivateEndpointConnectionProxyProvisioningState} that the service accepts. */
|
|
670
692
|
export declare enum KnownPrivateEndpointConnectionProxyProvisioningState {
|
|
693
|
+
/** Succeeded */
|
|
671
694
|
Succeeded = "Succeeded",
|
|
695
|
+
/** Creating */
|
|
672
696
|
Creating = "Creating",
|
|
697
|
+
/** Deleting */
|
|
673
698
|
Deleting = "Deleting",
|
|
699
|
+
/** Failed */
|
|
674
700
|
Failed = "Failed"
|
|
675
701
|
}
|
|
676
702
|
|
|
677
703
|
/** Known values of {@link PrivateEndpointServiceConnectionStatus} that the service accepts. */
|
|
678
704
|
export declare enum KnownPrivateEndpointServiceConnectionStatus {
|
|
705
|
+
/** Pending */
|
|
679
706
|
Pending = "Pending",
|
|
707
|
+
/** Approved */
|
|
680
708
|
Approved = "Approved",
|
|
709
|
+
/** Rejected */
|
|
681
710
|
Rejected = "Rejected"
|
|
682
711
|
}
|
|
683
712
|
|
|
684
713
|
/** Known values of {@link ProvisioningState} that the service accepts. */
|
|
685
714
|
export declare enum KnownProvisioningState {
|
|
715
|
+
/** Succeeded */
|
|
686
716
|
Succeeded = "Succeeded",
|
|
717
|
+
/** Deleted */
|
|
687
718
|
Deleted = "Deleted",
|
|
719
|
+
/** Failed */
|
|
688
720
|
Failed = "Failed",
|
|
721
|
+
/** Canceled */
|
|
689
722
|
Canceled = "Canceled",
|
|
723
|
+
/** Accepted */
|
|
690
724
|
Accepted = "Accepted",
|
|
725
|
+
/** Creating */
|
|
691
726
|
Creating = "Creating"
|
|
692
727
|
}
|
|
693
728
|
|
|
694
729
|
/** Known values of {@link PublicNetworkAccess} that the service accepts. */
|
|
695
730
|
export declare enum KnownPublicNetworkAccess {
|
|
731
|
+
/** Enabled */
|
|
696
732
|
Enabled = "Enabled",
|
|
733
|
+
/** Disabled */
|
|
697
734
|
Disabled = "Disabled"
|
|
698
735
|
}
|
|
699
736
|
|
|
700
737
|
/** Known values of {@link Role} that the service accepts. */
|
|
701
738
|
export declare enum KnownRole {
|
|
739
|
+
/** Primary */
|
|
702
740
|
Primary = "Primary",
|
|
741
|
+
/** Failover */
|
|
703
742
|
Failover = "Failover"
|
|
704
743
|
}
|
|
705
744
|
|
|
706
745
|
/** Known values of {@link Sku} that the service accepts. */
|
|
707
746
|
export declare enum KnownSku {
|
|
747
|
+
/** Free */
|
|
708
748
|
Free = "Free",
|
|
749
|
+
/** Standard */
|
|
709
750
|
Standard = "Standard"
|
|
710
751
|
}
|
|
711
752
|
|
|
@@ -856,7 +897,7 @@ export declare interface PrivateEndpoint {
|
|
|
856
897
|
}
|
|
857
898
|
|
|
858
899
|
/** The Private Endpoint Connection resource. */
|
|
859
|
-
export declare
|
|
900
|
+
export declare interface PrivateEndpointConnection extends Resource {
|
|
860
901
|
/** The resource of private end point. */
|
|
861
902
|
privateEndpoint?: PrivateEndpoint;
|
|
862
903
|
/** A collection of information about the state of the connection between service consumer and provider. */
|
|
@@ -868,7 +909,7 @@ export declare type PrivateEndpointConnection = Resource & {
|
|
|
868
909
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
869
910
|
*/
|
|
870
911
|
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
|
871
|
-
}
|
|
912
|
+
}
|
|
872
913
|
|
|
873
914
|
/** List of private endpoint connection associated with the specified storage account */
|
|
874
915
|
export declare interface PrivateEndpointConnectionListResult {
|
|
@@ -1010,13 +1051,13 @@ export declare interface PrivateEndpointConnectionProxiesValidateOptionalParams
|
|
|
1010
1051
|
}
|
|
1011
1052
|
|
|
1012
1053
|
/** Private endpoint connection proxy details. */
|
|
1013
|
-
export declare
|
|
1054
|
+
export declare interface PrivateEndpointConnectionProxy extends ProxyResource, PrivateEndpointConnectionProxyProperties {
|
|
1014
1055
|
/**
|
|
1015
1056
|
* The provisioning state of the private endpoint connection proxy resource.
|
|
1016
1057
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1017
1058
|
*/
|
|
1018
1059
|
readonly provisioningState?: PrivateEndpointConnectionProxyProvisioningState;
|
|
1019
|
-
}
|
|
1060
|
+
}
|
|
1020
1061
|
|
|
1021
1062
|
/** The available private endpoint connection proxies for an Account (not to be used by anyone, here because of ARM requirements) */
|
|
1022
1063
|
export declare interface PrivateEndpointConnectionProxyListResult {
|
|
@@ -1257,7 +1298,8 @@ export declare interface PrivateLinkServiceProxy {
|
|
|
1257
1298
|
}
|
|
1258
1299
|
|
|
1259
1300
|
/** Remote private endpoint connection details. */
|
|
1260
|
-
export declare
|
|
1301
|
+
export declare interface PrivateLinkServiceProxyRemotePrivateEndpointConnection extends RemotePrivateEndpointConnection {
|
|
1302
|
+
}
|
|
1261
1303
|
|
|
1262
1304
|
/**
|
|
1263
1305
|
* Defines values for ProvisioningState. \
|
|
@@ -1274,7 +1316,8 @@ export declare type PrivateLinkServiceProxyRemotePrivateEndpointConnection = Rem
|
|
|
1274
1316
|
export declare type ProvisioningState = string;
|
|
1275
1317
|
|
|
1276
1318
|
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
|
1277
|
-
export declare
|
|
1319
|
+
export declare interface ProxyResource extends Resource {
|
|
1320
|
+
}
|
|
1278
1321
|
|
|
1279
1322
|
/**
|
|
1280
1323
|
* Defines values for PublicNetworkAccess. \
|
|
@@ -1386,14 +1429,14 @@ export declare interface TagUpdate {
|
|
|
1386
1429
|
}
|
|
1387
1430
|
|
|
1388
1431
|
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
|
1389
|
-
export declare
|
|
1432
|
+
export declare interface TrackedResource extends Resource {
|
|
1390
1433
|
/** Resource tags. */
|
|
1391
1434
|
tags?: {
|
|
1392
1435
|
[propertyName: string]: string;
|
|
1393
1436
|
};
|
|
1394
1437
|
/** The geo-location where the resource lives */
|
|
1395
1438
|
location: string;
|
|
1396
|
-
}
|
|
1439
|
+
}
|
|
1397
1440
|
|
|
1398
1441
|
/** User assigned identity properties */
|
|
1399
1442
|
export declare interface UserAssignedIdentity {
|