Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the scope field from GLOBAL to DOMAIN in escalation_policy of monitoring service #25

Merged
merged 1 commit into from
Dec 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions proto/spaceone/api/monitoring/v1/escalation_policy.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ service EscalationPolicy {
],
"repeat_count": 2,
"finish_condition": "ACKNOWLEDGED",
"scope": "GLOBAL",
"scope": "DOMAIN",
"tags": {},
"domain_id": "domain-58010aa2e451",
"created_at": "2022-06-21T09:22:45.340Z"
Expand Down Expand Up @@ -81,7 +81,7 @@ service EscalationPolicy {
],
"repeat_count": 1,
"finish_condition": "RESOLVED",
"scope": "GLOBAL",
"scope": "DOMAIN",
"tags": {},
"domain_id": "domain-58010aa2e451",
"created_at": "2022-06-21T09:22:45.340Z"
Expand Down Expand Up @@ -118,7 +118,7 @@ service EscalationPolicy {
],
"repeat_count": 1,
"finish_condition": "RESOLVED",
"scope": "GLOBAL",
"scope": "DOMAIN",
"tags": {},
"domain_id": "domain-58010aa2e451",
"created_at": "2022-06-21T09:22:45.340Z"
Expand Down Expand Up @@ -159,7 +159,7 @@ service EscalationPolicy {
}
],
"finish_condition": "ACKNOWLEDGED",
"scope": "GLOBAL",
"scope": "DOMAIN",
"tags": {},
"domain_id": "domain-58010aa2e451",
"created_at": "2022-05-25T09:31:38.573Z"
Expand Down Expand Up @@ -187,7 +187,7 @@ service EscalationPolicy {
}
],
"finish_condition": "ACKNOWLEDGED",
"scope": "GLOBAL",
"scope": "DOMAIN",
"tags": {},
"domain_id": "domain-58010aa2e451",
"created_at": "2022-05-25T09:31:15.150Z"
Expand All @@ -205,7 +205,7 @@ service EscalationPolicy {
}
],
"finish_condition": "ACKNOWLEDGED",
"scope": "GLOBAL",
"scope": "DOMAIN",
"tags": {},
"domain_id": "domain-58010aa2e451",
"created_at": "2022-05-25T09:31:38.573Z"
Expand Down Expand Up @@ -307,7 +307,7 @@ message GetEscalationPolicyRequest {
message EscalationPolicyQuery {
enum EscalationPolicyScope {
SCOPE_NONE = 0;
GLOBAL = 1;
DOMAIN = 1;
PROJECT = 2;
}

Expand Down Expand Up @@ -338,7 +338,7 @@ message EscalationPolicyQuery {
message EscalationPolicyInfo {
enum EscalationPolicyScope {
SCOPE_NONE = 0;
GLOBAL = 1;
DOMAIN = 1;
PROJECT = 2;
}

Expand Down