You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Check if we want to create provider link. Default is True
91
-
_is_provider_link: ClassVar[bool] =True
91
+
_create_provider_link: ClassVar[bool] =True
92
92
# Azure common properties
93
93
etag: Optional[str] =field(default=None, metadata={'description': 'A unique read-only string that changes whenever the resource is updated.'}) # fmt: skip
94
94
provisioning_state: Optional[str] =field(default=None, metadata={'description': 'The current provisioning state.'}) # fmt: skip
tier: Optional[str] =field(default=None, metadata={'description': 'Performance tier of the disk (e. G, p4, s10) as described here: https://azure. Microsoft. Com/en-us/pricing/details/managed-disks/. Does not apply to ultra disks.'}) # fmt: skip
@@ -3693,7 +3693,7 @@ class AzureComputeVirtualMachineSize(MicrosoftResource, BaseInstanceType):
max_data_disk_count: Optional[int] =field(default=None, metadata={'description': 'The maximum number of data disks that can be attached to the virtual machine size.'}) # fmt: skip
3698
3698
memory_in_mb: Optional[int] =field(default=None, metadata={'description': 'The amount of memory, in mb, supported by the virtual machine size.'}) # fmt: skip
3699
3699
number_of_cores: Optional[int] =field(default=None, metadata={'description': 'The number of cores supported by the virtual machine size. For constrained vcpu capable vm sizes, this number represents the total vcpus of quota that the vm uses. For accurate vcpu count, please refer to https://docs. Microsoft. Com/azure/virtual-machines/constrained-vcpu or https://docs. Microsoft. Com/rest/api/compute/resourceskus/list.'}) # fmt: skip
Copy file name to clipboardExpand all lines: plugins/azure/fix_plugin_azure/resource/machinelearning.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2338,7 +2338,7 @@ class AzureMachineLearningVirtualMachineSize(MicrosoftResource, BaseInstanceType
2338
2338
"instance_cores": S("vCPUs"),
2339
2339
"instance_memory": S("memoryGB"),
2340
2340
}
2341
-
_is_provider_link: ClassVar[bool] =False
2341
+
_create_provider_link: ClassVar[bool] =False
2342
2342
estimated_vm_prices: Optional[AzureEstimatedVMPrices] =field(default=None, metadata={'description': 'The estimated price info for using a VM.'}) # fmt: skip
2343
2343
family: Optional[str] =field(default=None, metadata={'description': 'The family name of the virtual machine size.'}) # fmt: skip
2344
2344
gpus: Optional[int] =field(default=None, metadata={'description': 'The number of gPUs supported by the virtual machine size.'}) # fmt: skip
Copy file name to clipboardExpand all lines: plugins/azure/fix_plugin_azure/resource/microsoft_graph.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ class MicrosoftGraphEntity(MicrosoftResource):
26
26
"id": S("id"),
27
27
"deleted_date_time": S("deletedDateTime"),
28
28
}
29
-
_is_provider_link: ClassVar[bool] =False
29
+
_create_provider_link: ClassVar[bool] =False
30
30
deleted_date_time: Optional[datetime] =field(default=None, metadata={'description': 'Date and time when this object was deleted. Always null when the object hasn\'t been deleted.'}) # fmt: skip
0 commit comments