Google-Cloud-Composer-V1
view release on metacpan or search on metacpan
lib/Google/Cloud/Orchestration/Airflow/Service/V1/ImageVersions.pm view on Meta::CPAN
=head1 SYNOPSIS
use Google::Cloud::Orchestration::Airflow::Service::V1::ImageVersions;
my $msg = Google::Cloud::Orchestration::Airflow::Service::V1::ImageVersions::ImageVersion->new(
image_version_id => $value,
);
=head1 FIELDS
=over 4
=item * B<image_version_id>
Type: String
=item * B<is_default>
Type: Bool
=item * B<supported_python_versions>
Type: String
=item * B<release_date>
Type: Message (.google.type.Date)
=item * B<creation_disabled>
Type: Bool
=item * B<upgrade_disabled>
Type: Bool
=back
=cut
# === Service Client: Google::Cloud::Orchestration::Airflow::Service::V1::ImageVersions::ImageVersionsClient ===
package Google::Cloud::Orchestration::Airflow::Service::V1::ImageVersions::ImageVersionsClient;
=pod
=head1 NAME
Google::Cloud::Orchestration::Airflow::Service::V1::ImageVersions::ImageVersionsClient - Client stub representing the remote ImageVersions service
=head1 DESCRIPTION
This class acts as a local client stub for the remote gRPC service.
It delegates call dispatching to an underlying L<Google::gRPC::Client>
instance, ensuring type-safe request parsing and response mapping.
=head1 CONFIGURATION AND ENVIRONMENT
=head2 target
The endpoint target address. Defaults to C<orchestration.googleapis.com:443>.
=head2 credentials
The authentication credentials provider. Defaults to application default credentials via L<Google::Auth>.
=cut
use Moo;
use Google::Auth;
use Google::gRPC::Client;
has credentials => ( is => 'ro', default => sub { Google::Auth->default() } );
has target => ( is => 'ro', default => 'orchestration.googleapis.com:443' );
has _grpc_client => (
is => 'ro',
lazy => 1,
builder => sub {
my $self = shift;
return Google::gRPC::Client->new(
target => $self->target,
auth_token => $self->credentials->get_token(),
);
}
);
sub list_image_versions {
my ($self, $args) = @_;
my $req = ref($args) eq 'HASH'
? Google::Cloud::Orchestration::Airflow::Service::V1::ImageVersions::ListImageVersionsRequest->new($args)
: $args;
return $self->_grpc_client->call({
service => 'google.cloud.orchestration.airflow.service.v1.ImageVersions',
method => 'ListImageVersions',
request => $req,
response_class => 'Google::Cloud::Orchestration::Airflow::Service::V1::ImageVersions::ListImageVersionsResponse',
});
}
1;
__END__
=head1 NAME
Google::Cloud::Orchestration::Airflow::Service::V1::ImageVersions - Protocol Buffers schema definition
=head1 DESCRIPTION
Auto-generated Protocol Buffers schema definition class.
=head1 LICENSE AND COPYRIGHT
Copyright (C) 2026 Google LLC
This program is released under the Apache 2.0 license.
=cut
( run in 0.743 second using v1.01-cache-2.11-cpan-81fc1098f69 )