CloudServiceType
A CloudServiceType is a classification with hierarchical information of CloudService. A CloudServiceType provides information about which group a specific Resource belongs to and which Services are in it.
Package : spaceone.api.inventory.v1
CloudServiceType
CloudServiceType Methods:
create
Creates a new CloudServiceType. You must specify the name, provider, and group parameters to create a CloudServiceType. One or several CloudServiceTypes exist in a specific group, and each CloudServiceType is identified by the name parameter.
POST /inventory/v1/cloud-service-type/create
{{< tabs " create " >}}
{{< tab "Request Example" >}}
name (string)
Requiredprovider (string)
Requiredgroup (string)
Requiredservice_code (string)
is_primary (bool)
is_major (bool)
resource_type (string)
metadata (Struct)
labels (ListValue)
tags (Struct)
{{< highlight json >}} { "name": "API-TEST", "provider": "aws", "group": "APIGateway", "service_code": "AmazonApiGateway", "is_primary": true, "is_major": true, "resource_type": "inventory.CloudService", "metadata": {}, "labels": [ "Networking" ], "tags": { "a": "b" } } {{< /highlight >}} {{< /tab >}}
{{< tab "Response Example" >}}
cloud_service_type_id (string)
Requiredname (string)
Requiredprovider (string)
Requiredgroup (string)
Requiredcloud_service_type_key (string)
Requiredservice_code (string)
Requiredis_primary (bool)
Requiredis_major (bool)
Requiredresource_type (string)
Requiredmetadata (Struct)
Requiredtags (Struct)
Requiredlabels (ListValue)
Requireddomain_id (string)
Requiredworkspace_id (string)
Requiredcreated_at (string)
Requiredupdated_at (string)
Required
{{< highlight json >}} { "cloud_service_type_id": "cloud-svc-type-27dd73ac89f8", "name": "API-TEST", "provider": "aws", "group": "APIGateway", "cloud_service_type_key": "aws.APIGateway.API-TEST", "service_code": "AmazonApiGateway", "is_primary": true, "is_major": true, "resource_type": "inventory.CloudService", "metadata": {}, "tags": { "a": "b" }, "labels": [ "Networking" ], "domain_id": "domain-58010aa2e451", "workspace_id": "workspace-abcde12345", "created_at": "2022-06-22T01:38:16.301Z", "updated_at": "2022-06-22T01:38:16.301Z" } {{< /highlight >}} {{< /tab >}}
{{< /tabs >}}
update
Updates a specific CloudServiceType. You can make changes in CloudServiceType settings, except for name, provider and group. In particular, you can set the CloudServiceType's priority in a group.
POST /inventory/v1/cloud-service-type/update
{{< tabs " update " >}}
{{< tab "Request Example" >}}
cloud_service_type_id (string)
Requiredservice_code (string)
is_primary (bool)
is_major (bool)
resource_type (string)
metadata (Struct)
labels (ListValue)
tags (Struct)
{{< highlight json >}} { "cloud_service_type_id": "cloud-svc-type-27dd73ac89f8", "service_code": "AmazonApi", "metadata": {}, "labels": [ "Networking2" ], "tags": { "b": "c" } } {{< /highlight >}} {{< /tab >}}
{{< tab "Response Example" >}}
cloud_service_type_id (string)
Requiredname (string)
Requiredprovider (string)
Requiredgroup (string)
Requiredcloud_service_type_key (string)
Requiredservice_code (string)
Requiredis_primary (bool)
Requiredis_major (bool)
Requiredresource_type (string)
Requiredmetadata (Struct)
Requiredtags (Struct)
Requiredlabels (ListValue)
Requireddomain_id (string)
Requiredworkspace_id (string)
Requiredcreated_at (string)
Requiredupdated_at (string)
Required
{{< highlight json >}} { "cloud_service_type_id": "cloud-svc-type-27dd73ac89f8", "name": "API-TEST", "provider": "aws", "group": "APIGateway", "cloud_service_type_key": "aws.APIGateway.API-TEST", "service_code": "AmazonApiGateway", "is_primary": true, "is_major": true, "resource_type": "inventory.CloudService", "metadata": {}, "tags": { "a": "b" }, "labels": [ "Networking" ], "domain_id": "domain-58010aa2e451", "workspace_id": "workspace-abcde12345", "created_at": "2022-06-22T01:38:16.301Z", "updated_at": "2022-06-22T01:38:16.301Z" } {{< /highlight >}} {{< /tab >}}
{{< /tabs >}}
delete
Deletes a specific CloudServiceType. You must specify the cloud_service_type_id of the CloudServiceType to delete.
POST /inventory/v1/cloud-service-type/delete
{{< tabs " delete " >}}
{{< tab "Request Example" >}}
cloud_service_type_id (string)
Required
{{< highlight json >}} { "cloud_service_type_id": "cloud-svc-type-27dd73ac89f8" } {{< /highlight >}} {{< /tab >}}
{{< /tabs >}}
get
Gets a specific CloudServiceType. Prints detailed information about the CloudServiceType.
POST /inventory/v1/cloud-service-type/get
{{< tabs " get " >}}
{{< tab "Request Example" >}}
cloud_service_type_id (string)
Required
{{< highlight json >}} { "cloud_service_type_id": "cloud-svc-type-27dd73ac89f8" } {{< /highlight >}} {{< /tab >}}
{{< tab "Response Example" >}}
cloud_service_type_id (string)
Requiredname (string)
Requiredprovider (string)
Requiredgroup (string)
Requiredcloud_service_type_key (string)
Requiredservice_code (string)
Requiredis_primary (bool)
Requiredis_major (bool)
Requiredresource_type (string)
Requiredmetadata (Struct)
Requiredtags (Struct)
Requiredlabels (ListValue)
Requireddomain_id (string)
Requiredworkspace_id (string)
Requiredcreated_at (string)
Requiredupdated_at (string)
Required
{{< highlight json >}} { "cloud_service_type_id": "cloud-svc-type-27dd73ac89f8", "name": "API-TEST", "provider": "aws", "group": "APIGateway", "cloud_service_type_key": "aws.APIGateway.API-TEST", "service_code": "AmazonApiGateway", "is_primary": true, "is_major": true, "resource_type": "inventory.CloudService", "metadata": {}, "tags": { "a": "b" }, "labels": [ "Networking" ], "domain_id": "domain-58010aa2e451", "workspace_id": "workspace-abcde12345", "created_at": "2022-06-22T01:38:16.301Z", "updated_at": "2022-06-22T01:38:16.301Z" } {{< /highlight >}} {{< /tab >}}
{{< /tabs >}}
list
Gets a list of all CloudServiceTypes. You can use a query to get a filtered list of CloudServiceTypes.
POST /inventory/v1/cloud-service-type/list
{{< tabs " list " >}}
{{< tab "Request Example" >}}
query (Query)
cloud_service_type_id (string)
name (string)
provider (string)
group (string)
cloud_service_type_key (string)
service_code (string)
is_primary (bool)
is_major (bool)
resource_type (string)
workspace_id (string)
{{< highlight json >}} { "query": { "filter": [ { "key": "provider", "value": "aws", "operator": "eq" } ] } } {{< /highlight >}} {{< /tab >}}
{{< tab "Response Example" >}}
results (CloudServiceTypeInfo)
RepeatedRequiredtotal_count (int32)
Required
{{< highlight json >}} { "results": [ { "cloud_service_type_id": "cloud-svc-type-7e1c113b39ff", "name": "API", "provider": "aws", "group": "APIGateway", "cloud_service_type_key": "aws.APIGateway.API", "service_code": "AmazonApiGateway", "is_primary": true, "is_major": true, "resource_type": "inventory.CloudService", "metadata": { }, "tags": { "spaceone:icon": "https://spaceone.s3.ap-northeast-2.amazonaws.com/console-assets/icons/cloud-services/aws/Amazon-API-Gateway.svg" }, "labels": [ "Networking" ], "domain_id": "domain-58010aa2e451", "workspace_id": "workspace-abcde12345", "created_at": "2021-06-03T02:29:32.690Z", "updated_at": "2022-06-22T00:04:45.477Z" }, { "cloud_service_type_id": "cloud-svc-type-64a0de601371", "name": "Certificate", "provider": "aws", "group": "CertificateManager", "cloud_service_type_key": "aws.CertificateManager.Certificate", "service_code": "AWSCertificateManager", "is_primary": true, "resource_type": "inventory.CloudService", "metadata": { }, "tags": { "spaceone:icon": "https://spaceone.s3.ap-northeast-2.amazonaws.com/console-assets/icons/cloud-services/aws/AWS-Certificate-Manager.svg" }, "labels": [ "Security" ], "domain_id": "domain-58010aa2e451", "workspace_id": "workspace-abcde12345", "created_at": "2021-06-03T02:29:53.052Z", "updated_at": "2022-06-22T00:05:41.252Z" } ], "total_count": 2 } {{< /highlight >}} {{< /tab >}}
{{< /tabs >}}
stat
POST /inventory/v1/cloud-service-type/stat
Message
CloudServiceTypeInfo
cloud_service_type_id (string)
Requiredname (string)
Requiredprovider (string)
Requiredgroup (string)
Requiredcloud_service_type_key (string)
Requiredservice_code (string)
Requiredis_primary (bool)
Requiredis_major (bool)
Requiredresource_type (string)
Requiredmetadata (Struct)
Requiredtags (Struct)
Requiredlabels (ListValue)
Requireddomain_id (string)
Requiredworkspace_id (string)
Requiredcreated_at (string)
Requiredupdated_at (string)
Required
CloudServiceTypeQuery
query (Query)
cloud_service_type_id (string)
name (string)
provider (string)
group (string)
cloud_service_type_key (string)
service_code (string)
is_primary (bool)
is_major (bool)
resource_type (string)
workspace_id (string)
CloudServiceTypeRequest
cloud_service_type_id (string)
Required
CloudServiceTypeStatQuery
query (StatisticsQuery)
Requireddomain_id (string)
Required
CloudServiceTypesInfo
results (CloudServiceTypeInfo)
RepeatedRequiredtotal_count (int32)
Required
CreateCloudServiceTypeRequest
name (string)
Requiredprovider (string)
Requiredgroup (string)
Requiredservice_code (string)
is_primary (bool)
is_major (bool)
resource_type (string)
metadata (Struct)
labels (ListValue)
tags (Struct)
UpdateCloudServiceTypeRequest
cloud_service_type_id (string)
Requiredservice_code (string)
is_primary (bool)
is_major (bool)
resource_type (string)
metadata (Struct)
labels (ListValue)
tags (Struct)
Last updated