Skip to content
Merged
Show file tree
Hide file tree
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
Binary file modified Compute/metadata/V1/Compute.php
Binary file not shown.
44 changes: 44 additions & 0 deletions Compute/src/V1/AllocationResourceStatus.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

169 changes: 169 additions & 0 deletions Compute/src/V1/AllocationResourceStatusHealthInfo.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/*
* GENERATED CODE WARNING
* Generated by gapic-generator-php from the file
* https://github.com/googleapis/googleapis/blob/master/google/cloud/compute/v1/compute.proto
* Updates to the above are reflected here through a refresh process.
*/

namespace Google\Cloud\Compute\V1\Enums\AllocationResourceStatusHealthInfo;

/**
* HealthStatus contains string constants that represent the names of each value in
* the google.cloud.compute.v1.AllocationResourceStatusHealthInfo.HealthStatus
* descriptor.
*/
class HealthStatus
{
const UNDEFINED_HEALTH_STATUS = 'UNDEFINED_HEALTH_STATUS';

const DEGRADED = 'DEGRADED';

const HEALTHY = 'HEALTHY';

const HEALTH_STATUS_UNSPECIFIED = 'HEALTH_STATUS_UNSPECIFIED';
}
40 changes: 40 additions & 0 deletions Compute/src/V1/Enums/Reservation/SchedulingType.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/*
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/*
* GENERATED CODE WARNING
* Generated by gapic-generator-php from the file
* https://github.com/googleapis/googleapis/blob/master/google/cloud/compute/v1/compute.proto
* Updates to the above are reflected here through a refresh process.
*/

namespace Google\Cloud\Compute\V1\Enums\Reservation;

/**
* SchedulingType contains string constants that represent the names of each value
* in the google.cloud.compute.v1.Reservation.SchedulingType descriptor.
*/
class SchedulingType
{
const UNDEFINED_SCHEDULING_TYPE = 'UNDEFINED_SCHEDULING_TYPE';

const GROUPED = 'GROUPED';

const GROUP_MAINTENANCE_TYPE_UNSPECIFIED = 'GROUP_MAINTENANCE_TYPE_UNSPECIFIED';

const INDEPENDENT = 'INDEPENDENT';
}
Loading
Loading