google-cloud-saas_platform-saas_service_mgmt-v1beta1 0.5.2 → 0.6.0
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.
- checksums.yaml +4 -4
- data/lib/google/cloud/saas_platform/saas_service_mgmt/v1beta1/saas_deployments/paths.rb +89 -0
- data/lib/google/cloud/saas_platform/saas_service_mgmt/v1beta1/version.rb +1 -1
- data/lib/google/cloud/saasplatform/saasservicemgmt/v1beta1/common_pb.rb +5 -1
- data/lib/google/cloud/saasplatform/saasservicemgmt/v1beta1/deployments_resources_pb.rb +8 -1
- data/lib/google/cloud/saasplatform/saasservicemgmt/v1beta1/rollouts_resources_pb.rb +1 -1
- data/proto_docs/google/cloud/saasplatform/saasservicemgmt/v1beta1/common.rb +70 -0
- data/proto_docs/google/cloud/saasplatform/saasservicemgmt/v1beta1/deployments_resources.rb +160 -1
- data/proto_docs/google/cloud/saasplatform/saasservicemgmt/v1beta1/rollouts_resources.rb +25 -8
- data/proto_docs/google/rpc/status.rb +48 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e559496c04e5e63eda07cd54d6b6e7887fa0fba8e5429c4e07d9a7c07c4c404
|
|
4
|
+
data.tar.gz: e1a7c5e0875ce2d261877c9f11be8baffcefaefbb3dcc21deb0bc616bca91a9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d466c1b1a0e192a0612651861b66ba3869c0159e8705f6bfb5b17f6b760f677f751c99a26b3760303adbff61f44d6c984cdd3b86c71e5117253dcdafe7353726
|
|
7
|
+
data.tar.gz: c37487a3b10b43884b1054f72fc2cdf78d740bb0f007e7f29469737c0c015d92136054580778de30de0f9dcefae7413d94e51a76fea713658a69b099afcdf8b1
|
|
@@ -25,6 +25,95 @@ module Google
|
|
|
25
25
|
module SaasDeployments
|
|
26
26
|
# Path helper methods for the SaasDeployments API.
|
|
27
27
|
module Paths
|
|
28
|
+
##
|
|
29
|
+
# Create a fully-qualified Application resource string.
|
|
30
|
+
#
|
|
31
|
+
# The resource will be in the following format:
|
|
32
|
+
#
|
|
33
|
+
# `projects/{project}/locations/{location}/applications/{application}`
|
|
34
|
+
#
|
|
35
|
+
# @param project [String]
|
|
36
|
+
# @param location [String]
|
|
37
|
+
# @param application [String]
|
|
38
|
+
#
|
|
39
|
+
# @return [::String]
|
|
40
|
+
def application_path project:, location:, application:
|
|
41
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
|
42
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
|
43
|
+
|
|
44
|
+
"projects/#{project}/locations/#{location}/applications/#{application}"
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
##
|
|
48
|
+
# Create a fully-qualified ApplicationTemplate resource string.
|
|
49
|
+
#
|
|
50
|
+
# @overload application_template_path(project:, location:, space:, application_template:)
|
|
51
|
+
# The resource will be in the following format:
|
|
52
|
+
#
|
|
53
|
+
# `projects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{application_template}`
|
|
54
|
+
#
|
|
55
|
+
# @param project [String]
|
|
56
|
+
# @param location [String]
|
|
57
|
+
# @param space [String]
|
|
58
|
+
# @param application_template [String]
|
|
59
|
+
#
|
|
60
|
+
# @overload application_template_path(project:, location:, workspace:, application_template:)
|
|
61
|
+
# The resource will be in the following format:
|
|
62
|
+
#
|
|
63
|
+
# `projects/{project}/locations/{location}/workspaces/{workspace}/applicationTemplates/{application_template}`
|
|
64
|
+
#
|
|
65
|
+
# @param project [String]
|
|
66
|
+
# @param location [String]
|
|
67
|
+
# @param workspace [String]
|
|
68
|
+
# @param application_template [String]
|
|
69
|
+
#
|
|
70
|
+
# @return [::String]
|
|
71
|
+
def application_template_path **args
|
|
72
|
+
resources = {
|
|
73
|
+
"application_template:location:project:space" => (proc do |project:, location:, space:, application_template:|
|
|
74
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
|
75
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
|
76
|
+
raise ::ArgumentError, "space cannot contain /" if space.to_s.include? "/"
|
|
77
|
+
|
|
78
|
+
"projects/#{project}/locations/#{location}/spaces/#{space}/applicationTemplates/#{application_template}"
|
|
79
|
+
end),
|
|
80
|
+
"application_template:location:project:workspace" => (proc do |project:, location:, workspace:, application_template:|
|
|
81
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
|
82
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
|
83
|
+
raise ::ArgumentError, "workspace cannot contain /" if workspace.to_s.include? "/"
|
|
84
|
+
|
|
85
|
+
"projects/#{project}/locations/#{location}/workspaces/#{workspace}/applicationTemplates/#{application_template}"
|
|
86
|
+
end)
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
resource = resources[args.keys.sort.join(":")]
|
|
90
|
+
raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
|
|
91
|
+
resource.call(**args)
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
##
|
|
95
|
+
# Create a fully-qualified ApplicationTemplateRevision resource string.
|
|
96
|
+
#
|
|
97
|
+
# The resource will be in the following format:
|
|
98
|
+
#
|
|
99
|
+
# `projects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{application_template}/revisions/{revision}`
|
|
100
|
+
#
|
|
101
|
+
# @param project [String]
|
|
102
|
+
# @param location [String]
|
|
103
|
+
# @param space [String]
|
|
104
|
+
# @param application_template [String]
|
|
105
|
+
# @param revision [String]
|
|
106
|
+
#
|
|
107
|
+
# @return [::String]
|
|
108
|
+
def application_template_revision_path project:, location:, space:, application_template:, revision:
|
|
109
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
|
110
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
|
111
|
+
raise ::ArgumentError, "space cannot contain /" if space.to_s.include? "/"
|
|
112
|
+
raise ::ArgumentError, "application_template cannot contain /" if application_template.to_s.include? "/"
|
|
113
|
+
|
|
114
|
+
"projects/#{project}/locations/#{location}/spaces/#{space}/applicationTemplates/#{application_template}/revisions/#{revision}"
|
|
115
|
+
end
|
|
116
|
+
|
|
28
117
|
##
|
|
29
118
|
# Create a fully-qualified Location resource string.
|
|
30
119
|
#
|
|
@@ -5,10 +5,11 @@
|
|
|
5
5
|
require 'google/protobuf'
|
|
6
6
|
|
|
7
7
|
require 'google/api/field_behavior_pb'
|
|
8
|
+
require 'google/api/resource_pb'
|
|
8
9
|
require 'google/protobuf/timestamp_pb'
|
|
9
10
|
|
|
10
11
|
|
|
11
|
-
descriptor_data = "\n>google/cloud/saasplatform/saasservicemgmt/v1beta1/common.proto\x12\x31google.cloud.saasplatform.saasservicemgmt.v1beta1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"O\n\tBlueprint\x12\x17\n\x07package\x18\x01 \x01(\tB\x06\xe0\x41\x01\xe0\x41\x05\x12\x13\n\x06\x65ngine\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x14\n\x07version\x18\x03 \x01(\tB\x03\xe0\x41\x03\"\
|
|
12
|
+
descriptor_data = "\n>google/cloud/saasplatform/saasservicemgmt/v1beta1/common.proto\x12\x31google.cloud.saasplatform.saasservicemgmt.v1beta1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"O\n\tBlueprint\x12\x17\n\x07package\x18\x01 \x01(\tB\x06\xe0\x41\x01\xe0\x41\x05\x12\x13\n\x06\x65ngine\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x14\n\x07version\x18\x03 \x01(\tB\x03\xe0\x41\x03\"\xeb\x01\n\x0cUnitVariable\x12\x18\n\x08variable\x18\x01 \x01(\tB\x06\xe0\x41\x02\xe0\x41\x05\x12Z\n\x04type\x18\x02 \x01(\x0e\x32\x44.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariable.TypeB\x06\xe0\x41\x01\xe0\x41\x05\x12\x12\n\x05value\x18\x03 \x01(\tB\x03\xe0\x41\x01\"Q\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06STRING\x10\x01\x12\x07\n\x03INT\x10\x02\x12\x08\n\x04\x42OOL\x10\x03\x12\n\n\x06STRUCT\x10\x04\x12\x08\n\x04LIST\x10\x05\"\xc8\x04\n\rUnitCondition\x12\\\n\x06status\x18\x01 \x01(\x0e\x32G.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitCondition.StatusB\x03\xe0\x41\x02\x12X\n\x04type\x18\x02 \x01(\x0e\x32\x45.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitCondition.TypeB\x03\xe0\x41\x02\x12=\n\x14last_transition_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02\x12\x14\n\x07message\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06reason\x18\x05 \x01(\tB\x03\xe0\x41\x02\"W\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x12\n\x0eSTATUS_UNKNOWN\x10\x01\x12\x0f\n\x0bSTATUS_TRUE\x10\x02\x12\x10\n\x0cSTATUS_FALSE\x10\x03\"\xbb\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nTYPE_READY\x10\x01\x12\x11\n\rTYPE_UPDATING\x10\x02\x12\x14\n\x10TYPE_PROVISIONED\x10\x03\x12\x18\n\x14TYPE_OPERATION_ERROR\x10\x04\x12&\n\"TYPE_APP_CREATED_OR_ALREADY_EXISTS\x10\x05\x12\"\n\x1eTYPE_APP_COMPONENTS_REGISTERED\x10\x06\"\xe9\x04\n\x16UnitOperationCondition\x12\x65\n\x06status\x18\x01 \x01(\x0e\x32P.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationCondition.StatusB\x03\xe0\x41\x02\x12\x61\n\x04type\x18\x02 \x01(\x0e\x32N.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationCondition.TypeB\x03\xe0\x41\x02\x12=\n\x14last_transition_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02\x12\x14\n\x07message\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06reason\x18\x05 \x01(\tB\x03\xe0\x41\x02\"W\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x12\n\x0eSTATUS_UNKNOWN\x10\x01\x12\x0f\n\x0bSTATUS_TRUE\x10\x02\x12\x10\n\x0cSTATUS_FALSE\x10\x03\"\xc1\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x12\n\x0eTYPE_SCHEDULED\x10\x02\x12\x10\n\x0cTYPE_RUNNING\x10\x03\x12\x12\n\x0eTYPE_SUCCEEDED\x10\x04\x12\x12\n\x0eTYPE_CANCELLED\x10\x05\x12\x14\n\x10TYPE_APP_CREATED\x10\x06\x12\"\n\x1eTYPE_APP_COMPONENTS_REGISTERED\x10\x07\x12\x1b\n\x17TYPE_WORKLOAD_SUCCEEDED\x10\x08\"\xcf\x03\n\rSaasCondition\x12\\\n\x06status\x18\x01 \x01(\x0e\x32G.google.cloud.saasplatform.saasservicemgmt.v1beta1.SaasCondition.StatusB\x03\xe0\x41\x02\x12X\n\x04type\x18\x06 \x01(\x0e\x32\x45.google.cloud.saasplatform.saasservicemgmt.v1beta1.SaasCondition.TypeB\x03\xe0\x41\x02\x12=\n\x14last_transition_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02\x12\x14\n\x07message\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06reason\x18\x05 \x01(\tB\x03\xe0\x41\x02\"W\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x12\n\x0eSTATUS_UNKNOWN\x10\x01\x12\x0f\n\x0bSTATUS_TRUE\x10\x02\x12\x10\n\x0cSTATUS_FALSE\x10\x03\"C\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nTYPE_READY\x10\x01\x12\x15\n\x11TYPE_SYNCHRONIZED\x10\x02\"3\n\tAggregate\x12\x12\n\x05group\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x12\n\x05\x63ount\x18\x02 \x01(\x05\x42\x03\xe0\x41\x02*\x96\x01\n\x1aUnitOperationErrorCategory\x12-\n)UNIT_OPERATION_ERROR_CATEGORY_UNSPECIFIED\x10\x00\x12\x12\n\x0eNOT_APPLICABLE\x10\x01\x12\t\n\x05\x46\x41TAL\x10\x02\x12\r\n\tRETRIABLE\x10\x03\x12\r\n\tIGNORABLE\x10\x04\x12\x0c\n\x08STANDARD\x10\x05\x42\xc7\x02\n5com.google.cloud.saasplatform.saasservicemgmt.v1beta1B\x0b\x43ommonProtoP\x01Z_cloud.google.com/go/saasplatform/saasservicemgmt/apiv1beta1/saasservicemgmtpb;saasservicemgmtpb\xaa\x02\x31Google.Cloud.SaasPlatform.SaasServiceMgmt.V1Beta1\xca\x02\x31Google\\Cloud\\SaasPlatform\\SaasServiceMgmt\\V1beta1\xea\x02\x35Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1b\x06proto3"
|
|
12
13
|
|
|
13
14
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
14
15
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -27,6 +28,9 @@ module Google
|
|
|
27
28
|
UnitOperationCondition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationCondition").msgclass
|
|
28
29
|
UnitOperationCondition::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationCondition.Status").enummodule
|
|
29
30
|
UnitOperationCondition::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationCondition.Type").enummodule
|
|
31
|
+
SaasCondition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.SaasCondition").msgclass
|
|
32
|
+
SaasCondition::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.SaasCondition.Status").enummodule
|
|
33
|
+
SaasCondition::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.SaasCondition.Type").enummodule
|
|
30
34
|
Aggregate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.Aggregate").msgclass
|
|
31
35
|
UnitOperationErrorCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationErrorCategory").enummodule
|
|
32
36
|
end
|
|
@@ -9,9 +9,10 @@ require 'google/api/field_info_pb'
|
|
|
9
9
|
require 'google/api/resource_pb'
|
|
10
10
|
require 'google/cloud/saasplatform/saasservicemgmt/v1beta1/common_pb'
|
|
11
11
|
require 'google/protobuf/timestamp_pb'
|
|
12
|
+
require 'google/rpc/status_pb'
|
|
12
13
|
|
|
13
14
|
|
|
14
|
-
descriptor_data = "\nMgoogle/cloud/saasplatform/saasservicemgmt/v1beta1/deployments_resources.proto\x12\x31google.cloud.saasplatform.saasservicemgmt.v1beta1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a>google/cloud/saasplatform/saasservicemgmt/v1beta1/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x1d\n\x08Location\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x01\"\x99\x05\n\x04Saas\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12S\n\tlocations\x18\x04 \x03(\x0b\x32;.google.cloud.saasplatform.saasservicemgmt.v1beta1.LocationB\x03\xe0\x41\x01\x12Y\n\x06labels\x18\xa1Q \x03(\x0b\x32\x43.google.cloud.saasplatform.saasservicemgmt.v1beta1.Saas.LabelsEntryB\x03\xe0\x41\x01\x12\x63\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32H.google.cloud.saasplatform.saasservicemgmt.v1beta1.Saas.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:i\xea\x41\x66\n#saasservicemgmt.googleapis.com/Saas\x12\x33projects/{project}/locations/{location}/saas/{saas}*\x04saas2\x04saas\"\xb7\x05\n\x06Tenant\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12!\n\x11\x63onsumer_resource\x18\x02 \x01(\tB\x06\xe0\x41\x01\xe0\x41\x05\x12<\n\x04saas\x18\x03 \x01(\tB.\xe0\x41\x02\xe0\x41\x05\xfa\x41%\n#saasservicemgmt.googleapis.com/Saas\x12[\n\x06labels\x18\xa1Q \x03(\x0b\x32\x45.google.cloud.saasplatform.saasservicemgmt.v1beta1.Tenant.LabelsEntryB\x03\xe0\x41\x01\x12\x65\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32J.google.cloud.saasplatform.saasservicemgmt.v1beta1.Tenant.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:u\xea\x41r\n%saasservicemgmt.googleapis.com/Tenant\x12\x38projects/{project}/locations/{location}/tenants/{tenant}*\x07tenants2\x06tenant\"\x9f\x08\n\x08UnitKind\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12G\n\x0f\x64\x65\x66\x61ult_release\x18\x02 \x01(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x12[\n\x0c\x64\x65pendencies\x18\x04 \x03(\x0b\x32=.google.cloud.saasplatform.saasservicemgmt.v1beta1.DependencyB\x06\xe0\x41\x01\xe0\x41\x05\x12h\n\x17input_variable_mappings\x18\x05 \x03(\x0b\x32\x42.google.cloud.saasplatform.saasservicemgmt.v1beta1.VariableMappingB\x03\xe0\x41\x01\x12i\n\x18output_variable_mappings\x18\x06 \x03(\x0b\x32\x42.google.cloud.saasplatform.saasservicemgmt.v1beta1.VariableMappingB\x03\xe0\x41\x01\x12<\n\x04saas\x18\x08 \x01(\tB.\xe0\x41\x02\xe0\x41\x05\xfa\x41%\n#saasservicemgmt.googleapis.com/Saas\x12]\n\x06labels\x18\xa1Q \x03(\x0b\x32G.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitKind.LabelsEntryB\x03\xe0\x41\x01\x12g\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32L.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitKind.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x7f\xea\x41|\n\'saasservicemgmt.googleapis.com/UnitKind\x12<projects/{project}/locations/{location}/unitKinds/{unitKind}*\tunitKinds2\x08unitKind\"\xfd\x13\n\x04Unit\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x42\n\tunit_kind\x18\x02 \x01(\tB/\xe0\x41\x01\xfa\x41)\n\'saasservicemgmt.googleapis.com/UnitKind\x12\x42\n\x07release\x18\r \x01(\tB1\xe0\x41\x01\xe0\x41\x03\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x12=\n\x06tenant\x18\x04 \x01(\tB-\xe0\x41\x01\xfa\x41\'\n%saasservicemgmt.googleapis.com/Tenant\x12S\n\x12ongoing_operations\x18\x05 \x03(\tB7\xe0\x41\x01\xe0\x41\x03\xfa\x41.\n,saasservicemgmt.googleapis.com/UnitOperation\x12S\n\x12pending_operations\x18\x06 \x03(\tB7\xe0\x41\x01\xe0\x41\x03\xfa\x41.\n,saasservicemgmt.googleapis.com/UnitOperation\x12U\n\x14scheduled_operations\x18\x18 \x03(\tB7\xe0\x41\x01\xe0\x41\x03\xfa\x41.\n,saasservicemgmt.googleapis.com/UnitOperation\x12]\n\ndependents\x18\x07 \x03(\x0b\x32\x41.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitDependencyB\x06\xe0\x41\x01\xe0\x41\x03\x12_\n\x0c\x64\x65pendencies\x18\x08 \x03(\x0b\x32\x41.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitDependencyB\x06\xe0\x41\x01\xe0\x41\x03\x12`\n\x0finput_variables\x18\t \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x06\xe0\x41\x01\xe0\x41\x03\x12\x61\n\x10output_variables\x18\n \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x06\xe0\x41\x01\xe0\x41\x03\x12\x65\n\x0bmaintenance\x18\x0e \x01(\x0b\x32K.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.MaintenanceSettingsB\x03\xe0\x41\x01\x12X\n\x05state\x18\x10 \x01(\x0e\x32\x41.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.UnitStateB\x06\xe0\x41\x01\xe0\x41\x03\x12\\\n\nconditions\x18\x14 \x03(\x0b\x32@.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitConditionB\x06\xe0\x41\x01\xe0\x41\x03\x12g\n\x0fmanagement_mode\x18\x16 \x01(\x0e\x32\x46.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.ManagementModeB\x06\xe0\x41\x01\xe0\x41\x05\x12p\n\x14system_managed_state\x18\x19 \x01(\x0e\x32J.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.SystemManagedStateB\x06\xe0\x41\x01\xe0\x41\x03\x12=\n\x11system_cleanup_at\x18\x1a \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xe0\x41\x01\xe0\x41\x03\x12Y\n\x06labels\x18\xa1Q \x03(\x0b\x32\x43.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.LabelsEntryB\x03\xe0\x41\x01\x12\x63\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32H.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1aQ\n\x13MaintenanceSettings\x12:\n\x11pinned_until_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc8\x01\n\tUnitState\x12\x1a\n\x16UNIT_STATE_UNSPECIFIED\x10\x00\x12\x1e\n\x1aUNIT_STATE_NOT_PROVISIONED\x10\x01\x12\x1b\n\x17UNIT_STATE_PROVISIONING\x10\x02\x12\x17\n\x13UNIT_STATE_UPDATING\x10\x03\x12\x1d\n\x19UNIT_STATE_DEPROVISIONING\x10\x04\x12\x14\n\x10UNIT_STATE_READY\x10\x05\x12\x14\n\x10UNIT_STATE_ERROR\x10\x06\"g\n\x0eManagementMode\x12\x1f\n\x1bMANAGEMENT_MODE_UNSPECIFIED\x10\x00\x12\x18\n\x14MANAGEMENT_MODE_USER\x10\x01\x12\x1a\n\x16MANAGEMENT_MODE_SYSTEM\x10\x02\"\xa7\x01\n\x12SystemManagedState\x12$\n SYSTEM_MANAGED_STATE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bSYSTEM_MANAGED_STATE_ACTIVE\x10\x01\x12!\n\x1dSYSTEM_MANAGED_STATE_INACTIVE\x10\x02\x12\'\n#SYSTEM_MANAGED_STATE_DECOMMISSIONED\x10\x03:k\xea\x41h\n#saasservicemgmt.googleapis.com/Unit\x12\x34projects/{project}/locations/{location}/units/{unit}*\x05units2\x04unit\"_\n\x0eUnitDependency\x12\x12\n\x05\x61lias\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x39\n\x04unit\x18\x02 \x01(\tB+\xe0\x41\x03\xfa\x41%\n#saasservicemgmt.googleapis.com/Unit\"\xd6\x0e\n\rUnitOperation\x12V\n\tprovision\x18\x08 \x01(\x0b\x32<.google.cloud.saasplatform.saasservicemgmt.v1beta1.ProvisionB\x03\xe0\x41\x01H\x00\x12R\n\x07upgrade\x18\t \x01(\x0b\x32:.google.cloud.saasplatform.saasservicemgmt.v1beta1.UpgradeB\x03\xe0\x41\x01H\x00\x12Z\n\x0b\x64\x65provision\x18\n \x01(\x0b\x32>.google.cloud.saasplatform.saasservicemgmt.v1beta1.DeprovisionB\x03\xe0\x41\x01H\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12<\n\x04unit\x18\x02 \x01(\tB.\xe0\x41\x02\xe0\x41\x05\xfa\x41%\n#saasservicemgmt.googleapis.com/Unit\x12S\n\x15parent_unit_operation\x18\x03 \x01(\tB4\xe0\x41\x01\xfa\x41.\n,saasservicemgmt.googleapis.com/UnitOperation\x12?\n\x07rollout\x18\x04 \x01(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Rollout\x12\x13\n\x06\x63\x61ncel\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\x12j\n\x05state\x18\x06 \x01(\x0e\x32S.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperation.UnitOperationStateB\x06\xe0\x41\x01\xe0\x41\x03\x12\x65\n\nconditions\x18\x07 \x03(\x0b\x32I.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationConditionB\x06\xe0\x41\x01\xe0\x41\x03\x12R\n\x08schedule\x18\x0c \x01(\x0b\x32;.google.cloud.saasplatform.saasservicemgmt.v1beta1.ScheduleB\x03\xe0\x41\x01\x12\x1c\n\x0c\x65ngine_state\x18\x0e \x01(\tB\x06\xe0\x41\x01\xe0\x41\x03\x12m\n\x0e\x65rror_category\x18\x0f \x01(\x0e\x32M.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationErrorCategoryB\x06\xe0\x41\x01\xe0\x41\x03\x12\x62\n\x06labels\x18\xa1Q \x03(\x0b\x32L.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperation.LabelsEntryB\x03\xe0\x41\x01\x12l\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32Q.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperation.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x87\x02\n\x12UnitOperationState\x12 \n\x1cUNIT_OPERATION_STATE_UNKNOWN\x10\x00\x12 \n\x1cUNIT_OPERATION_STATE_PENDING\x10\x01\x12\"\n\x1eUNIT_OPERATION_STATE_SCHEDULED\x10\x02\x12 \n\x1cUNIT_OPERATION_STATE_RUNNING\x10\x04\x12\"\n\x1eUNIT_OPERATION_STATE_SUCCEEDED\x10\x05\x12\x1f\n\x1bUNIT_OPERATION_STATE_FAILED\x10\x06\x12\"\n\x1eUNIT_OPERATION_STATE_CANCELLED\x10\x07:\x99\x01\xea\x41\x95\x01\n,saasservicemgmt.googleapis.com/UnitOperation\x12\x46projects/{project}/locations/{location}/unitOperations/{unitOperation}*\x0eunitOperations2\runitOperationB\x15\n\x13unit_operation_type\"\xab\x01\n\tProvision\x12?\n\x07release\x18\x01 \x01(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x12]\n\x0finput_variables\x18\x03 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x03\xe0\x41\x01\"\r\n\x0b\x44\x65provision\"\xa9\x01\n\x07Upgrade\x12?\n\x07release\x18\x01 \x01(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x12]\n\x0finput_variables\x18\x02 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x03\xe0\x41\x01\"?\n\x08Schedule\x12\x33\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01\"\x84\n\n\x07Release\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x45\n\tunit_kind\x18\x02 \x01(\tB2\xe0\x41\x02\xe0\x41\x05\xfa\x41)\n\'saasservicemgmt.googleapis.com/UnitKind\x12T\n\tblueprint\x18\x03 \x01(\x0b\x32<.google.cloud.saasplatform.saasservicemgmt.v1beta1.BlueprintB\x03\xe0\x41\x01\x12q\n\x14release_requirements\x18\x04 \x01(\x0b\x32N.google.cloud.saasplatform.saasservicemgmt.v1beta1.Release.ReleaseRequirementsB\x03\xe0\x41\x01\x12`\n\x0finput_variables\x18\x05 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x06\xe0\x41\x01\xe0\x41\x03\x12\x61\n\x10output_variables\x18\x06 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x06\xe0\x41\x01\xe0\x41\x03\x12\x65\n\x17input_variable_defaults\x18\x07 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x03\xe0\x41\x01\x12\\\n\x06labels\x18\xa1Q \x03(\x0b\x32\x46.google.cloud.saasplatform.saasservicemgmt.v1beta1.Release.LabelsEntryB\x03\xe0\x41\x01\x12\x66\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32K.google.cloud.saasplatform.saasservicemgmt.v1beta1.Release.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1ah\n\x13ReleaseRequirements\x12Q\n\x19upgradeable_from_releases\x18\x01 \x03(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:z\xea\x41w\n&saasservicemgmt.googleapis.com/Release\x12:projects/{project}/locations/{location}/releases/{release}*\x08releases2\x07release\"\xde\x01\n\x0fVariableMapping\x12S\n\x04\x66rom\x18\x02 \x01(\x0b\x32>.google.cloud.saasplatform.saasservicemgmt.v1beta1.FromMappingB\x03\xe0\x41\x01H\x00\x12O\n\x02to\x18\x03 \x01(\x0b\x32<.google.cloud.saasplatform.saasservicemgmt.v1beta1.ToMappingB\x03\xe0\x41\x01H\x00\x12\x15\n\x08variable\x18\x01 \x01(\tB\x03\xe0\x41\x02\x42\x0e\n\x0cmapping_type\"D\n\x0b\x46romMapping\x12\x17\n\ndependency\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1c\n\x0foutput_variable\x18\x02 \x01(\tB\x03\xe0\x41\x02\"a\n\tToMapping\x12\x17\n\ndependency\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1b\n\x0einput_variable\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11ignore_for_lookup\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"g\n\nDependency\x12\x45\n\tunit_kind\x18\x01 \x01(\tB2\xe0\x41\x02\xe0\x41\x05\xfa\x41)\n\'saasservicemgmt.googleapis.com/UnitKind\x12\x12\n\x05\x61lias\x18\x02 \x01(\tB\x03\xe0\x41\x02\x42\xd9\x02\n5com.google.cloud.saasplatform.saasservicemgmt.v1beta1B\x1dSaasDeploymentsResourcesProtoP\x01Z_cloud.google.com/go/saasplatform/saasservicemgmt/apiv1beta1/saasservicemgmtpb;saasservicemgmtpb\xaa\x02\x31Google.Cloud.SaasPlatform.SaasServiceMgmt.V1Beta1\xca\x02\x31Google\\Cloud\\SaasPlatform\\SaasServiceMgmt\\V1beta1\xea\x02\x35Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1b\x06proto3"
|
|
15
|
+
descriptor_data = "\nMgoogle/cloud/saasplatform/saasservicemgmt/v1beta1/deployments_resources.proto\x12\x31google.cloud.saasplatform.saasservicemgmt.v1beta1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a>google/cloud/saasplatform/saasservicemgmt/v1beta1/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\"\x1d\n\x08Location\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x01\"\xfd\x08\n\x04Saas\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12S\n\tlocations\x18\x04 \x03(\x0b\x32;.google.cloud.saasplatform.saasservicemgmt.v1beta1.LocationB\x03\xe0\x41\x01\x12]\n\x14\x61pplication_template\x18\x05 \x01(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.CompositeRef\x12\x1b\n\x0e\x62lueprint_repo\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12Q\n\x05state\x18\x07 \x01(\x0e\x32=.google.cloud.saasplatform.saasservicemgmt.v1beta1.Saas.StateB\x03\xe0\x41\x03\x12Y\n\nconditions\x18\x08 \x03(\x0b\x32@.google.cloud.saasplatform.saasservicemgmt.v1beta1.SaasConditionB\x03\xe0\x41\x03\x12&\n\x05\x65rror\x18\t \x01(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\x12Y\n\x06labels\x18\xa1Q \x03(\x0b\x32\x43.google.cloud.saasplatform.saasservicemgmt.v1beta1.Saas.LabelsEntryB\x03\xe0\x41\x01\x12\x63\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32H.google.cloud.saasplatform.saasservicemgmt.v1beta1.Saas.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x8f\x01\n\x05State\x12\x1a\n\x16STATE_TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0cSTATE_ACTIVE\x10\x01\x12\x11\n\rSTATE_RUNNING\x10\x02\x12\x10\n\x0cSTATE_FAILED\x10\x03\x12\x0e\n\x06\x41\x43TIVE\x10\x01\x1a\x02\x08\x01\x12\x0f\n\x07RUNNING\x10\x02\x1a\x02\x08\x01\x12\x0e\n\x06\x46\x41ILED\x10\x03\x1a\x02\x08\x01\x1a\x02\x10\x01:i\xea\x41\x66\n#saasservicemgmt.googleapis.com/Saas\x12\x33projects/{project}/locations/{location}/saas/{saas}*\x04saas2\x04saas\"\xb7\x05\n\x06Tenant\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12!\n\x11\x63onsumer_resource\x18\x02 \x01(\tB\x06\xe0\x41\x01\xe0\x41\x05\x12<\n\x04saas\x18\x03 \x01(\tB.\xe0\x41\x02\xe0\x41\x05\xfa\x41%\n#saasservicemgmt.googleapis.com/Saas\x12[\n\x06labels\x18\xa1Q \x03(\x0b\x32\x45.google.cloud.saasplatform.saasservicemgmt.v1beta1.Tenant.LabelsEntryB\x03\xe0\x41\x01\x12\x65\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32J.google.cloud.saasplatform.saasservicemgmt.v1beta1.Tenant.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:u\xea\x41r\n%saasservicemgmt.googleapis.com/Tenant\x12\x38projects/{project}/locations/{location}/tenants/{tenant}*\x07tenants2\x06tenant\"\xdf\t\n\x08UnitKind\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12G\n\x0f\x64\x65\x66\x61ult_release\x18\x02 \x01(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x12[\n\x0c\x64\x65pendencies\x18\x04 \x03(\x0b\x32=.google.cloud.saasplatform.saasservicemgmt.v1beta1.DependencyB\x06\xe0\x41\x01\xe0\x41\x05\x12h\n\x17input_variable_mappings\x18\x05 \x03(\x0b\x32\x42.google.cloud.saasplatform.saasservicemgmt.v1beta1.VariableMappingB\x03\xe0\x41\x01\x12i\n\x18output_variable_mappings\x18\x06 \x03(\x0b\x32\x42.google.cloud.saasplatform.saasservicemgmt.v1beta1.VariableMappingB\x03\xe0\x41\x01\x12<\n\x04saas\x18\x08 \x01(\tB.\xe0\x41\x02\xe0\x41\x05\xfa\x41%\n#saasservicemgmt.googleapis.com/Saas\x12l\n\x1e\x61pplication_template_component\x18\n \x01(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.ComponentRefB\x03\xe0\x41\x03\x12P\n\napp_params\x18\x0b \x01(\x0b\x32<.google.cloud.saasplatform.saasservicemgmt.v1beta1.AppParams\x12]\n\x06labels\x18\xa1Q \x03(\x0b\x32G.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitKind.LabelsEntryB\x03\xe0\x41\x01\x12g\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32L.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitKind.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x7f\xea\x41|\n\'saasservicemgmt.googleapis.com/UnitKind\x12<projects/{project}/locations/{location}/unitKinds/{unitKind}*\tunitKinds2\x08unitKind\"\xf7\x14\n\x04Unit\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x42\n\tunit_kind\x18\x02 \x01(\tB/\xe0\x41\x01\xfa\x41)\n\'saasservicemgmt.googleapis.com/UnitKind\x12\x42\n\x07release\x18\r \x01(\tB1\xe0\x41\x01\xe0\x41\x03\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x12=\n\x06tenant\x18\x04 \x01(\tB-\xe0\x41\x01\xfa\x41\'\n%saasservicemgmt.googleapis.com/Tenant\x12S\n\x12ongoing_operations\x18\x05 \x03(\tB7\xe0\x41\x01\xe0\x41\x03\xfa\x41.\n,saasservicemgmt.googleapis.com/UnitOperation\x12S\n\x12pending_operations\x18\x06 \x03(\tB7\xe0\x41\x01\xe0\x41\x03\xfa\x41.\n,saasservicemgmt.googleapis.com/UnitOperation\x12U\n\x14scheduled_operations\x18\x18 \x03(\tB7\xe0\x41\x01\xe0\x41\x03\xfa\x41.\n,saasservicemgmt.googleapis.com/UnitOperation\x12]\n\ndependents\x18\x07 \x03(\x0b\x32\x41.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitDependencyB\x06\xe0\x41\x01\xe0\x41\x03\x12_\n\x0c\x64\x65pendencies\x18\x08 \x03(\x0b\x32\x41.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitDependencyB\x06\xe0\x41\x01\xe0\x41\x03\x12`\n\x0finput_variables\x18\t \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x06\xe0\x41\x01\xe0\x41\x03\x12\x61\n\x10output_variables\x18\n \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x06\xe0\x41\x01\xe0\x41\x03\x12\x65\n\x0bmaintenance\x18\x0e \x01(\x0b\x32K.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.MaintenanceSettingsB\x03\xe0\x41\x01\x12X\n\x05state\x18\x10 \x01(\x0e\x32\x41.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.UnitStateB\x06\xe0\x41\x01\xe0\x41\x03\x12\\\n\nconditions\x18\x14 \x03(\x0b\x32@.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitConditionB\x06\xe0\x41\x01\xe0\x41\x03\x12g\n\x0fmanagement_mode\x18\x16 \x01(\x0e\x32\x46.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.ManagementModeB\x06\xe0\x41\x01\xe0\x41\x05\x12p\n\x14system_managed_state\x18\x19 \x01(\x0e\x32J.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.SystemManagedStateB\x06\xe0\x41\x01\xe0\x41\x03\x12=\n\x11system_cleanup_at\x18\x1a \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xe0\x41\x01\xe0\x41\x03\x12>\n\x0b\x61pplication\x18\x1d \x01(\tB)\xe0\x41\x01\xfa\x41#\n!apphub.googleapis.com/Application\x12Y\n\x06labels\x18\xa1Q \x03(\x0b\x32\x43.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.LabelsEntryB\x03\xe0\x41\x01\x12\x63\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32H.google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x1b\n\rsatisfies_pzs\x18\xc1P \x01(\x08\x42\x03\xe0\x41\x03\x12\x1b\n\rsatisfies_pzi\x18\xc2P \x01(\x08\x42\x03\xe0\x41\x03\x1aQ\n\x13MaintenanceSettings\x12:\n\x11pinned_until_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc8\x01\n\tUnitState\x12\x1a\n\x16UNIT_STATE_UNSPECIFIED\x10\x00\x12\x1e\n\x1aUNIT_STATE_NOT_PROVISIONED\x10\x01\x12\x1b\n\x17UNIT_STATE_PROVISIONING\x10\x02\x12\x17\n\x13UNIT_STATE_UPDATING\x10\x03\x12\x1d\n\x19UNIT_STATE_DEPROVISIONING\x10\x04\x12\x14\n\x10UNIT_STATE_READY\x10\x05\x12\x14\n\x10UNIT_STATE_ERROR\x10\x06\"g\n\x0eManagementMode\x12\x1f\n\x1bMANAGEMENT_MODE_UNSPECIFIED\x10\x00\x12\x18\n\x14MANAGEMENT_MODE_USER\x10\x01\x12\x1a\n\x16MANAGEMENT_MODE_SYSTEM\x10\x02\"\xa7\x01\n\x12SystemManagedState\x12$\n SYSTEM_MANAGED_STATE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bSYSTEM_MANAGED_STATE_ACTIVE\x10\x01\x12!\n\x1dSYSTEM_MANAGED_STATE_INACTIVE\x10\x02\x12\'\n#SYSTEM_MANAGED_STATE_DECOMMISSIONED\x10\x03:k\xea\x41h\n#saasservicemgmt.googleapis.com/Unit\x12\x34projects/{project}/locations/{location}/units/{unit}*\x05units2\x04unit\"_\n\x0eUnitDependency\x12\x12\n\x05\x61lias\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x39\n\x04unit\x18\x02 \x01(\tB+\xe0\x41\x03\xfa\x41%\n#saasservicemgmt.googleapis.com/Unit\"\x8d\x0f\n\rUnitOperation\x12V\n\tprovision\x18\x08 \x01(\x0b\x32<.google.cloud.saasplatform.saasservicemgmt.v1beta1.ProvisionB\x03\xe0\x41\x01H\x00\x12R\n\x07upgrade\x18\t \x01(\x0b\x32:.google.cloud.saasplatform.saasservicemgmt.v1beta1.UpgradeB\x03\xe0\x41\x01H\x00\x12Z\n\x0b\x64\x65provision\x18\n \x01(\x0b\x32>.google.cloud.saasplatform.saasservicemgmt.v1beta1.DeprovisionB\x03\xe0\x41\x01H\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12<\n\x04unit\x18\x02 \x01(\tB.\xe0\x41\x02\xe0\x41\x05\xfa\x41%\n#saasservicemgmt.googleapis.com/Unit\x12S\n\x15parent_unit_operation\x18\x03 \x01(\tB4\xe0\x41\x01\xfa\x41.\n,saasservicemgmt.googleapis.com/UnitOperation\x12?\n\x07rollout\x18\x04 \x01(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Rollout\x12\x13\n\x06\x63\x61ncel\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\x12j\n\x05state\x18\x06 \x01(\x0e\x32S.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperation.UnitOperationStateB\x06\xe0\x41\x01\xe0\x41\x03\x12\x65\n\nconditions\x18\x07 \x03(\x0b\x32I.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationConditionB\x06\xe0\x41\x01\xe0\x41\x03\x12R\n\x08schedule\x18\x0c \x01(\x0b\x32;.google.cloud.saasplatform.saasservicemgmt.v1beta1.ScheduleB\x03\xe0\x41\x01\x12\x1c\n\x0c\x65ngine_state\x18\x0e \x01(\tB\x06\xe0\x41\x01\xe0\x41\x03\x12m\n\x0e\x65rror_category\x18\x0f \x01(\x0e\x32M.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperationErrorCategoryB\x06\xe0\x41\x01\xe0\x41\x03\x12\x62\n\x06labels\x18\xa1Q \x03(\x0b\x32L.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperation.LabelsEntryB\x03\xe0\x41\x01\x12l\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32Q.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitOperation.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0b\x64\x65lete_time\x18\xc1P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x87\x02\n\x12UnitOperationState\x12 \n\x1cUNIT_OPERATION_STATE_UNKNOWN\x10\x00\x12 \n\x1cUNIT_OPERATION_STATE_PENDING\x10\x01\x12\"\n\x1eUNIT_OPERATION_STATE_SCHEDULED\x10\x02\x12 \n\x1cUNIT_OPERATION_STATE_RUNNING\x10\x04\x12\"\n\x1eUNIT_OPERATION_STATE_SUCCEEDED\x10\x05\x12\x1f\n\x1bUNIT_OPERATION_STATE_FAILED\x10\x06\x12\"\n\x1eUNIT_OPERATION_STATE_CANCELLED\x10\x07:\x99\x01\xea\x41\x95\x01\n,saasservicemgmt.googleapis.com/UnitOperation\x12\x46projects/{project}/locations/{location}/unitOperations/{unitOperation}*\x0eunitOperations2\runitOperationB\x15\n\x13unit_operation_type\"\xab\x01\n\tProvision\x12?\n\x07release\x18\x01 \x01(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x12]\n\x0finput_variables\x18\x03 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x03\xe0\x41\x01\"\r\n\x0b\x44\x65provision\"\xa9\x01\n\x07Upgrade\x12?\n\x07release\x18\x01 \x01(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x12]\n\x0finput_variables\x18\x02 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x03\xe0\x41\x01\"?\n\x08Schedule\x12\x33\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01\"\xf2\n\n\x07Release\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x45\n\tunit_kind\x18\x02 \x01(\tB2\xe0\x41\x02\xe0\x41\x05\xfa\x41)\n\'saasservicemgmt.googleapis.com/UnitKind\x12T\n\tblueprint\x18\x03 \x01(\x0b\x32<.google.cloud.saasplatform.saasservicemgmt.v1beta1.BlueprintB\x03\xe0\x41\x01\x12q\n\x14release_requirements\x18\x04 \x01(\x0b\x32N.google.cloud.saasplatform.saasservicemgmt.v1beta1.Release.ReleaseRequirementsB\x03\xe0\x41\x01\x12`\n\x0finput_variables\x18\x05 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x06\xe0\x41\x01\xe0\x41\x03\x12\x61\n\x10output_variables\x18\x06 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x06\xe0\x41\x01\xe0\x41\x03\x12\x65\n\x17input_variable_defaults\x18\x07 \x03(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitVariableB\x03\xe0\x41\x01\x12l\n\x1e\x61pplication_template_component\x18\t \x01(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.ComponentRefB\x03\xe0\x41\x03\x12\\\n\x06labels\x18\xa1Q \x03(\x0b\x32\x46.google.cloud.saasplatform.saasservicemgmt.v1beta1.Release.LabelsEntryB\x03\xe0\x41\x01\x12\x66\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32K.google.cloud.saasplatform.saasservicemgmt.v1beta1.Release.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1ah\n\x13ReleaseRequirements\x12Q\n\x19upgradeable_from_releases\x18\x01 \x03(\tB.\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:z\xea\x41w\n&saasservicemgmt.googleapis.com/Release\x12:projects/{project}/locations/{location}/releases/{release}*\x08releases2\x07release\"\xde\x01\n\x0fVariableMapping\x12S\n\x04\x66rom\x18\x02 \x01(\x0b\x32>.google.cloud.saasplatform.saasservicemgmt.v1beta1.FromMappingB\x03\xe0\x41\x01H\x00\x12O\n\x02to\x18\x03 \x01(\x0b\x32<.google.cloud.saasplatform.saasservicemgmt.v1beta1.ToMappingB\x03\xe0\x41\x01H\x00\x12\x15\n\x08variable\x18\x01 \x01(\tB\x03\xe0\x41\x02\x42\x0e\n\x0cmapping_type\"D\n\x0b\x46romMapping\x12\x17\n\ndependency\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1c\n\x0foutput_variable\x18\x02 \x01(\tB\x03\xe0\x41\x02\"a\n\tToMapping\x12\x17\n\ndependency\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1b\n\x0einput_variable\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11ignore_for_lookup\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"g\n\nDependency\x12\x45\n\tunit_kind\x18\x01 \x01(\tB2\xe0\x41\x02\xe0\x41\x05\xfa\x41)\n\'saasservicemgmt.googleapis.com/UnitKind\x12\x12\n\x05\x61lias\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\xd2\x01\n\x0c\x43ompositeRef\x12U\n\x14\x61pplication_template\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/designcenter.googleapis.com/ApplicationTemplate\x12N\n\x08revision\x18\x02 \x01(\tB<\xfa\x41\x39\n7designcenter.googleapis.com/ApplicationTemplateRevision\x12\x1b\n\x0esync_operation\x18\x03 \x01(\tB\x03\xe0\x41\x03\"\x8b\x01\n\x0c\x43omponentRef\x12V\n\rcomposite_ref\x18\x01 \x01(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.CompositeRef\x12\x11\n\tcomponent\x18\x02 \x01(\t\x12\x10\n\x08revision\x18\x03 \x01(\t\"\xbb\x02\n\tAppParams\x12\r\n\x05group\x18\x01 \x01(\t\x12Q\n\x05scope\x18\x02 \x01(\x0b\x32\x42.google.cloud.saasplatform.saasservicemgmt.v1beta1.AppParams.Scope\x1a\xcb\x01\n\x05Scope\x12Z\n\x04type\x18\x01 \x01(\x0e\x32G.google.cloud.saasplatform.saasservicemgmt.v1beta1.AppParams.Scope.TypeB\x03\xe0\x41\x02\"f\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x11\n\rTYPE_REGIONAL\x10\x01\x12\x0f\n\x0bTYPE_GLOBAL\x10\x02\x12\x10\n\x08REGIONAL\x10\x01\x1a\x02\x08\x01\x12\x0e\n\x06GLOBAL\x10\x02\x1a\x02\x08\x01\x1a\x02\x10\x01\x42\xfc\x06\n5com.google.cloud.saasplatform.saasservicemgmt.v1beta1B\x1dSaasDeploymentsResourcesProtoP\x01Z_cloud.google.com/go/saasplatform/saasservicemgmt/apiv1beta1/saasservicemgmtpb;saasservicemgmtpb\xaa\x02\x31Google.Cloud.SaasPlatform.SaasServiceMgmt.V1Beta1\xca\x02\x31Google\\Cloud\\SaasPlatform\\SaasServiceMgmt\\V1beta1\xea\x02\x35Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1\xea\x41g\n!apphub.googleapis.com/Application\x12\x42projects/{project}/locations/{location}/applications/{application}\xea\x41\xff\x01\n/designcenter.googleapis.com/ApplicationTemplate\x12\x61projects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{applicationTemplate}\x12iprojects/{project}/locations/{location}/workspaces/{workspace}/applicationTemplates/{applicationTemplate}\xea\x41\xb2\x01\n7designcenter.googleapis.com/ApplicationTemplateRevision\x12wprojects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{application_template}/revisions/{revision}b\x06proto3"
|
|
15
16
|
|
|
16
17
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
17
18
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -23,6 +24,7 @@ module Google
|
|
|
23
24
|
module V1beta1
|
|
24
25
|
Location = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.Location").msgclass
|
|
25
26
|
Saas = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.Saas").msgclass
|
|
27
|
+
Saas::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.Saas.State").enummodule
|
|
26
28
|
Tenant = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.Tenant").msgclass
|
|
27
29
|
UnitKind = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.UnitKind").msgclass
|
|
28
30
|
Unit = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.Unit").msgclass
|
|
@@ -43,6 +45,11 @@ module Google
|
|
|
43
45
|
FromMapping = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.FromMapping").msgclass
|
|
44
46
|
ToMapping = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.ToMapping").msgclass
|
|
45
47
|
Dependency = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.Dependency").msgclass
|
|
48
|
+
CompositeRef = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.CompositeRef").msgclass
|
|
49
|
+
ComponentRef = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.ComponentRef").msgclass
|
|
50
|
+
AppParams = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.AppParams").msgclass
|
|
51
|
+
AppParams::Scope = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.AppParams.Scope").msgclass
|
|
52
|
+
AppParams::Scope::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.saasplatform.saasservicemgmt.v1beta1.AppParams.Scope.Type").enummodule
|
|
46
53
|
end
|
|
47
54
|
end
|
|
48
55
|
end
|
|
@@ -11,7 +11,7 @@ require 'google/cloud/saasplatform/saasservicemgmt/v1beta1/common_pb'
|
|
|
11
11
|
require 'google/protobuf/timestamp_pb'
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
descriptor_data = "\nJgoogle/cloud/saasplatform/saasservicemgmt/v1beta1/rollouts_resources.proto\x12\x31google.cloud.saasplatform.saasservicemgmt.v1beta1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a>google/cloud/saasplatform/saasservicemgmt/v1beta1/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\
|
|
14
|
+
descriptor_data = "\nJgoogle/cloud/saasplatform/saasservicemgmt/v1beta1/rollouts_resources.proto\x12\x31google.cloud.saasplatform.saasservicemgmt.v1beta1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a>google/cloud/saasplatform/saasservicemgmt/v1beta1/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xaf\x0e\n\x07Rollout\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x42\n\x07release\x18\x03 \x01(\tB1\xe0\x41\x01\xe0\x41\x05\xfa\x41(\n&saasservicemgmt.googleapis.com/Release\x12\x36\n\nstart_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xe0\x41\x01\xe0\x41\x03\x12\x34\n\x08\x65nd_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xe0\x41\x01\xe0\x41\x03\x12[\n\x05state\x18\n \x01(\x0e\x32G.google.cloud.saasplatform.saasservicemgmt.v1beta1.Rollout.RolloutStateB\x03\xe0\x41\x03\x12\x1a\n\rstate_message\x18\x0b \x01(\tB\x03\xe0\x41\x03\x12\x41\n\x15state_transition_time\x18\x0c \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xe0\x41\x01\xe0\x41\x03\x12G\n\x0croot_rollout\x18\x10 \x01(\tB1\xe0\x41\x03\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Rollout\x12I\n\x0eparent_rollout\x18\x11 \x01(\tB1\xe0\x41\x03\xe0\x41\x01\xfa\x41(\n&saasservicemgmt.googleapis.com/Rollout\x12+\n\x1erollout_orchestration_strategy\x18\x13 \x01(\tB\x03\xe0\x41\x01\x12\x18\n\x0bunit_filter\x18\x15 \x01(\tB\x03\xe0\x41\x01\x12K\n\x0crollout_kind\x18\x16 \x01(\tB5\xe0\x41\x02\xe0\x41\x05\xfa\x41,\n*saasservicemgmt.googleapis.com/RolloutKind\x12V\n\x05stats\x18\x18 \x01(\x0b\x32?.google.cloud.saasplatform.saasservicemgmt.v1beta1.RolloutStatsB\x06\xe0\x41\x03\xe0\x41\x01\x12W\n\x07\x63ontrol\x18\x19 \x01(\x0b\x32\x41.google.cloud.saasplatform.saasservicemgmt.v1beta1.RolloutControlB\x03\xe0\x41\x01\x12%\n\x15\x65\x66\x66\x65\x63tive_unit_filter\x18\x1a \x01(\tB\x06\xe0\x41\x01\xe0\x41\x03\x12\\\n\x06labels\x18\xa1Q \x03(\x0b\x32\x46.google.cloud.saasplatform.saasservicemgmt.v1beta1.Rollout.LabelsEntryB\x03\xe0\x41\x01\x12\x66\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32K.google.cloud.saasplatform.saasservicemgmt.v1beta1.Rollout.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0b\x64\x65lete_time\x18\xc1P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xa6\x02\n\x0cRolloutState\x12\x1d\n\x19ROLLOUT_STATE_UNSPECIFIED\x10\x00\x12\x19\n\x15ROLLOUT_STATE_RUNNING\x10\x01\x12\x18\n\x14ROLLOUT_STATE_PAUSED\x10\x02\x12\x1b\n\x17ROLLOUT_STATE_SUCCEEDED\x10\x03\x12\x18\n\x14ROLLOUT_STATE_FAILED\x10\x04\x12\x1b\n\x17ROLLOUT_STATE_CANCELLED\x10\x05\x12\x19\n\x15ROLLOUT_STATE_WAITING\x10\x06\x12\x1c\n\x18ROLLOUT_STATE_CANCELLING\x10\x07\x12\x1a\n\x16ROLLOUT_STATE_RESUMING\x10\x08\x12\x19\n\x15ROLLOUT_STATE_PAUSING\x10\t:}\xea\x41z\n&saasservicemgmt.googleapis.com/Rollout\x12=projects/{project}/locations/{location}/rollouts/{rollout_id}*\x08rollouts2\x07rollout\"\x95\t\n\x0bRolloutKind\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x45\n\tunit_kind\x18\x02 \x01(\tB2\xe0\x41\x02\xe0\x41\x05\xfa\x41)\n\'saasservicemgmt.googleapis.com/UnitKind\x12+\n\x1erollout_orchestration_strategy\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x18\n\x0bunit_filter\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12}\n\x19update_unit_kind_strategy\x18\x06 \x01(\x0e\x32U.google.cloud.saasplatform.saasservicemgmt.v1beta1.RolloutKind.UpdateUnitKindStrategyB\x03\xe0\x41\x01\x12^\n\x0c\x65rror_budget\x18\x07 \x01(\x0b\x32>.google.cloud.saasplatform.saasservicemgmt.v1beta1.ErrorBudgetB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12`\n\x06labels\x18\xa1Q \x03(\x0b\x32J.google.cloud.saasplatform.saasservicemgmt.v1beta1.RolloutKind.LabelsEntryB\x03\xe0\x41\x01\x12j\n\x0b\x61nnotations\x18\xa2Q \x03(\x0b\x32O.google.cloud.saasplatform.saasservicemgmt.v1beta1.RolloutKind.AnnotationsEntryB\x03\xe0\x41\x01\x12\x19\n\x03uid\x18\xd9O \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x04\x65tag\x18\xdaO \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x0b\x63reate_time\x18\xbfP \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0bupdate_time\x18\xc0P \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x90\x01\n\x16UpdateUnitKindStrategy\x12)\n%UPDATE_UNIT_KIND_STRATEGY_UNSPECIFIED\x10\x00\x12&\n\"UPDATE_UNIT_KIND_STRATEGY_ON_START\x10\x01\x12#\n\x1fUPDATE_UNIT_KIND_STRATEGY_NEVER\x10\x02:\x93\x01\xea\x41\x8f\x01\n*saasservicemgmt.googleapis.com/RolloutKind\x12\x46projects/{project}/locations/{location}/rolloutKinds/{rollout_kind_id}*\x0crolloutKinds2\x0brolloutKindB\x0f\n\r_error_budget\"}\n\x0b\x45rrorBudget\x12\x1f\n\rallowed_count\x18\x01 \x01(\x05\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12$\n\x12\x61llowed_percentage\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x42\x10\n\x0e_allowed_countB\x15\n\x13_allowed_percentage\"\xc4\x01\n\x0cRolloutStats\x12\x64\n\x13operations_by_state\x18\x02 \x03(\x0b\x32<.google.cloud.saasplatform.saasservicemgmt.v1beta1.AggregateB\t\xe0\x41\x03\xe0\x41\x01\xe0\x41\x06\x12/\n\x1a\x65stimated_total_unit_count\x18\x03 \x01(\x03\x42\x06\xe0\x41\x03\xe0\x41\x01H\x00\x88\x01\x01\x42\x1d\n\x1b_estimated_total_unit_count\"\xad\x02\n\x0eRolloutControl\x12s\n\nrun_params\x18\x02 \x01(\x0b\x32X.google.cloud.saasplatform.saasservicemgmt.v1beta1.RolloutControl.RunRolloutActionParamsB\x03\xe0\x41\x01H\x00\x12U\n\x06\x61\x63tion\x18\x01 \x01(\x0e\x32@.google.cloud.saasplatform.saasservicemgmt.v1beta1.RolloutActionB\x03\xe0\x41\x02\x1a>\n\x16RunRolloutActionParams\x12$\n\x17retry_failed_operations\x18\x01 \x01(\x08\x42\x03\xe0\x41\x02\x42\x0f\n\raction_params*|\n\rRolloutAction\x12\x1e\n\x1aROLLOUT_ACTION_UNSPECIFIED\x10\x00\x12\x16\n\x12ROLLOUT_ACTION_RUN\x10\x01\x12\x18\n\x14ROLLOUT_ACTION_PAUSE\x10\x02\x12\x19\n\x15ROLLOUT_ACTION_CANCEL\x10\x03\x42\xd6\x02\n5com.google.cloud.saasplatform.saasservicemgmt.v1beta1B\x1aSaasRolloutsResourcesProtoP\x01Z_cloud.google.com/go/saasplatform/saasservicemgmt/apiv1beta1/saasservicemgmtpb;saasservicemgmtpb\xaa\x02\x31Google.Cloud.SaasPlatform.SaasServiceMgmt.V1Beta1\xca\x02\x31Google\\Cloud\\SaasPlatform\\SaasServiceMgmt\\V1beta1\xea\x02\x35Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1b\x06proto3"
|
|
15
15
|
|
|
16
16
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
17
17
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -59,6 +59,7 @@ module Google
|
|
|
59
59
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
60
60
|
|
|
61
61
|
# Enumeration of variable types.
|
|
62
|
+
# `STRUCT` and `LIST` values should be JSON-encoded strings.
|
|
62
63
|
module Type
|
|
63
64
|
# Variable type is unspecified.
|
|
64
65
|
TYPE_UNSPECIFIED = 0
|
|
@@ -71,6 +72,12 @@ module Google
|
|
|
71
72
|
|
|
72
73
|
# Variable type is bool.
|
|
73
74
|
BOOL = 3
|
|
75
|
+
|
|
76
|
+
# Variable type is struct.
|
|
77
|
+
STRUCT = 4
|
|
78
|
+
|
|
79
|
+
# Variable type is list.
|
|
80
|
+
LIST = 5
|
|
74
81
|
end
|
|
75
82
|
end
|
|
76
83
|
|
|
@@ -128,6 +135,13 @@ module Google
|
|
|
128
135
|
# Condition type is operationError.
|
|
129
136
|
# True when the last unit operation fails with a non-ignorable error.
|
|
130
137
|
TYPE_OPERATION_ERROR = 4
|
|
138
|
+
|
|
139
|
+
# Indicates if AppHub app has been created or if Apphub app has already
|
|
140
|
+
# existed.
|
|
141
|
+
TYPE_APP_CREATED_OR_ALREADY_EXISTS = 5
|
|
142
|
+
|
|
143
|
+
# Indicates if services and workloads have been registered with AppHub.
|
|
144
|
+
TYPE_APP_COMPONENTS_REGISTERED = 6
|
|
131
145
|
end
|
|
132
146
|
end
|
|
133
147
|
|
|
@@ -191,6 +205,62 @@ module Google
|
|
|
191
205
|
|
|
192
206
|
# Indicates if services and workloads have been registered with AppHub.
|
|
193
207
|
TYPE_APP_COMPONENTS_REGISTERED = 7
|
|
208
|
+
|
|
209
|
+
# Indicates if the UnitOperation's core workload execution completed
|
|
210
|
+
# successfully.
|
|
211
|
+
# The workload is the core execution operation performed for a
|
|
212
|
+
# UnitOperation (e.g., provisioning, updating, or deprovisioning
|
|
213
|
+
# resources) excluding post-operation checks.
|
|
214
|
+
TYPE_WORKLOAD_SUCCEEDED = 8
|
|
215
|
+
end
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
# SaasCondition describes the status of a Saas.
|
|
219
|
+
# @!attribute [rw] status
|
|
220
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::SaasCondition::Status]
|
|
221
|
+
# Required. Status of the condition.
|
|
222
|
+
# @!attribute [rw] type
|
|
223
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::SaasCondition::Type]
|
|
224
|
+
# Required. Type of the condition.
|
|
225
|
+
# @!attribute [rw] last_transition_time
|
|
226
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
227
|
+
# Required. Last time the condition transited from one status to another.
|
|
228
|
+
# @!attribute [rw] message
|
|
229
|
+
# @return [::String]
|
|
230
|
+
# Required. Human readable message indicating details about the last
|
|
231
|
+
# transition.
|
|
232
|
+
# @!attribute [rw] reason
|
|
233
|
+
# @return [::String]
|
|
234
|
+
# Required. Brief reason for the condition's last transition.
|
|
235
|
+
class SaasCondition
|
|
236
|
+
include ::Google::Protobuf::MessageExts
|
|
237
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
238
|
+
|
|
239
|
+
# Enumeration of condition statuses.
|
|
240
|
+
module Status
|
|
241
|
+
# Condition status is unspecified.
|
|
242
|
+
STATUS_UNSPECIFIED = 0
|
|
243
|
+
|
|
244
|
+
# Condition is unknown.
|
|
245
|
+
STATUS_UNKNOWN = 1
|
|
246
|
+
|
|
247
|
+
# Condition is true.
|
|
248
|
+
STATUS_TRUE = 2
|
|
249
|
+
|
|
250
|
+
# Condition is false.
|
|
251
|
+
STATUS_FALSE = 3
|
|
252
|
+
end
|
|
253
|
+
|
|
254
|
+
# Enumeration of condition types.
|
|
255
|
+
module Type
|
|
256
|
+
# Condition type is unspecified.
|
|
257
|
+
TYPE_UNSPECIFIED = 0
|
|
258
|
+
|
|
259
|
+
# Condition type is ready.
|
|
260
|
+
TYPE_READY = 1
|
|
261
|
+
|
|
262
|
+
# Condition type is synchronized.
|
|
263
|
+
TYPE_SYNCHRONIZED = 2
|
|
194
264
|
end
|
|
195
265
|
end
|
|
196
266
|
|
|
@@ -42,6 +42,30 @@ module Google
|
|
|
42
42
|
# @return [::Array<::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::Location>]
|
|
43
43
|
# Optional. List of locations that the service is available in. Rollout
|
|
44
44
|
# refers to the list to generate a rollout plan.
|
|
45
|
+
# @!attribute [rw] application_template
|
|
46
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::CompositeRef]
|
|
47
|
+
# Reference to composite ApplicationTemplate.
|
|
48
|
+
# When specified, the template components will be imported into their
|
|
49
|
+
# equivalent UnitKind, Release and Blueprint resources.
|
|
50
|
+
# Deleted references will not delete imported resources.
|
|
51
|
+
# Should only be specified on source regions, and be unspecified on replica
|
|
52
|
+
# regions.
|
|
53
|
+
# @!attribute [r] blueprint_repo
|
|
54
|
+
# @return [::String]
|
|
55
|
+
# Output only. Name of repository in Artifact Registry for system-generated
|
|
56
|
+
# Blueprints, eg. Blueprints of imported ApplicationTemplates.
|
|
57
|
+
# @!attribute [r] state
|
|
58
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::Saas::State]
|
|
59
|
+
# Output only. State of the Saas.
|
|
60
|
+
# It is always in ACTIVE state if the application_template is empty.
|
|
61
|
+
# @!attribute [r] conditions
|
|
62
|
+
# @return [::Array<::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::SaasCondition>]
|
|
63
|
+
# Output only. A set of conditions which indicate the various conditions this
|
|
64
|
+
# resource can have.
|
|
65
|
+
# @!attribute [r] error
|
|
66
|
+
# @return [::Google::Rpc::Status]
|
|
67
|
+
# Output only. If the state is FAILED, the corresponding error code and
|
|
68
|
+
# message. Defaults to code=OK for all other states.
|
|
45
69
|
# @!attribute [rw] labels
|
|
46
70
|
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
47
71
|
# Optional. The labels on the resource, which can be used for categorization.
|
|
@@ -95,6 +119,32 @@ module Google
|
|
|
95
119
|
include ::Google::Protobuf::MessageExts
|
|
96
120
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
97
121
|
end
|
|
122
|
+
|
|
123
|
+
# State of the Saas.
|
|
124
|
+
module State
|
|
125
|
+
# State type is unspecified.
|
|
126
|
+
STATE_TYPE_UNSPECIFIED = 0
|
|
127
|
+
|
|
128
|
+
# The Saas is ready
|
|
129
|
+
STATE_ACTIVE = 1
|
|
130
|
+
|
|
131
|
+
# In the process of importing, synchronizing or replicating
|
|
132
|
+
# ApplicationTemplates
|
|
133
|
+
STATE_RUNNING = 2
|
|
134
|
+
|
|
135
|
+
# Failure during process of importing, synchronizing or replicating
|
|
136
|
+
# ApplicationTemplate processing
|
|
137
|
+
STATE_FAILED = 3
|
|
138
|
+
|
|
139
|
+
# Deprecated: Use STATE_ACTIVE.
|
|
140
|
+
ACTIVE = 1
|
|
141
|
+
|
|
142
|
+
# Deprecated: Use STATE_RUNNING.
|
|
143
|
+
RUNNING = 2
|
|
144
|
+
|
|
145
|
+
# Deprecated: Use STATE_FAILED.
|
|
146
|
+
FAILED = 3
|
|
147
|
+
end
|
|
98
148
|
end
|
|
99
149
|
|
|
100
150
|
# Tenant represents the service producer side of an instance of the
|
|
@@ -217,6 +267,13 @@ module Google
|
|
|
217
267
|
# (managed service) that the producer wants to manage with App Lifecycle
|
|
218
268
|
# Manager. Part of the App Lifecycle Manager common data model. Immutable
|
|
219
269
|
# once set.
|
|
270
|
+
# @!attribute [r] application_template_component
|
|
271
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::ComponentRef]
|
|
272
|
+
# Output only. Reference to component and revision in a composite
|
|
273
|
+
# ApplicationTemplate.
|
|
274
|
+
# @!attribute [rw] app_params
|
|
275
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::AppParams]
|
|
276
|
+
# AppParams contains the parameters for creating an AppHub Application.
|
|
220
277
|
# @!attribute [rw] labels
|
|
221
278
|
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
222
279
|
# Optional. The labels on the resource, which can be used for categorization.
|
|
@@ -348,6 +405,11 @@ module Google
|
|
|
348
405
|
# @return [::Google::Protobuf::Timestamp]
|
|
349
406
|
# Optional. Output only. If set, indicates the time when the system will
|
|
350
407
|
# start removing the unit.
|
|
408
|
+
# @!attribute [rw] application
|
|
409
|
+
# @return [::String]
|
|
410
|
+
# Optional. Reference to the AppHub Application this unit belongs to.
|
|
411
|
+
# All resources deployed in this Unit will be associated with the specified
|
|
412
|
+
# Application.
|
|
351
413
|
# @!attribute [rw] labels
|
|
352
414
|
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
353
415
|
# Optional. The labels on the resource, which can be used for categorization.
|
|
@@ -380,6 +442,13 @@ module Google
|
|
|
380
442
|
# Output only. The timestamp when the resource was last updated. Any
|
|
381
443
|
# change to the resource made by users must refresh this value.
|
|
382
444
|
# Changes to a resource made by the service should refresh this value.
|
|
445
|
+
# @!attribute [r] satisfies_pzs
|
|
446
|
+
# @return [::Boolean]
|
|
447
|
+
# Output only. Indicates whether the resource location satisfies Zone
|
|
448
|
+
# Separation constraints. This is false by default.
|
|
449
|
+
# @!attribute [r] satisfies_pzi
|
|
450
|
+
# @return [::Boolean]
|
|
451
|
+
# Output only. Reserved for future use.
|
|
383
452
|
class Unit
|
|
384
453
|
include ::Google::Protobuf::MessageExts
|
|
385
454
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -492,7 +561,7 @@ module Google
|
|
|
492
561
|
# unit to focus only on the change they have requested.
|
|
493
562
|
#
|
|
494
563
|
# This is a base object that contains the common fields in all unit operations.
|
|
495
|
-
# Next:
|
|
564
|
+
# Next: 22
|
|
496
565
|
# @!attribute [rw] provision
|
|
497
566
|
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::Provision]
|
|
498
567
|
# Note: The following fields are mutually exclusive: `provision`, `upgrade`, `deprovision`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
@@ -579,6 +648,10 @@ module Google
|
|
|
579
648
|
# Output only. The timestamp when the resource was last updated. Any
|
|
580
649
|
# change to the resource made by users must refresh this value.
|
|
581
650
|
# Changes to a resource made by the service should refresh this value.
|
|
651
|
+
# @!attribute [r] delete_time
|
|
652
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
653
|
+
# Output only. The timestamp when the resource was marked for deletion
|
|
654
|
+
# (deletion is an asynchronous operation).
|
|
582
655
|
class UnitOperation
|
|
583
656
|
include ::Google::Protobuf::MessageExts
|
|
584
657
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -703,6 +776,10 @@ module Google
|
|
|
703
776
|
# @!attribute [rw] input_variable_defaults
|
|
704
777
|
# @return [::Array<::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::UnitVariable>]
|
|
705
778
|
# Optional. Mapping of input variables to default values. Maximum 100
|
|
779
|
+
# @!attribute [r] application_template_component
|
|
780
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::ComponentRef]
|
|
781
|
+
# Output only. Reference to component and revision in a composite
|
|
782
|
+
# ApplicationTemplate.
|
|
706
783
|
# @!attribute [rw] labels
|
|
707
784
|
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
708
785
|
# Optional. The labels on the resource, which can be used for categorization.
|
|
@@ -831,6 +908,88 @@ module Google
|
|
|
831
908
|
include ::Google::Protobuf::MessageExts
|
|
832
909
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
833
910
|
end
|
|
911
|
+
|
|
912
|
+
# CompositeRef represents a reference to a composite resource.
|
|
913
|
+
# Next ID: 4
|
|
914
|
+
# @!attribute [rw] application_template
|
|
915
|
+
# @return [::String]
|
|
916
|
+
# Required. Reference to the ApplicationTemplate resource.
|
|
917
|
+
# @!attribute [rw] revision
|
|
918
|
+
# @return [::String]
|
|
919
|
+
# Revision of the ApplicationTemplate to use.
|
|
920
|
+
# Changes to revision will trigger manual resynchronization.
|
|
921
|
+
# If empty, ApplicationTemplate will be ignored.
|
|
922
|
+
# @!attribute [r] sync_operation
|
|
923
|
+
# @return [::String]
|
|
924
|
+
# Output only. Reference to on-going AppTemplate import and replication
|
|
925
|
+
# operation (i.e. the operation_id for the long-running operation). This
|
|
926
|
+
# field is opaque for external usage.
|
|
927
|
+
class CompositeRef
|
|
928
|
+
include ::Google::Protobuf::MessageExts
|
|
929
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
930
|
+
end
|
|
931
|
+
|
|
932
|
+
# ComponentRef represents a reference to a component resource.
|
|
933
|
+
# Next ID: 4
|
|
934
|
+
# @!attribute [rw] composite_ref
|
|
935
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::CompositeRef]
|
|
936
|
+
# Reference to the Composite ApplicationTemplate.
|
|
937
|
+
# @!attribute [rw] component
|
|
938
|
+
# @return [::String]
|
|
939
|
+
# Name of the component in composite.Components
|
|
940
|
+
# @!attribute [rw] revision
|
|
941
|
+
# @return [::String]
|
|
942
|
+
# Revision of the component.
|
|
943
|
+
# If the component does not have a revision, this field will be explicitly
|
|
944
|
+
# set to the revision of the composite ApplicationTemplate.
|
|
945
|
+
class ComponentRef
|
|
946
|
+
include ::Google::Protobuf::MessageExts
|
|
947
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
948
|
+
end
|
|
949
|
+
|
|
950
|
+
# AppParams contains the parameters for creating an AppHub Application.
|
|
951
|
+
# @!attribute [rw] group
|
|
952
|
+
# @return [::String]
|
|
953
|
+
# Grouping used to construct the name of the AppHub Application.
|
|
954
|
+
# Multiple UnitKinds can specify the same group to use the same Application
|
|
955
|
+
# across their respective units.
|
|
956
|
+
# Corresponds to the app_boundary_id in the ADC composite
|
|
957
|
+
# ApplicationTemplate. Defaults to UnitKind.name
|
|
958
|
+
# @!attribute [rw] scope
|
|
959
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::AppParams::Scope]
|
|
960
|
+
# Corresponds to the scope in the ADC composite ApplicationTemplate.
|
|
961
|
+
# Defaults to TYPE_REGIONAL.
|
|
962
|
+
class AppParams
|
|
963
|
+
include ::Google::Protobuf::MessageExts
|
|
964
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
965
|
+
|
|
966
|
+
# Scope of an application.
|
|
967
|
+
# @!attribute [rw] type
|
|
968
|
+
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::AppParams::Scope::Type]
|
|
969
|
+
# Required. Scope Type.
|
|
970
|
+
class Scope
|
|
971
|
+
include ::Google::Protobuf::MessageExts
|
|
972
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
973
|
+
|
|
974
|
+
# Scope Type.
|
|
975
|
+
module Type
|
|
976
|
+
# Unspecified type.
|
|
977
|
+
TYPE_UNSPECIFIED = 0
|
|
978
|
+
|
|
979
|
+
# Regional type.
|
|
980
|
+
TYPE_REGIONAL = 1
|
|
981
|
+
|
|
982
|
+
# Global type.
|
|
983
|
+
TYPE_GLOBAL = 2
|
|
984
|
+
|
|
985
|
+
# Deprecated: Use TYPE_REGIONAL.
|
|
986
|
+
REGIONAL = 1
|
|
987
|
+
|
|
988
|
+
# Deprecated: Use TYPE_GLOBAL.
|
|
989
|
+
GLOBAL = 2
|
|
990
|
+
end
|
|
991
|
+
end
|
|
992
|
+
end
|
|
834
993
|
end
|
|
835
994
|
end
|
|
836
995
|
end
|
|
@@ -72,8 +72,8 @@ module Google
|
|
|
72
72
|
# @return [::String]
|
|
73
73
|
# Optional. The strategy used for executing this Rollout.
|
|
74
74
|
# This strategy will override whatever strategy is specified in the
|
|
75
|
-
#
|
|
76
|
-
# strategy from
|
|
75
|
+
# RolloutKind. If not specified on creation, the
|
|
76
|
+
# strategy from RolloutKind will be used.
|
|
77
77
|
#
|
|
78
78
|
# There are two supported values strategies which are used to control
|
|
79
79
|
# - "Google.Cloud.Simple.AllAtOnce"
|
|
@@ -86,11 +86,11 @@ module Google
|
|
|
86
86
|
# Optional. CEL(https://github.com/google/cel-spec) formatted filter string
|
|
87
87
|
# against Unit. The filter will be applied to determine the eligible unit
|
|
88
88
|
# population. This filter can only reduce, but not expand the scope of the
|
|
89
|
-
# rollout. If not provided, the unit_filter from the
|
|
89
|
+
# rollout. If not provided, the unit_filter from the RolloutKind will be
|
|
90
90
|
# used.
|
|
91
91
|
# @!attribute [rw] rollout_kind
|
|
92
92
|
# @return [::String]
|
|
93
|
-
#
|
|
93
|
+
# Required. Immutable. Name of the RolloutKind this rollout is stemming from
|
|
94
94
|
# and adhering to.
|
|
95
95
|
# @!attribute [r] stats
|
|
96
96
|
# @return [::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::RolloutStats]
|
|
@@ -103,6 +103,15 @@ module Google
|
|
|
103
103
|
# all natural Rollout States (such as RUNNING -> SUCCEEDED or RUNNING ->
|
|
104
104
|
# FAILED). Requests can only be made when the Rollout is in a non-terminal
|
|
105
105
|
# state.
|
|
106
|
+
# @!attribute [r] effective_unit_filter
|
|
107
|
+
# @return [::String]
|
|
108
|
+
# Optional. Output only. Output only snapshot of the effective unit filter at
|
|
109
|
+
# Rollout start time. Contains a CEL(https://github.com/google/cel-spec)
|
|
110
|
+
# expression consisting of a conjunction of Rollout.unit_filter and
|
|
111
|
+
# RolloutKind.unit_filter. This field captures the filter applied by the
|
|
112
|
+
# Rollout to determine the Unit population. If the associated RolloutKind's
|
|
113
|
+
# unit_filter is modified after the rollout is started, it will not be
|
|
114
|
+
# updated here.
|
|
106
115
|
# @!attribute [rw] labels
|
|
107
116
|
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
108
117
|
# Optional. The labels on the resource, which can be used for categorization.
|
|
@@ -135,6 +144,10 @@ module Google
|
|
|
135
144
|
# Output only. The timestamp when the resource was last updated. Any
|
|
136
145
|
# change to the resource made by users must refresh this value.
|
|
137
146
|
# Changes to a resource made by the service should refresh this value.
|
|
147
|
+
# @!attribute [r] delete_time
|
|
148
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
149
|
+
# Output only. The timestamp when the resource was marked for deletion
|
|
150
|
+
# (deletion is an asynchronous operation).
|
|
138
151
|
class Rollout
|
|
139
152
|
include ::Google::Protobuf::MessageExts
|
|
140
153
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -316,10 +329,10 @@ module Google
|
|
|
316
329
|
# RolloutStats contains information about the progress of a rollout.
|
|
317
330
|
# @!attribute [r] operations_by_state
|
|
318
331
|
# @return [::Array<::Google::Cloud::SaasPlatform::SaasServiceMgmt::V1beta1::Aggregate>]
|
|
319
|
-
# Output only. A breakdown of the progress of
|
|
320
|
-
# rollout. Provides a count of Operations by
|
|
321
|
-
# determine the number of units which have
|
|
322
|
-
# be updated.
|
|
332
|
+
# Optional. Output only. Unordered list. A breakdown of the progress of
|
|
333
|
+
# operations triggered by the rollout. Provides a count of Operations by
|
|
334
|
+
# their state. This can be used to determine the number of units which have
|
|
335
|
+
# been updated, or are scheduled to be updated.
|
|
323
336
|
#
|
|
324
337
|
# There will be at most one entry per group.
|
|
325
338
|
# Possible values for operation groups are:
|
|
@@ -329,6 +342,10 @@ module Google
|
|
|
329
342
|
# - "SUCCEEDED"
|
|
330
343
|
# - "FAILED"
|
|
331
344
|
# - "CANCELLED"
|
|
345
|
+
# @!attribute [r] estimated_total_unit_count
|
|
346
|
+
# @return [::Integer]
|
|
347
|
+
# Optional. Output only. Estimated number of units based. The estimation is
|
|
348
|
+
# computed upon creation of the rollout.
|
|
332
349
|
class RolloutStats
|
|
333
350
|
include ::Google::Protobuf::MessageExts
|
|
334
351
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2026 Google LLC
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
module Google
|
|
21
|
+
module Rpc
|
|
22
|
+
# The `Status` type defines a logical error model that is suitable for
|
|
23
|
+
# different programming environments, including REST APIs and RPC APIs. It is
|
|
24
|
+
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
|
|
25
|
+
# three pieces of data: error code, error message, and error details.
|
|
26
|
+
#
|
|
27
|
+
# You can find out more about this error model and how to work with it in the
|
|
28
|
+
# [API Design Guide](https://cloud.google.com/apis/design/errors).
|
|
29
|
+
# @!attribute [rw] code
|
|
30
|
+
# @return [::Integer]
|
|
31
|
+
# The status code, which should be an enum value of
|
|
32
|
+
# [google.rpc.Code][google.rpc.Code].
|
|
33
|
+
# @!attribute [rw] message
|
|
34
|
+
# @return [::String]
|
|
35
|
+
# A developer-facing error message, which should be in English. Any
|
|
36
|
+
# user-facing error message should be localized and sent in the
|
|
37
|
+
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
|
|
38
|
+
# by the client.
|
|
39
|
+
# @!attribute [rw] details
|
|
40
|
+
# @return [::Array<::Google::Protobuf::Any>]
|
|
41
|
+
# A list of messages that carry the error details. There is a common set of
|
|
42
|
+
# message types for APIs to use.
|
|
43
|
+
class Status
|
|
44
|
+
include ::Google::Protobuf::MessageExts
|
|
45
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-saas_platform-saas_service_mgmt-v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -106,6 +106,7 @@ files:
|
|
|
106
106
|
- proto_docs/google/protobuf/empty.rb
|
|
107
107
|
- proto_docs/google/protobuf/field_mask.rb
|
|
108
108
|
- proto_docs/google/protobuf/timestamp.rb
|
|
109
|
+
- proto_docs/google/rpc/status.rb
|
|
109
110
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
|
110
111
|
licenses:
|
|
111
112
|
- Apache-2.0
|