google-apis-apphub_v1 0.11.0 → 0.13.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: 4280af313d2033044d6fcbdc6336a024eccc3d86d0d79eebcf0d205d0ed195ce
4
- data.tar.gz: bdd94cab4c99ad8810c0eb86932502f6099b03121ea8a9968fa6302b46a35f75
3
+ metadata.gz: ec84e4d4f767348ea481be54aa667a5aa1cd6493d12ed7486c6f6308fd4bbf0d
4
+ data.tar.gz: 552c7d8b1267cef2f0f9213832f626fd53d414983938dcdf57582187b4c3cb58
5
5
  SHA512:
6
- metadata.gz: 708d11a8d475ad55e5cc490f50d87393905b1a9cbf332339c45632e227862d1063aa1c6296e85f682fd15eaf097f6feec39a29426d931dcf8c094a70f15a392b
7
- data.tar.gz: 4ff684f16f27d28b3550a1a783118a943a858860926dc33fac3ada1dc783db34d92807e8d5f67501fc99b3d55004af598f0005c842f841c61e27f10de5973adb
6
+ metadata.gz: 2a316d649ff9c2ff362a822ab6a63c828a33d06c45066adb8fab3224d67a54b3f1b28deddaa7a8bc33d19bd5380095f3694536b40bb2b430188e1a39a2a38395
7
+ data.tar.gz: 7a9cfda4777137753d3427504f0eebc3d9e3916b92f98357d21cb61dc940e5708d3840374a459ee69572c11919ffafd562707b8dd40410f55007ca1f7083d94d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-apphub_v1
2
2
 
3
+ ### v0.13.0 (2025-11-02)
4
+
5
+ * Regenerated from discovery document revision 20251028
6
+
7
+ ### v0.12.0 (2025-10-12)
8
+
9
+ * Regenerated from discovery document revision 20251001
10
+
3
11
  ### v0.11.0 (2025-08-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20250813
@@ -551,6 +551,25 @@ module Google
551
551
  end
552
552
  end
553
553
 
554
+ # The functional type of a service or workload.
555
+ class FunctionalType
556
+ include Google::Apis::Core::Hashable
557
+
558
+ # Output only. The functional type of a service or workload.
559
+ # Corresponds to the JSON property `type`
560
+ # @return [String]
561
+ attr_accessor :type
562
+
563
+ def initialize(**args)
564
+ update!(**args)
565
+ end
566
+
567
+ # Update properties of this object
568
+ def update!(**args)
569
+ @type = args[:type] if args.key?(:type)
570
+ end
571
+ end
572
+
554
573
  # Response for ListApplications.
555
574
  class ListApplicationsResponse
556
575
  include Google::Apis::Core::Hashable
@@ -683,6 +702,13 @@ module Google
683
702
  # @return [Array<Google::Apis::ApphubV1::Operation>]
684
703
  attr_accessor :operations
685
704
 
705
+ # Unordered list. Unreachable resources. Populated when the request sets `
706
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
707
+ # when attempting to list all resources across all supported locations.
708
+ # Corresponds to the JSON property `unreachable`
709
+ # @return [Array<String>]
710
+ attr_accessor :unreachable
711
+
686
712
  def initialize(**args)
687
713
  update!(**args)
688
714
  end
@@ -691,6 +717,7 @@ module Google
691
717
  def update!(**args)
692
718
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
693
719
  @operations = args[:operations] if args.key?(:operations)
720
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
694
721
  end
695
722
  end
696
723
 
@@ -1302,6 +1329,11 @@ module Google
1302
1329
  class ServiceProperties
1303
1330
  include Google::Apis::Core::Hashable
1304
1331
 
1332
+ # The functional type of a service or workload.
1333
+ # Corresponds to the JSON property `functionalType`
1334
+ # @return [Google::Apis::ApphubV1::FunctionalType]
1335
+ attr_accessor :functional_type
1336
+
1305
1337
  # Output only. The service project identifier that the underlying cloud resource
1306
1338
  # resides in.
1307
1339
  # Corresponds to the JSON property `gcpProject`
@@ -1326,6 +1358,7 @@ module Google
1326
1358
 
1327
1359
  # Update properties of this object
1328
1360
  def update!(**args)
1361
+ @functional_type = args[:functional_type] if args.key?(:functional_type)
1329
1362
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1330
1363
  @location = args[:location] if args.key?(:location)
1331
1364
  @zone = args[:zone] if args.key?(:zone)
@@ -1575,6 +1608,11 @@ module Google
1575
1608
  class WorkloadProperties
1576
1609
  include Google::Apis::Core::Hashable
1577
1610
 
1611
+ # The functional type of a service or workload.
1612
+ # Corresponds to the JSON property `functionalType`
1613
+ # @return [Google::Apis::ApphubV1::FunctionalType]
1614
+ attr_accessor :functional_type
1615
+
1578
1616
  # Output only. The service project identifier that the underlying cloud resource
1579
1617
  # resides in. Empty for non-cloud resources.
1580
1618
  # Corresponds to the JSON property `gcpProject`
@@ -1599,6 +1637,7 @@ module Google
1599
1637
 
1600
1638
  # Update properties of this object
1601
1639
  def update!(**args)
1640
+ @functional_type = args[:functional_type] if args.key?(:functional_type)
1602
1641
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1603
1642
  @location = args[:location] if args.key?(:location)
1604
1643
  @zone = args[:zone] if args.key?(:zone)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApphubV1
18
18
  # Version of the google-apis-apphub_v1 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.13.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
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class FunctionalType
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class ListApplicationsResponse
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -418,6 +424,13 @@ module Google
418
424
  end
419
425
  end
420
426
 
427
+ class FunctionalType
428
+ # @private
429
+ class Representation < Google::Apis::Core::JsonRepresentation
430
+ property :type, as: 'type'
431
+ end
432
+ end
433
+
421
434
  class ListApplicationsResponse
422
435
  # @private
423
436
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -463,6 +476,7 @@ module Google
463
476
  property :next_page_token, as: 'nextPageToken'
464
477
  collection :operations, as: 'operations', class: Google::Apis::ApphubV1::Operation, decorator: Google::Apis::ApphubV1::Operation::Representation
465
478
 
479
+ collection :unreachable, as: 'unreachable'
466
480
  end
467
481
  end
468
482
 
@@ -617,6 +631,8 @@ module Google
617
631
  class ServiceProperties
618
632
  # @private
619
633
  class Representation < Google::Apis::Core::JsonRepresentation
634
+ property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation
635
+
620
636
  property :gcp_project, as: 'gcpProject'
621
637
  property :location, as: 'location'
622
638
  property :zone, as: 'zone'
@@ -685,6 +701,8 @@ module Google
685
701
  class WorkloadProperties
686
702
  # @private
687
703
  class Representation < Google::Apis::Core::JsonRepresentation
704
+ property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation
705
+
688
706
  property :gcp_project, as: 'gcpProject'
689
707
  property :location, as: 'location'
690
708
  property :zone, as: 'zone'
@@ -1340,6 +1340,13 @@ module Google
1340
1340
  # The standard list page size.
1341
1341
  # @param [String] page_token
1342
1342
  # The standard list page token.
1343
+ # @param [Boolean] return_partial_success
1344
+ # When set to `true`, operations that are reachable are returned as normal, and
1345
+ # those that are unreachable are returned in the [ListOperationsResponse.
1346
+ # unreachable] field. This can only be `true` when reading across collections e.
1347
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1348
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1349
+ # explicitly documented otherwise in service or product specific documentation.
1343
1350
  # @param [String] fields
1344
1351
  # Selector specifying which fields to include in a partial response.
1345
1352
  # @param [String] quota_user
@@ -1357,7 +1364,7 @@ module Google
1357
1364
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1358
1365
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1359
1366
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1360
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1367
+ 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)
1361
1368
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
1362
1369
  command.response_representation = Google::Apis::ApphubV1::ListOperationsResponse::Representation
1363
1370
  command.response_class = Google::Apis::ApphubV1::ListOperationsResponse
@@ -1365,6 +1372,7 @@ module Google
1365
1372
  command.query['filter'] = filter unless filter.nil?
1366
1373
  command.query['pageSize'] = page_size unless page_size.nil?
1367
1374
  command.query['pageToken'] = page_token unless page_token.nil?
1375
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1368
1376
  command.query['fields'] = fields unless fields.nil?
1369
1377
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1370
1378
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apphub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.13.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1/v0.11.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1/v0.13.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1
62
62
  rdoc_options: []
63
63
  require_paths: