1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457
// This file is @generated by prost-build.
/// Feature represents the settings and status of any Hub Feature.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Feature {
/// Output only. The full, unique name of this Feature resource in the format
/// `projects/*/locations/*/features/*`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// GCP labels for this Feature.
#[prost(btree_map = "string, string", tag = "2")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Output only. State of the Feature resource itself.
#[prost(message, optional, tag = "3")]
pub resource_state: ::core::option::Option<FeatureResourceState>,
/// Optional. Hub-wide Feature configuration. If this Feature does not support any
/// Hub-wide configuration, this field may be unused.
#[prost(message, optional, tag = "4")]
pub spec: ::core::option::Option<CommonFeatureSpec>,
/// Optional. Membership-specific configuration for this Feature. If this Feature does
/// not support any per-Membership configuration, this field may be unused.
///
/// The keys indicate which Membership the configuration is for, in the form:
///
/// projects/{p}/locations/{l}/memberships/{m}
///
/// Where {p} is the project, {l} is a valid location and {m} is a valid
/// Membership in this project at that location. {p} WILL match the Feature's
/// project.
///
/// {p} will always be returned as the project number, but the project ID is
/// also accepted during input. If the same Membership is specified in the map
/// twice (using the project ID form, and the project number form), exactly
/// ONE of the entries will be saved, with no guarantees as to which. For this
/// reason, it is recommended the same format be used for all entries when
/// mutating a Feature.
#[prost(btree_map = "string, message", tag = "5")]
pub membership_specs: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
MembershipFeatureSpec,
>,
/// Output only. The Hub-wide Feature state.
#[prost(message, optional, tag = "6")]
pub state: ::core::option::Option<CommonFeatureState>,
/// Output only. Membership-specific Feature status. If this Feature does
/// report any per-Membership status, this field may be unused.
///
/// The keys indicate which Membership the state is for, in the form:
///
/// projects/{p}/locations/{l}/memberships/{m}
///
/// Where {p} is the project number, {l} is a valid location and {m} is a valid
/// Membership in this project at that location. {p} MUST match the Feature's
/// project number.
#[prost(btree_map = "string, message", tag = "7")]
pub membership_states: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
MembershipFeatureState,
>,
/// Output only. When the Feature resource was created.
#[prost(message, optional, tag = "8")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. When the Feature resource was last updated.
#[prost(message, optional, tag = "9")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. When the Feature resource was deleted.
#[prost(message, optional, tag = "10")]
pub delete_time: ::core::option::Option<::prost_types::Timestamp>,
}
/// FeatureResourceState describes the state of a Feature *resource* in the
/// GkeHub API. See `FeatureState` for the "running state" of the Feature in the
/// Hub and across Memberships.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct FeatureResourceState {
/// The current state of the Feature resource in the Hub API.
#[prost(enumeration = "feature_resource_state::State", tag = "1")]
pub state: i32,
}
/// Nested message and enum types in `FeatureResourceState`.
pub mod feature_resource_state {
/// State describes the lifecycle status of a Feature.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// State is unknown or not set.
Unspecified = 0,
/// The Feature is being enabled, and the Feature resource is being created.
/// Once complete, the corresponding Feature will be enabled in this Hub.
Enabling = 1,
/// The Feature is enabled in this Hub, and the Feature resource is fully
/// available.
Active = 2,
/// The Feature is being disabled in this Hub, and the Feature resource
/// is being deleted.
Disabling = 3,
/// The Feature resource is being updated.
Updating = 4,
/// The Feature resource is being updated by the Hub Service.
ServiceUpdating = 5,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Enabling => "ENABLING",
State::Active => "ACTIVE",
State::Disabling => "DISABLING",
State::Updating => "UPDATING",
State::ServiceUpdating => "SERVICE_UPDATING",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"ENABLING" => Some(Self::Enabling),
"ACTIVE" => Some(Self::Active),
"DISABLING" => Some(Self::Disabling),
"UPDATING" => Some(Self::Updating),
"SERVICE_UPDATING" => Some(Self::ServiceUpdating),
_ => None,
}
}
}
}
/// FeatureState describes the high-level state of a Feature. It may be used to
/// describe a Feature's state at the environ-level, or per-membershop, depending
/// on the context.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FeatureState {
/// The high-level, machine-readable status of this Feature.
#[prost(enumeration = "feature_state::Code", tag = "1")]
pub code: i32,
/// A human-readable description of the current status.
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
/// The time this status and any related Feature-specific details were updated.
#[prost(message, optional, tag = "3")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
}
/// Nested message and enum types in `FeatureState`.
pub mod feature_state {
/// Code represents a machine-readable, high-level status of the Feature.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Code {
/// Unknown or not set.
Unspecified = 0,
/// The Feature is operating normally.
Ok = 1,
/// The Feature has encountered an issue, and is operating in a degraded
/// state. The Feature may need intervention to return to normal operation.
/// See the description and any associated Feature-specific details for more
/// information.
Warning = 2,
/// The Feature is not operating or is in a severely degraded state.
/// The Feature may need intervention to return to normal operation.
/// See the description and any associated Feature-specific details for more
/// information.
Error = 3,
}
impl Code {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Code::Unspecified => "CODE_UNSPECIFIED",
Code::Ok => "OK",
Code::Warning => "WARNING",
Code::Error => "ERROR",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"CODE_UNSPECIFIED" => Some(Self::Unspecified),
"OK" => Some(Self::Ok),
"WARNING" => Some(Self::Warning),
"ERROR" => Some(Self::Error),
_ => None,
}
}
}
}
/// CommonFeatureSpec contains Hub-wide configuration information
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CommonFeatureSpec {
#[prost(oneof = "common_feature_spec::FeatureSpec", tags = "102")]
pub feature_spec: ::core::option::Option<common_feature_spec::FeatureSpec>,
}
/// Nested message and enum types in `CommonFeatureSpec`.
pub mod common_feature_spec {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum FeatureSpec {
/// Multicluster Ingress-specific spec.
#[prost(message, tag = "102")]
Multiclusteringress(super::super::multiclusteringress::v1::FeatureSpec),
}
}
/// CommonFeatureState contains Hub-wide Feature status information.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CommonFeatureState {
/// Output only. The "running state" of the Feature in this Hub.
#[prost(message, optional, tag = "1")]
pub state: ::core::option::Option<FeatureState>,
}
/// MembershipFeatureSpec contains configuration information for a single
/// Membership.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MembershipFeatureSpec {
#[prost(oneof = "membership_feature_spec::FeatureSpec", tags = "106")]
pub feature_spec: ::core::option::Option<membership_feature_spec::FeatureSpec>,
}
/// Nested message and enum types in `MembershipFeatureSpec`.
pub mod membership_feature_spec {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum FeatureSpec {
/// Config Management-specific spec.
#[prost(message, tag = "106")]
Configmanagement(super::super::configmanagement::v1::MembershipSpec),
}
}
/// MembershipFeatureState contains Feature status information for a single
/// Membership.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MembershipFeatureState {
/// The high-level state of this Feature for a single membership.
#[prost(message, optional, tag = "1")]
pub state: ::core::option::Option<FeatureState>,
#[prost(oneof = "membership_feature_state::FeatureState", tags = "106")]
pub feature_state: ::core::option::Option<membership_feature_state::FeatureState>,
}
/// Nested message and enum types in `MembershipFeatureState`.
pub mod membership_feature_state {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum FeatureState {
/// Config Management-specific state.
#[prost(message, tag = "106")]
Configmanagement(super::super::configmanagement::v1::MembershipState),
}
}
/// Membership contains information about a member cluster.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Membership {
/// Output only. The full, unique name of this Membership resource in the
/// format `projects/*/locations/*/memberships/{membership_id}`, set during
/// creation.
///
/// `membership_id` must be a valid RFC 1123 compliant DNS label:
///
/// 1. At most 63 characters in length
/// 2. It must consist of lower case alphanumeric characters or `-`
/// 3. It must start and end with an alphanumeric character
///
/// Which can be expressed as the regex: `[a-z0-9](\[-a-z0-9\]*[a-z0-9])?`,
/// with a maximum length of 63 characters.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. Labels for this membership.
#[prost(btree_map = "string, string", tag = "2")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Output only. Description of this membership, limited to 63 characters.
/// Must match the regex: `[a-zA-Z0-9][a-zA-Z0-9_\-\.\ ]*`
///
/// This field is present for legacy purposes.
#[prost(string, tag = "3")]
pub description: ::prost::alloc::string::String,
/// Output only. State of the Membership resource.
#[prost(message, optional, tag = "5")]
pub state: ::core::option::Option<MembershipState>,
/// Output only. When the Membership was created.
#[prost(message, optional, tag = "6")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. When the Membership was last updated.
#[prost(message, optional, tag = "7")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. When the Membership was deleted.
#[prost(message, optional, tag = "8")]
pub delete_time: ::core::option::Option<::prost_types::Timestamp>,
/// Optional. An externally-generated and managed ID for this Membership. This
/// ID may be modified after creation, but this is not recommended.
///
/// The ID must match the regex: `[a-zA-Z0-9][a-zA-Z0-9_\-\.]*`
///
/// If this Membership represents a Kubernetes cluster, this value should be
/// set to the UID of the `kube-system` namespace object.
#[prost(string, tag = "9")]
pub external_id: ::prost::alloc::string::String,
/// Output only. For clusters using Connect, the timestamp of the most recent
/// connection established with Google Cloud. This time is updated every
/// several minutes, not continuously. For clusters that do not use GKE
/// Connect, or that have never connected successfully, this field will be
/// unset.
#[prost(message, optional, tag = "10")]
pub last_connection_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. Google-generated UUID for this resource. This is unique across
/// all Membership resources. If a Membership resource is deleted and another
/// resource with the same name is created, it gets a different unique_id.
#[prost(string, tag = "11")]
pub unique_id: ::prost::alloc::string::String,
/// Optional. How to identify workloads from this Membership.
/// See the documentation on Workload Identity for more details:
/// <https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity>
#[prost(message, optional, tag = "12")]
pub authority: ::core::option::Option<Authority>,
/// Optional. The monitoring config information for this membership.
#[prost(message, optional, tag = "14")]
pub monitoring_config: ::core::option::Option<MonitoringConfig>,
/// Type of resource represented by this Membership
#[prost(oneof = "membership::Type", tags = "4")]
pub r#type: ::core::option::Option<membership::Type>,
}
/// Nested message and enum types in `Membership`.
pub mod membership {
/// Type of resource represented by this Membership
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Type {
/// Optional. Endpoint information to reach this member.
#[prost(message, tag = "4")]
Endpoint(super::MembershipEndpoint),
}
}
/// MembershipEndpoint contains information needed to contact a Kubernetes API,
/// endpoint and any additional Kubernetes metadata.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MembershipEndpoint {
/// Optional. GKE-specific information. Only present if this Membership is a GKE cluster.
#[prost(message, optional, tag = "1")]
pub gke_cluster: ::core::option::Option<GkeCluster>,
/// Output only. Useful Kubernetes-specific metadata.
#[prost(message, optional, tag = "2")]
pub kubernetes_metadata: ::core::option::Option<KubernetesMetadata>,
/// Optional. The in-cluster Kubernetes Resources that should be applied for a
/// correctly registered cluster, in the steady state. These resources:
///
/// * Ensure that the cluster is exclusively registered to one and only one
/// Hub Membership.
/// * Propagate Workload Pool Information available in the Membership
/// Authority field.
/// * Ensure proper initial configuration of default Hub Features.
#[prost(message, optional, tag = "3")]
pub kubernetes_resource: ::core::option::Option<KubernetesResource>,
/// Output only. Whether the lifecycle of this membership is managed by a
/// google cluster platform service.
#[prost(bool, tag = "8")]
pub google_managed: bool,
}
/// KubernetesResource contains the YAML manifests and configuration for
/// Membership Kubernetes resources in the cluster. After CreateMembership or
/// UpdateMembership, these resources should be re-applied in the cluster.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct KubernetesResource {
/// Input only. The YAML representation of the Membership CR. This field is
/// ignored for GKE clusters where Hub can read the CR directly.
///
/// Callers should provide the CR that is currently present in the cluster
/// during CreateMembership or UpdateMembership, or leave this field empty if
/// none exists. The CR manifest is used to validate the cluster has not been
/// registered with another Membership.
#[prost(string, tag = "1")]
pub membership_cr_manifest: ::prost::alloc::string::String,
/// Output only. Additional Kubernetes resources that need to be applied to the
/// cluster after Membership creation, and after every update.
///
/// This field is only populated in the Membership returned from a successful
/// long-running operation from CreateMembership or UpdateMembership. It is not
/// populated during normal GetMembership or ListMemberships requests. To get
/// the resource manifest after the initial registration, the caller should
/// make a UpdateMembership call with an empty field mask.
#[prost(message, repeated, tag = "2")]
pub membership_resources: ::prost::alloc::vec::Vec<ResourceManifest>,
/// Output only. The Kubernetes resources for installing the GKE Connect agent
///
/// This field is only populated in the Membership returned from a successful
/// long-running operation from CreateMembership or UpdateMembership. It is not
/// populated during normal GetMembership or ListMemberships requests. To get
/// the resource manifest after the initial registration, the caller should
/// make a UpdateMembership call with an empty field mask.
#[prost(message, repeated, tag = "3")]
pub connect_resources: ::prost::alloc::vec::Vec<ResourceManifest>,
/// Optional. Options for Kubernetes resource generation.
#[prost(message, optional, tag = "4")]
pub resource_options: ::core::option::Option<ResourceOptions>,
}
/// ResourceOptions represent options for Kubernetes resource generation.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ResourceOptions {
/// Optional. The Connect agent version to use for connect_resources. Defaults
/// to the latest GKE Connect version. The version must be a currently
/// supported version, obsolete versions will be rejected.
#[prost(string, tag = "1")]
pub connect_version: ::prost::alloc::string::String,
/// Optional. Use `apiextensions/v1beta1` instead of `apiextensions/v1` for
/// CustomResourceDefinition resources.
/// This option should be set for clusters with Kubernetes apiserver versions
/// <1.16.
#[prost(bool, tag = "2")]
pub v1beta1_crd: bool,
/// Optional. Major version of the Kubernetes cluster. This is only used to
/// determine which version to use for the CustomResourceDefinition resources,
/// `apiextensions/v1beta1` or`apiextensions/v1`.
#[prost(string, tag = "3")]
pub k8s_version: ::prost::alloc::string::String,
}
/// ResourceManifest represents a single Kubernetes resource to be applied to
/// the cluster.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ResourceManifest {
/// YAML manifest of the resource.
#[prost(string, tag = "1")]
pub manifest: ::prost::alloc::string::String,
/// Whether the resource provided in the manifest is `cluster_scoped`.
/// If unset, the manifest is assumed to be namespace scoped.
///
/// This field is used for REST mapping when applying the resource in a
/// cluster.
#[prost(bool, tag = "2")]
pub cluster_scoped: bool,
}
/// GkeCluster contains information specific to GKE clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GkeCluster {
/// Immutable. Self-link of the Google Cloud resource for the GKE cluster. For
/// example:
///
/// //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster
///
/// Zonal clusters are also supported.
#[prost(string, tag = "1")]
pub resource_link: ::prost::alloc::string::String,
/// Output only. If cluster_missing is set then it denotes that the GKE cluster
/// no longer exists in the GKE Control Plane.
#[prost(bool, tag = "2")]
pub cluster_missing: bool,
}
/// KubernetesMetadata provides informational metadata for Memberships
/// representing Kubernetes clusters.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct KubernetesMetadata {
/// Output only. Kubernetes API server version string as reported by
/// `/version`.
#[prost(string, tag = "1")]
pub kubernetes_api_server_version: ::prost::alloc::string::String,
/// Output only. Node providerID as reported by the first node in the list of
/// nodes on the Kubernetes endpoint. On Kubernetes platforms that support
/// zero-node clusters (like GKE-on-GCP), the node_count will be zero and the
/// node_provider_id will be empty.
#[prost(string, tag = "2")]
pub node_provider_id: ::prost::alloc::string::String,
/// Output only. Node count as reported by Kubernetes nodes resources.
#[prost(int32, tag = "3")]
pub node_count: i32,
/// Output only. vCPU count as reported by Kubernetes nodes resources.
#[prost(int32, tag = "4")]
pub vcpu_count: i32,
/// Output only. The total memory capacity as reported by the sum of all
/// Kubernetes nodes resources, defined in MB.
#[prost(int32, tag = "5")]
pub memory_mb: i32,
/// Output only. The time at which these details were last updated. This
/// update_time is different from the Membership-level update_time since
/// EndpointDetails are updated internally for API consumers.
#[prost(message, optional, tag = "100")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
}
/// This field informs Fleet-based applications/services/UIs with the necessary
/// information for where each underlying Cluster reports its metrics.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MonitoringConfig {
/// Immutable. Project used to report Metrics
#[prost(string, tag = "1")]
pub project_id: ::prost::alloc::string::String,
/// Immutable. Location used to report Metrics
#[prost(string, tag = "2")]
pub location: ::prost::alloc::string::String,
/// Immutable. Cluster name used to report metrics.
/// For Anthos on VMWare/Baremetal, it would be in format
/// `memberClusters/cluster_name`; And for Anthos on MultiCloud, it would be in
/// format
/// `{azureClusters, awsClusters}/cluster_name`.
#[prost(string, tag = "3")]
pub cluster: ::prost::alloc::string::String,
/// Kubernetes system metrics, if available, are written to this prefix.
/// This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos
/// eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today
/// but will migration to be under kubernetes.io/anthos
#[prost(string, tag = "4")]
pub kubernetes_metrics_prefix: ::prost::alloc::string::String,
/// Immutable. Cluster hash, this is a unique string generated by google code,
/// which does not contain any PII, which we can use to reference the cluster.
/// This is expected to be created by the monitoring stack and persisted into
/// the Cluster object as well as to GKE-Hub.
#[prost(string, tag = "5")]
pub cluster_hash: ::prost::alloc::string::String,
}
/// MembershipState describes the state of a Membership resource.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct MembershipState {
/// Output only. The current state of the Membership resource.
#[prost(enumeration = "membership_state::Code", tag = "1")]
pub code: i32,
}
/// Nested message and enum types in `MembershipState`.
pub mod membership_state {
/// Code describes the state of a Membership resource.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Code {
/// The code is not set.
Unspecified = 0,
/// The cluster is being registered.
Creating = 1,
/// The cluster is registered.
Ready = 2,
/// The cluster is being unregistered.
Deleting = 3,
/// The Membership is being updated.
Updating = 4,
/// The Membership is being updated by the Hub Service.
ServiceUpdating = 5,
}
impl Code {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Code::Unspecified => "CODE_UNSPECIFIED",
Code::Creating => "CREATING",
Code::Ready => "READY",
Code::Deleting => "DELETING",
Code::Updating => "UPDATING",
Code::ServiceUpdating => "SERVICE_UPDATING",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"CODE_UNSPECIFIED" => Some(Self::Unspecified),
"CREATING" => Some(Self::Creating),
"READY" => Some(Self::Ready),
"DELETING" => Some(Self::Deleting),
"UPDATING" => Some(Self::Updating),
"SERVICE_UPDATING" => Some(Self::ServiceUpdating),
_ => None,
}
}
}
}
/// Authority encodes how Google will recognize identities from this Membership.
/// See the workload identity documentation for more details:
/// <https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity>
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Authority {
/// Optional. A JSON Web Token (JWT) issuer URI. `issuer` must start with
/// `<https://`> and be a valid URL with length <2000 characters.
///
/// If set, then Google will allow valid OIDC tokens from this issuer to
/// authenticate within the workload_identity_pool. OIDC discovery will be
/// performed on this URI to validate tokens from the issuer.
///
/// Clearing `issuer` disables Workload Identity. `issuer` cannot be directly
/// modified; it must be cleared (and Workload Identity disabled) before using
/// a new issuer (and re-enabling Workload Identity).
#[prost(string, tag = "1")]
pub issuer: ::prost::alloc::string::String,
/// Output only. The name of the workload identity pool in which `issuer` will
/// be recognized.
///
/// There is a single Workload Identity Pool per Hub that is shared
/// between all Memberships that belong to that Hub. For a Hub hosted in
/// {PROJECT_ID}, the workload pool format is `{PROJECT_ID}.hub.id.goog`,
/// although this is subject to change in newer versions of this API.
#[prost(string, tag = "2")]
pub workload_identity_pool: ::prost::alloc::string::String,
/// Output only. An identity provider that reflects the `issuer` in the
/// workload identity pool.
#[prost(string, tag = "3")]
pub identity_provider: ::prost::alloc::string::String,
/// Optional. OIDC verification keys for this Membership in JWKS format (RFC
/// 7517).
///
/// When this field is set, OIDC discovery will NOT be performed on `issuer`,
/// and instead OIDC tokens will be validated using this field.
#[prost(bytes = "bytes", tag = "4")]
pub oidc_jwks: ::prost::bytes::Bytes,
}
/// Request message for `GkeHub.ListMemberships` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListMembershipsRequest {
/// Required. The parent (project and location) where the Memberships will be
/// listed. Specified in the format `projects/*/locations/*`.
/// `projects/*/locations/-` list memberships in all the regions.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Optional. When requesting a 'page' of resources, `page_size` specifies
/// number of resources to return. If unspecified or set to 0, all resources
/// will be returned.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// Optional. Token returned by previous call to `ListMemberships` which
/// specifies the position in the list from where to continue listing the
/// resources.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// Optional. Lists Memberships that match the filter expression, following the
/// syntax outlined in <https://google.aip.dev/160.>
///
/// Examples:
///
/// - Name is `bar` in project `foo-proj` and location `global`:
///
/// name = "projects/foo-proj/locations/global/membership/bar"
///
/// - Memberships that have a label called `foo`:
///
/// labels.foo:*
///
/// - Memberships that have a label called `foo` whose value is `bar`:
///
/// labels.foo = bar
///
/// - Memberships in the CREATING state:
///
/// state = CREATING
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
/// Optional. One or more fields to compare and use to sort the output.
/// See <https://google.aip.dev/132#ordering.>
#[prost(string, tag = "5")]
pub order_by: ::prost::alloc::string::String,
}
/// Response message for the `GkeHub.ListMemberships` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListMembershipsResponse {
/// The list of matching Memberships.
#[prost(message, repeated, tag = "1")]
pub resources: ::prost::alloc::vec::Vec<Membership>,
/// A token to request the next page of resources from the
/// `ListMemberships` method. The value of an empty string means that
/// there are no more resources to return.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// List of locations that could not be reached while fetching this list.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Request message for `GkeHub.GetMembership` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetMembershipRequest {
/// Required. The Membership resource name in the format
/// `projects/*/locations/*/memberships/*`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for the `GkeHub.CreateMembership` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateMembershipRequest {
/// Required. The parent (project and location) where the Memberships will be
/// created. Specified in the format `projects/*/locations/*`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. Client chosen ID for the membership. `membership_id` must be a
/// valid RFC 1123 compliant DNS label:
///
/// 1. At most 63 characters in length
/// 2. It must consist of lower case alphanumeric characters or `-`
/// 3. It must start and end with an alphanumeric character
///
/// Which can be expressed as the regex: `[a-z0-9](\[-a-z0-9\]*[a-z0-9])?`,
/// with a maximum length of 63 characters.
#[prost(string, tag = "2")]
pub membership_id: ::prost::alloc::string::String,
/// Required. The membership to create.
#[prost(message, optional, tag = "3")]
pub resource: ::core::option::Option<Membership>,
/// Optional. A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes after the first request.
///
/// For example, consider a situation where you make an initial request and
/// the request times out. If you make the request again with the same request
/// ID, the server can check if original operation with the same request ID
/// was received, and if so, will ignore the second request. This prevents
/// clients from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported (00000000-0000-0000-0000-000000000000).
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for `GkeHub.DeleteMembership` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteMembershipRequest {
/// Required. The Membership resource name in the format
/// `projects/*/locations/*/memberships/*`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes after the first request.
///
/// For example, consider a situation where you make an initial request and
/// the request times out. If you make the request again with the same request
/// ID, the server can check if original operation with the same request ID
/// was received, and if so, will ignore the second request. This prevents
/// clients from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported (00000000-0000-0000-0000-000000000000).
#[prost(string, tag = "2")]
pub request_id: ::prost::alloc::string::String,
/// Optional. If set to true, any subresource from this Membership will also be
/// deleted. Otherwise, the request will only work if the Membership has no
/// subresource.
#[prost(bool, tag = "3")]
pub force: bool,
}
/// Request message for `GkeHub.UpdateMembership` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateMembershipRequest {
/// Required. The Membership resource name in the format
/// `projects/*/locations/*/memberships/*`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Required. Mask of fields to update.
#[prost(message, optional, tag = "2")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
/// Required. Only fields specified in update_mask are updated.
/// If you specify a field in the update_mask but don't specify its value here
/// that field will be deleted.
/// If you are updating a map field, set the value of a key to null or empty
/// string to delete the key from the map. It's not possible to update a key's
/// value to the empty string.
/// If you specify the update_mask to be a special path "*", fully replaces all
/// user-modifiable fields to match `resource`.
#[prost(message, optional, tag = "3")]
pub resource: ::core::option::Option<Membership>,
/// Optional. A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes after the first request.
///
/// For example, consider a situation where you make an initial request and
/// the request times out. If you make the request again with the same request
/// ID, the server can check if original operation with the same request ID
/// was received, and if so, will ignore the second request. This prevents
/// clients from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported (00000000-0000-0000-0000-000000000000).
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for `GkeHub.GenerateConnectManifest`
/// method.
/// .
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateConnectManifestRequest {
/// Required. The Membership resource name the Agent will associate with, in
/// the format `projects/*/locations/*/memberships/*`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. Namespace for GKE Connect agent resources. Defaults to
/// `gke-connect`.
///
/// The Connect Agent is authorized automatically when run in the default
/// namespace. Otherwise, explicit authorization must be granted with an
/// additional IAM binding.
#[prost(string, tag = "2")]
pub namespace: ::prost::alloc::string::String,
/// Optional. URI of a proxy if connectivity from the agent to
/// gkeconnect.googleapis.com requires the use of a proxy. Format must be in
/// the form `http(s)://{proxy_address}`, depending on the HTTP/HTTPS protocol
/// supported by the proxy. This will direct the connect agent's outbound
/// traffic through a HTTP(S) proxy.
#[prost(bytes = "bytes", tag = "3")]
pub proxy: ::prost::bytes::Bytes,
/// Optional. The Connect agent version to use. Defaults to the most current
/// version.
#[prost(string, tag = "4")]
pub version: ::prost::alloc::string::String,
/// Optional. If true, generate the resources for upgrade only. Some resources
/// generated only for installation (e.g. secrets) will be excluded.
#[prost(bool, tag = "5")]
pub is_upgrade: bool,
/// Optional. The registry to fetch the connect agent image from. Defaults to
/// gcr.io/gkeconnect.
#[prost(string, tag = "6")]
pub registry: ::prost::alloc::string::String,
/// Optional. The image pull secret content for the registry, if not public.
#[prost(bytes = "bytes", tag = "7")]
pub image_pull_secret_content: ::prost::bytes::Bytes,
}
/// GenerateConnectManifestResponse contains manifest information for
/// installing/upgrading a Connect agent.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateConnectManifestResponse {
/// The ordered list of Kubernetes resources that need to be applied to the
/// cluster for GKE Connect agent installation/upgrade.
#[prost(message, repeated, tag = "1")]
pub manifest: ::prost::alloc::vec::Vec<ConnectAgentResource>,
}
/// ConnectAgentResource represents a Kubernetes resource manifest for Connect
/// Agent deployment.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ConnectAgentResource {
/// Kubernetes type of the resource.
#[prost(message, optional, tag = "1")]
pub r#type: ::core::option::Option<TypeMeta>,
/// YAML manifest of the resource.
#[prost(string, tag = "2")]
pub manifest: ::prost::alloc::string::String,
}
/// TypeMeta is the type information needed for content unmarshalling of
/// Kubernetes resources in the manifest.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TypeMeta {
/// Kind of the resource (e.g. Deployment).
#[prost(string, tag = "1")]
pub kind: ::prost::alloc::string::String,
/// APIVersion of the resource (e.g. v1).
#[prost(string, tag = "2")]
pub api_version: ::prost::alloc::string::String,
}
/// Request message for `GkeHub.ListFeatures` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListFeaturesRequest {
/// Required. The parent (project and location) where the Features will be listed.
/// Specified in the format `projects/*/locations/*`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// When requesting a 'page' of resources, `page_size` specifies number of
/// resources to return. If unspecified or set to 0, all resources will
/// be returned.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// Token returned by previous call to `ListFeatures` which
/// specifies the position in the list from where to continue listing the
/// resources.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// Lists Features that match the filter expression, following the syntax
/// outlined in <https://google.aip.dev/160.>
///
/// Examples:
///
/// - Feature with the name "servicemesh" in project "foo-proj":
///
/// name = "projects/foo-proj/locations/global/features/servicemesh"
///
/// - Features that have a label called `foo`:
///
/// labels.foo:*
///
/// - Features that have a label called `foo` whose value is `bar`:
///
/// labels.foo = bar
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
/// One or more fields to compare and use to sort the output.
/// See <https://google.aip.dev/132#ordering.>
#[prost(string, tag = "5")]
pub order_by: ::prost::alloc::string::String,
}
/// Response message for the `GkeHub.ListFeatures` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListFeaturesResponse {
/// The list of matching Features
#[prost(message, repeated, tag = "1")]
pub resources: ::prost::alloc::vec::Vec<Feature>,
/// A token to request the next page of resources from the
/// `ListFeatures` method. The value of an empty string means
/// that there are no more resources to return.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request message for `GkeHub.GetFeature` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetFeatureRequest {
/// Required. The Feature resource name in the format
/// `projects/*/locations/*/features/*`
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request message for the `GkeHub.CreateFeature` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateFeatureRequest {
/// Required. The parent (project and location) where the Feature will be created.
/// Specified in the format `projects/*/locations/*`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The ID of the feature to create.
#[prost(string, tag = "2")]
pub feature_id: ::prost::alloc::string::String,
/// The Feature resource to create.
#[prost(message, optional, tag = "3")]
pub resource: ::core::option::Option<Feature>,
/// Optional. A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes after the first request.
///
/// For example, consider a situation where you make an initial request and
/// the request times out. If you make the request again with the same request
/// ID, the server can check if original operation with the same request ID
/// was received, and if so, will ignore the second request. This prevents
/// clients from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported (00000000-0000-0000-0000-000000000000).
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for `GkeHub.DeleteFeature` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteFeatureRequest {
/// Required. The Feature resource name in the format
/// `projects/*/locations/*/features/*`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// If set to true, the delete will ignore any outstanding resources for
/// this Feature (that is, `FeatureState.has_resources` is set to true). These
/// resources will NOT be cleaned up or modified in any way.
#[prost(bool, tag = "2")]
pub force: bool,
/// Optional. A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes after the first request.
///
/// For example, consider a situation where you make an initial request and
/// the request times out. If you make the request again with the same request
/// ID, the server can check if original operation with the same request ID
/// was received, and if so, will ignore the second request. This prevents
/// clients from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported (00000000-0000-0000-0000-000000000000).
#[prost(string, tag = "3")]
pub request_id: ::prost::alloc::string::String,
}
/// Request message for `GkeHub.UpdateFeature` method.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateFeatureRequest {
/// Required. The Feature resource name in the format
/// `projects/*/locations/*/features/*`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Mask of fields to update.
#[prost(message, optional, tag = "2")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
/// Only fields specified in update_mask are updated.
/// If you specify a field in the update_mask but don't specify its value here
/// that field will be deleted.
/// If you are updating a map field, set the value of a key to null or empty
/// string to delete the key from the map. It's not possible to update a key's
/// value to the empty string.
/// If you specify the update_mask to be a special path "*", fully replaces all
/// user-modifiable fields to match `resource`.
#[prost(message, optional, tag = "3")]
pub resource: ::core::option::Option<Feature>,
/// Optional. A request ID to identify requests. Specify a unique request ID
/// so that if you must retry your request, the server will know to ignore
/// the request if it has already been completed. The server will guarantee
/// that for at least 60 minutes after the first request.
///
/// For example, consider a situation where you make an initial request and
/// the request times out. If you make the request again with the same request
/// ID, the server can check if original operation with the same request ID
/// was received, and if so, will ignore the second request. This prevents
/// clients from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported (00000000-0000-0000-0000-000000000000).
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// Represents the metadata of the long-running operation.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OperationMetadata {
/// Output only. The time the operation was created.
#[prost(message, optional, tag = "1")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time the operation finished running.
#[prost(message, optional, tag = "2")]
pub end_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. Server-defined resource path for the target of the operation.
#[prost(string, tag = "3")]
pub target: ::prost::alloc::string::String,
/// Output only. Name of the verb executed by the operation.
#[prost(string, tag = "4")]
pub verb: ::prost::alloc::string::String,
/// Output only. Human-readable status of the operation, if any.
#[prost(string, tag = "5")]
pub status_detail: ::prost::alloc::string::String,
/// Output only. Identifies whether the user has requested cancellation
/// of the operation. Operations that have successfully been cancelled
/// have [Operation.error][] value with a [google.rpc.Status.code][google.rpc.Status.code] of 1,
/// corresponding to `Code.CANCELLED`.
#[prost(bool, tag = "6")]
pub cancel_requested: bool,
/// Output only. API version used to start the operation.
#[prost(string, tag = "7")]
pub api_version: ::prost::alloc::string::String,
}
/// Generated client implementations.
pub mod gke_hub_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// The GKE Hub service handles the registration of many Kubernetes clusters to
/// Google Cloud, and the management of multi-cluster features over those
/// clusters.
///
/// The GKE Hub service operates on the following resources:
///
/// * [Membership][google.cloud.gkehub.v1.Membership]
/// * [Feature][google.cloud.gkehub.v1.Feature]
///
/// GKE Hub is currently available in the global region and all regions in
/// https://cloud.google.com/compute/docs/regions-zones. Feature is only
/// available in global region while membership is global region and all the
/// regions.
///
/// **Membership management may be non-trivial:** it is recommended to use one
/// of the Google-provided client libraries or tools where possible when working
/// with Membership resources.
#[derive(Debug, Clone)]
pub struct GkeHubClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> GkeHubClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> GkeHubClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
GkeHubClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Lists Memberships in a given project and location.
pub async fn list_memberships(
&mut self,
request: impl tonic::IntoRequest<super::ListMembershipsRequest>,
) -> std::result::Result<
tonic::Response<super::ListMembershipsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/ListMemberships",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "ListMemberships"),
);
self.inner.unary(req, path, codec).await
}
/// Lists Features in a given project and location.
pub async fn list_features(
&mut self,
request: impl tonic::IntoRequest<super::ListFeaturesRequest>,
) -> std::result::Result<
tonic::Response<super::ListFeaturesResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/ListFeatures",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "ListFeatures"),
);
self.inner.unary(req, path, codec).await
}
/// Gets the details of a Membership.
pub async fn get_membership(
&mut self,
request: impl tonic::IntoRequest<super::GetMembershipRequest>,
) -> std::result::Result<tonic::Response<super::Membership>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/GetMembership",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "GetMembership"),
);
self.inner.unary(req, path, codec).await
}
/// Gets details of a single Feature.
pub async fn get_feature(
&mut self,
request: impl tonic::IntoRequest<super::GetFeatureRequest>,
) -> std::result::Result<tonic::Response<super::Feature>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/GetFeature",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "GetFeature"));
self.inner.unary(req, path, codec).await
}
/// Creates a new Membership.
///
/// **This is currently only supported for GKE clusters on Google Cloud**.
/// To register other clusters, follow the instructions at
/// https://cloud.google.com/anthos/multicluster-management/connect/registering-a-cluster.
pub async fn create_membership(
&mut self,
request: impl tonic::IntoRequest<super::CreateMembershipRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/CreateMembership",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "CreateMembership"),
);
self.inner.unary(req, path, codec).await
}
/// Adds a new Feature.
pub async fn create_feature(
&mut self,
request: impl tonic::IntoRequest<super::CreateFeatureRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/CreateFeature",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "CreateFeature"),
);
self.inner.unary(req, path, codec).await
}
/// Removes a Membership.
///
/// **This is currently only supported for GKE clusters on Google Cloud**.
/// To unregister other clusters, follow the instructions at
/// https://cloud.google.com/anthos/multicluster-management/connect/unregistering-a-cluster.
pub async fn delete_membership(
&mut self,
request: impl tonic::IntoRequest<super::DeleteMembershipRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/DeleteMembership",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "DeleteMembership"),
);
self.inner.unary(req, path, codec).await
}
/// Removes a Feature.
pub async fn delete_feature(
&mut self,
request: impl tonic::IntoRequest<super::DeleteFeatureRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/DeleteFeature",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "DeleteFeature"),
);
self.inner.unary(req, path, codec).await
}
/// Updates an existing Membership.
pub async fn update_membership(
&mut self,
request: impl tonic::IntoRequest<super::UpdateMembershipRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/UpdateMembership",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "UpdateMembership"),
);
self.inner.unary(req, path, codec).await
}
/// Updates an existing Feature.
pub async fn update_feature(
&mut self,
request: impl tonic::IntoRequest<super::UpdateFeatureRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/UpdateFeature",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.gkehub.v1.GkeHub", "UpdateFeature"),
);
self.inner.unary(req, path, codec).await
}
/// Generates the manifest for deployment of the GKE connect agent.
///
/// **This method is used internally by Google-provided libraries.**
/// Most clients should not need to call this method directly.
pub async fn generate_connect_manifest(
&mut self,
request: impl tonic::IntoRequest<super::GenerateConnectManifestRequest>,
) -> std::result::Result<
tonic::Response<super::GenerateConnectManifestResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.gkehub.v1.GkeHub/GenerateConnectManifest",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.gkehub.v1.GkeHub",
"GenerateConnectManifest",
),
);
self.inner.unary(req, path, codec).await
}
}
}