# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).
import oci
# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()
# Initialize service client with default config file
cloud_bridge_client = oci.cloud_bridge.InventoryClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
create_asset_response = cloud_bridge_client.create_asset(
create_asset_details=oci.cloud_bridge.models.CreateVmwareVmAssetDetails(
asset_type="VMWARE_VM",
inventory_id="ocid1.test.oc1..<unique_ID>EXAMPLE-inventoryId-Value",
compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
source_key="EXAMPLE-sourceKey-Value",
external_asset_key="EXAMPLE-externalAssetKey-Value",
compute=oci.cloud_bridge.models.ComputeProperties(
primary_ip="EXAMPLE-primaryIp-Value",
dns_name="EXAMPLE-dnsName-Value",
description="EXAMPLE-description-Value",
cores_count=985,
cpu_model="EXAMPLE-cpuModel-Value",
gpu_devices_count=186,
gpu_devices=[
oci.cloud_bridge.models.GpuDevice(
name="EXAMPLE-name-Value",
description="EXAMPLE-description-Value",
cores_count=196,
memory_in_mbs=189,
manufacturer="EXAMPLE-manufacturer-Value")],
threads_per_core_count=191,
memory_in_mbs=254,
is_pmem_enabled=True,
pmem_in_mbs=560,
operating_system="EXAMPLE-operatingSystem-Value",
operating_system_version="EXAMPLE-operatingSystemVersion-Value",
host_name="EXAMPLE-hostName-Value",
power_state="EXAMPLE-powerState-Value",
guest_state="EXAMPLE-guestState-Value",
is_tpm_enabled=True,
connected_networks=103,
nics_count=456,
nics=[
oci.cloud_bridge.models.Nic(
label="EXAMPLE-label-Value",
switch_name="EXAMPLE-switchName-Value",
mac_address="EXAMPLE-macAddress-Value",
mac_address_type="EXAMPLE-macAddressType-Value",
network_name="EXAMPLE-networkName-Value",
ip_addresses=["EXAMPLE--Value"])],
storage_provisioned_in_mbs=513,
disks_count=509,
disks=[
oci.cloud_bridge.models.Disk(
name="EXAMPLE-name-Value",
boot_order=400,
uuid="EXAMPLE-uuid-Value",
uuid_lun="EXAMPLE-uuidLun-Value",
size_in_mbs=634,
location="EXAMPLE-location-Value",
persistent_mode="EXAMPLE-persistentMode-Value",
is_cbt_enabled=False)],
firmware="EXAMPLE-firmware-Value",
latency_sensitivity="EXAMPLE-latencySensitivity-Value",
nvdimms=[
oci.cloud_bridge.models.Nvdimm(
label="EXAMPLE-label-Value",
unit_number=895,
controller_key=863)],
nvdimm_controller=oci.cloud_bridge.models.NvdimmController(
label="EXAMPLE-label-Value",
bus_number=682),
scsi_controller=oci.cloud_bridge.models.ScsiController(
label="EXAMPLE-label-Value",
unit_number=18,
shared_bus="EXAMPLE-sharedBus-Value"),
hardware_version="EXAMPLE-hardwareVersion-Value"),
vm=oci.cloud_bridge.models.VmProperties(
hypervisor_vendor="EXAMPLE-hypervisorVendor-Value",
hypervisor_version="EXAMPLE-hypervisorVersion-Value",
hypervisor_host="EXAMPLE-hypervisorHost-Value"),
vmware_vm=oci.cloud_bridge.models.VmwareVmProperties(
cluster="EXAMPLE-cluster-Value",
customer_fields=["EXAMPLE--Value"],
customer_tags=[
oci.cloud_bridge.models.CustomerTag(
name="EXAMPLE-name-Value",
description="EXAMPLE-description-Value")],
instance_uuid="EXAMPLE-instanceUuid-Value",
path="EXAMPLE-path-Value",
vmware_tools_status="EXAMPLE-vmwareToolsStatus-Value",
is_disks_uuid_enabled=False,
is_disks_cbt_enabled=False,
fault_tolerance_state="EXAMPLE-faultToleranceState-Value",
fault_tolerance_bandwidth=789,
fault_tolerance_secondary_latency=549),
vmware_v_center=oci.cloud_bridge.models.VmwareVCenterProperties(
vcenter_key="EXAMPLE-vcenterKey-Value",
vcenter_version="EXAMPLE-vcenterVersion-Value",
data_center="EXAMPLE-dataCenter-Value"),
display_name="EXAMPLE-displayName-Value",
asset_source_ids=["EXAMPLE--Value"],
freeform_tags={
'EXAMPLE_KEY_1O8oc': 'EXAMPLE_VALUE_fnmkYkNh3gcwNqcG5iCz'},
defined_tags={
'EXAMPLE_KEY_lK6KL': {
'EXAMPLE_KEY_sd3hz': 'EXAMPLE--Value'}}),
opc_request_id="R6LIXVN8U13HEGTQQTG2<unique_ID>",
opc_retry_token="EXAMPLE-opcRetryToken-Value")
# Get the data from response
print(create_asset_response.data)