proto_docs/google/cloud/telcoautomation/v1/telcoautomation.rb in google-cloud-telco_automation-v1-0.2.1 vs proto_docs/google/cloud/telcoautomation/v1/telcoautomation.rb in google-cloud-telco_automation-v1-0.3.0

- old
+ new

@@ -329,10 +329,13 @@ # Output only. Source provider is the author of a public blueprint, from # which this deployment is created. # @!attribute [rw] workload_cluster # @return [::String] # Optional. Immutable. The WorkloadCluster on which to create the Deployment. + # This field should only be passed when the deployment_level of the source + # blueprint specifies deployments on workload clusters e.g. + # WORKLOAD_CLUSTER_DEPLOYMENT. # @!attribute [r] deployment_level # @return [::Google::Cloud::TelcoAutomation::V1::DeploymentLevel] # Output only. Attributes to where the deployment can inflict changes. The # value can only be [SINGLE_DEPLOYMENT, MULTI_DEPLOYMENT]. # @!attribute [r] rollback_support @@ -1499,10 +1502,14 @@ # Deleted deployment. STATUS_DELETED = 5 # NFDeploy specific status. Peering in progress. STATUS_PEERING = 10 + + # K8s objects such as NetworkAttachmentDefinition don't have a defined + # status. + STATUS_NOT_APPLICABLE = 11 end # DeploymentLevel of a blueprint signifies where the blueprint will be # applied. module DeploymentLevel @@ -1525,9 +1532,15 @@ # Blueprints at MULTI_DEPLOYMENT level can be # a) Modified in private catalog. # b) Used to create a deployment on orchestration cluster which will create # further hydrated deployments. MULTI_DEPLOYMENT = 3 + + # Blueprints at WORKLOAD_CLUSTER_DEPLOYMENT level can be + # a) Modified in private catalog. + # b) Used to create a deployment on workload cluster by the user, once + # approved. + WORKLOAD_CLUSTER_DEPLOYMENT = 4 end end end end end