google-apis-apphub_v1alpha 0.15.0 → 0.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e78a829da0e9794bdc80f982ec14ff2261dc3060de48ca001c39238292aff3ac
4
- data.tar.gz: 1922adbe2c4142742243c4a91314b726ce93af17d60cc7df65a12aa1cc4a5372
3
+ metadata.gz: c4d29ffe3f9c6c631cf4734bbf14beb79e2219b2dcb7d06ffff56d19c954b32f
4
+ data.tar.gz: 9125dd6367db271c3392c285c1ad73b255f2fa1c2028c5dba95ecacf1f0ca993
5
5
  SHA512:
6
- metadata.gz: 3f238afd09116911ef37f3a898c89eab04e36adac89f2192ee40ef4aa2c198b03aef0c2f101742ac7197fc95612ac14ff74b2d66577abaa269ef9b25bc349340
7
- data.tar.gz: 2dd0e1c9dee2aea8215c55d85191f89b039e7078529046c16c66ad3ae48b5c6d8b3b79a129faee77138989b4a701072ca18256c460344c90124e6a3237367ba3
6
+ metadata.gz: e7e3455bbacf21db23d75fdf796f7deb89aef082657f5d8a05e1cf3b899debe30cf726c6567ccc82075053157e2e73d06d78894fe30e2bf94ad6999e9b37e860
7
+ data.tar.gz: 66e39b79cda706e47733bd674afdcef473d62980730da472c09488c40905f10f30765a97464ebaa07f49282b5d749c217c0719ae049cd6455f7b83fa8b8feb0a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-apphub_v1alpha
2
2
 
3
+ ### v0.17.0 (2025-11-02)
4
+
5
+ * Regenerated from discovery document revision 20251028
6
+
7
+ ### v0.16.0 (2025-10-12)
8
+
9
+ * Regenerated from discovery document revision 20251001
10
+
3
11
  ### v0.15.0 (2025-08-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20250813
@@ -662,6 +662,25 @@ module Google
662
662
  end
663
663
  end
664
664
 
665
+ # The functional type of a service or workload.
666
+ class FunctionalType
667
+ include Google::Apis::Core::Hashable
668
+
669
+ # Output only. The functional type of a service or workload.
670
+ # Corresponds to the JSON property `type`
671
+ # @return [String]
672
+ attr_accessor :type
673
+
674
+ def initialize(**args)
675
+ update!(**args)
676
+ end
677
+
678
+ # Update properties of this object
679
+ def update!(**args)
680
+ @type = args[:type] if args.key?(:type)
681
+ end
682
+ end
683
+
665
684
  # Response for ListApplications.
666
685
  class ListApplicationsResponse
667
686
  include Google::Apis::Core::Hashable
@@ -794,6 +813,13 @@ module Google
794
813
  # @return [Array<Google::Apis::ApphubV1alpha::Operation>]
795
814
  attr_accessor :operations
796
815
 
816
+ # Unordered list. Unreachable resources. Populated when the request sets `
817
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
818
+ # when attempting to list all resources across all supported locations.
819
+ # Corresponds to the JSON property `unreachable`
820
+ # @return [Array<String>]
821
+ attr_accessor :unreachable
822
+
797
823
  def initialize(**args)
798
824
  update!(**args)
799
825
  end
@@ -802,6 +828,7 @@ module Google
802
828
  def update!(**args)
803
829
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
804
830
  @operations = args[:operations] if args.key?(:operations)
831
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
805
832
  end
806
833
  end
807
834
 
@@ -1387,6 +1414,11 @@ module Google
1387
1414
  class ServiceProperties
1388
1415
  include Google::Apis::Core::Hashable
1389
1416
 
1417
+ # The functional type of a service or workload.
1418
+ # Corresponds to the JSON property `functionalType`
1419
+ # @return [Google::Apis::ApphubV1alpha::FunctionalType]
1420
+ attr_accessor :functional_type
1421
+
1390
1422
  # Output only. The service project identifier that the underlying cloud resource
1391
1423
  # resides in.
1392
1424
  # Corresponds to the JSON property `gcpProject`
@@ -1411,6 +1443,7 @@ module Google
1411
1443
 
1412
1444
  # Update properties of this object
1413
1445
  def update!(**args)
1446
+ @functional_type = args[:functional_type] if args.key?(:functional_type)
1414
1447
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1415
1448
  @location = args[:location] if args.key?(:location)
1416
1449
  @zone = args[:zone] if args.key?(:zone)
@@ -1668,6 +1701,11 @@ module Google
1668
1701
  class WorkloadProperties
1669
1702
  include Google::Apis::Core::Hashable
1670
1703
 
1704
+ # The functional type of a service or workload.
1705
+ # Corresponds to the JSON property `functionalType`
1706
+ # @return [Google::Apis::ApphubV1alpha::FunctionalType]
1707
+ attr_accessor :functional_type
1708
+
1671
1709
  # Output only. The service project identifier that the underlying cloud resource
1672
1710
  # resides in. Empty for non-cloud resources.
1673
1711
  # Corresponds to the JSON property `gcpProject`
@@ -1692,6 +1730,7 @@ module Google
1692
1730
 
1693
1731
  # Update properties of this object
1694
1732
  def update!(**args)
1733
+ @functional_type = args[:functional_type] if args.key?(:functional_type)
1695
1734
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1696
1735
  @location = args[:location] if args.key?(:location)
1697
1736
  @zone = args[:zone] if args.key?(:zone)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApphubV1alpha
18
18
  # Version of the google-apis-apphub_v1alpha gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250813"
25
+ REVISION = "20251028"
26
26
  end
27
27
  end
28
28
  end
@@ -130,6 +130,12 @@ module Google
130
130
  include Google::Apis::Core::JsonObjectSupport
131
131
  end
132
132
 
133
+ class FunctionalType
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
133
139
  class ListApplicationsResponse
134
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
141
 
@@ -462,6 +468,13 @@ module Google
462
468
  end
463
469
  end
464
470
 
471
+ class FunctionalType
472
+ # @private
473
+ class Representation < Google::Apis::Core::JsonRepresentation
474
+ property :type, as: 'type'
475
+ end
476
+ end
477
+
465
478
  class ListApplicationsResponse
466
479
  # @private
467
480
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -507,6 +520,7 @@ module Google
507
520
  property :next_page_token, as: 'nextPageToken'
508
521
  collection :operations, as: 'operations', class: Google::Apis::ApphubV1alpha::Operation, decorator: Google::Apis::ApphubV1alpha::Operation::Representation
509
522
 
523
+ collection :unreachable, as: 'unreachable'
510
524
  end
511
525
  end
512
526
 
@@ -653,6 +667,8 @@ module Google
653
667
  class ServiceProperties
654
668
  # @private
655
669
  class Representation < Google::Apis::Core::JsonRepresentation
670
+ property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1alpha::FunctionalType, decorator: Google::Apis::ApphubV1alpha::FunctionalType::Representation
671
+
656
672
  property :gcp_project, as: 'gcpProject'
657
673
  property :location, as: 'location'
658
674
  property :zone, as: 'zone'
@@ -722,6 +738,8 @@ module Google
722
738
  class WorkloadProperties
723
739
  # @private
724
740
  class Representation < Google::Apis::Core::JsonRepresentation
741
+ property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1alpha::FunctionalType, decorator: Google::Apis::ApphubV1alpha::FunctionalType::Representation
742
+
725
743
  property :gcp_project, as: 'gcpProject'
726
744
  property :location, as: 'location'
727
745
  property :zone, as: 'zone'
@@ -1428,6 +1428,13 @@ module Google
1428
1428
  # The standard list page size.
1429
1429
  # @param [String] page_token
1430
1430
  # The standard list page token.
1431
+ # @param [Boolean] return_partial_success
1432
+ # When set to `true`, operations that are reachable are returned as normal, and
1433
+ # those that are unreachable are returned in the [ListOperationsResponse.
1434
+ # unreachable] field. This can only be `true` when reading across collections e.
1435
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1436
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1437
+ # explicitly documented otherwise in service or product specific documentation.
1431
1438
  # @param [String] fields
1432
1439
  # Selector specifying which fields to include in a partial response.
1433
1440
  # @param [String] quota_user
@@ -1445,7 +1452,7 @@ module Google
1445
1452
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1446
1453
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1447
1454
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1448
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1455
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1449
1456
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
1450
1457
  command.response_representation = Google::Apis::ApphubV1alpha::ListOperationsResponse::Representation
1451
1458
  command.response_class = Google::Apis::ApphubV1alpha::ListOperationsResponse
@@ -1453,6 +1460,7 @@ module Google
1453
1460
  command.query['filter'] = filter unless filter.nil?
1454
1461
  command.query['pageSize'] = page_size unless page_size.nil?
1455
1462
  command.query['pageToken'] = page_token unless page_token.nil?
1463
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1456
1464
  command.query['fields'] = fields unless fields.nil?
1457
1465
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1458
1466
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apphub_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1alpha/v0.15.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1alpha/v0.17.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: