google-apis-apigee_v1 0.113.0 → 0.115.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: e670d898145b359ba8c8f936674117899a8a76ab5dee9e3b5bb40822b1fd6d63
4
- data.tar.gz: f0a919f05005098730af169cfaf4810ab2ae1f09fe71b73ea50a057850245135
3
+ metadata.gz: d089e66a645db9c4038fe5846a7279d1807b89364890fc6fc6a08fb956cce712
4
+ data.tar.gz: dd7ae0a8751f572b92aa4adbb1bc66a944e75ee8dd0843237b916d187597c81b
5
5
  SHA512:
6
- metadata.gz: 84e9857ef4d21f6e1c0ae6ca504e76dacf8cb6c7d96c2734f49ad5e2a1061ab257c2f0f96e930ed35f0b212e8a5c9f369cb19828ecee2ac8c796a90e07a5fafd
7
- data.tar.gz: ca65d05761844dbf78af4a2a4ccf51bc1f6c9fb2359c6c546f709616f75abc7dd39c849bd16faf9787468c9c577a72c5addbce298aba2bb6ed160525ea700080
6
+ metadata.gz: 34de5b144aa1b256c56790abd058cc09a5a5cdf7173eb66c57386c906b22908c7dfba1344d12823838897f6796437303c935b25e453b75b1aca2dab69629670c
7
+ data.tar.gz: 57290a4ef8c6202cb6977b4dce4fe12759a4c47801eeb3dde76681499da67d15f53d861be9e5ab072c459b505aecb51ddb859900b4e7e3178f8efec519cfd71c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.115.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251016
6
+
7
+ ### v0.114.0 (2025-10-05)
8
+
9
+ * Regenerated from discovery document revision 20250929
10
+
3
11
  ### v0.113.0 (2025-09-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20250908
@@ -5598,6 +5598,14 @@ module Google
5598
5598
  # @return [String]
5599
5599
  attr_accessor :ip_range
5600
5600
 
5601
+ # Output only. Indicates whether the instance is version locked. If true, the
5602
+ # instance will not be updated by automated runtime rollouts. This is only
5603
+ # supported for Apigee X instances.
5604
+ # Corresponds to the JSON property `isVersionLocked`
5605
+ # @return [Boolean]
5606
+ attr_accessor :is_version_locked
5607
+ alias_method :is_version_locked?, :is_version_locked
5608
+
5601
5609
  # Output only. Time the instance was last modified in milliseconds since epoch.
5602
5610
  # Corresponds to the JSON property `lastModifiedAt`
5603
5611
  # @return [Fixnum]
@@ -5608,6 +5616,12 @@ module Google
5608
5616
  # @return [String]
5609
5617
  attr_accessor :location
5610
5618
 
5619
+ # MaintenanceUpdatePolicy specifies the preferred window to perform maintenance
5620
+ # on the instance (day of the week and time of day).
5621
+ # Corresponds to the JSON property `maintenanceUpdatePolicy`
5622
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicy]
5623
+ attr_accessor :maintenance_update_policy
5624
+
5611
5625
  # Required. Resource ID of the instance. Values must match the regular
5612
5626
  # expression `^a-z`0,30`[a-z\d]$`.
5613
5627
  # Corresponds to the JSON property `name`
@@ -5633,6 +5647,11 @@ module Google
5633
5647
  # @return [String]
5634
5648
  attr_accessor :runtime_version
5635
5649
 
5650
+ # Scheduled maintenance information for an instance.
5651
+ # Corresponds to the JSON property `scheduledMaintenance`
5652
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ScheduledMaintenance]
5653
+ attr_accessor :scheduled_maintenance
5654
+
5636
5655
  # Output only. Resource name of the service attachment created for the instance
5637
5656
  # in the format: `projects/*/regions/*/serviceAttachments/*` Apigee customers
5638
5657
  # can privately forward traffic to this service attachment using the PSC
@@ -5661,12 +5680,15 @@ module Google
5661
5680
  @display_name = args[:display_name] if args.key?(:display_name)
5662
5681
  @host = args[:host] if args.key?(:host)
5663
5682
  @ip_range = args[:ip_range] if args.key?(:ip_range)
5683
+ @is_version_locked = args[:is_version_locked] if args.key?(:is_version_locked)
5664
5684
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
5665
5685
  @location = args[:location] if args.key?(:location)
5686
+ @maintenance_update_policy = args[:maintenance_update_policy] if args.key?(:maintenance_update_policy)
5666
5687
  @name = args[:name] if args.key?(:name)
5667
5688
  @peering_cidr_range = args[:peering_cidr_range] if args.key?(:peering_cidr_range)
5668
5689
  @port = args[:port] if args.key?(:port)
5669
5690
  @runtime_version = args[:runtime_version] if args.key?(:runtime_version)
5691
+ @scheduled_maintenance = args[:scheduled_maintenance] if args.key?(:scheduled_maintenance)
5670
5692
  @service_attachment = args[:service_attachment] if args.key?(:service_attachment)
5671
5693
  @state = args[:state] if args.key?(:state)
5672
5694
  end
@@ -7017,6 +7039,60 @@ module Google
7017
7039
  end
7018
7040
  end
7019
7041
 
7042
+ # MaintenanceUpdatePolicy specifies the preferred window to perform maintenance
7043
+ # on the instance (day of the week and time of day).
7044
+ class GoogleCloudApigeeV1MaintenanceUpdatePolicy
7045
+ include Google::Apis::Core::Hashable
7046
+
7047
+ # Optional. Maintenance channel to specify relative scheduling for maintenance.
7048
+ # Corresponds to the JSON property `maintenanceChannel`
7049
+ # @return [String]
7050
+ attr_accessor :maintenance_channel
7051
+
7052
+ # Optional. Preferred windows to perform maintenance. Currently limited to 1.
7053
+ # Corresponds to the JSON property `maintenanceWindows`
7054
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow>]
7055
+ attr_accessor :maintenance_windows
7056
+
7057
+ def initialize(**args)
7058
+ update!(**args)
7059
+ end
7060
+
7061
+ # Update properties of this object
7062
+ def update!(**args)
7063
+ @maintenance_channel = args[:maintenance_channel] if args.key?(:maintenance_channel)
7064
+ @maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
7065
+ end
7066
+ end
7067
+
7068
+ # MaintenanceWindow specifies the preferred day of the week and time of day to
7069
+ # perform maintenance.
7070
+ class GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow
7071
+ include Google::Apis::Core::Hashable
7072
+
7073
+ # Required. Preferred day of the week for maintenance, e.g. MONDAY, TUESDAY, etc.
7074
+ # Corresponds to the JSON property `day`
7075
+ # @return [String]
7076
+ attr_accessor :day
7077
+
7078
+ # Represents a time of day. The date and time zone are either not significant or
7079
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
7080
+ # types are google.type.Date and `google.protobuf.Timestamp`.
7081
+ # Corresponds to the JSON property `startTime`
7082
+ # @return [Google::Apis::ApigeeV1::GoogleTypeTimeOfDay]
7083
+ attr_accessor :start_time
7084
+
7085
+ def initialize(**args)
7086
+ update!(**args)
7087
+ end
7088
+
7089
+ # Update properties of this object
7090
+ def update!(**args)
7091
+ @day = args[:day] if args.key?(:day)
7092
+ @start_time = args[:start_time] if args.key?(:start_time)
7093
+ end
7094
+ end
7095
+
7020
7096
  # Encapsulates additional information about query execution.
7021
7097
  class GoogleCloudApigeeV1Metadata
7022
7098
  include Google::Apis::Core::Hashable
@@ -9613,6 +9689,25 @@ module Google
9613
9689
  end
9614
9690
  end
9615
9691
 
9692
+ # Scheduled maintenance information for an instance.
9693
+ class GoogleCloudApigeeV1ScheduledMaintenance
9694
+ include Google::Apis::Core::Hashable
9695
+
9696
+ # Output only. The start time (UTC) of the scheduled maintenance.
9697
+ # Corresponds to the JSON property `startTime`
9698
+ # @return [String]
9699
+ attr_accessor :start_time
9700
+
9701
+ def initialize(**args)
9702
+ update!(**args)
9703
+ end
9704
+
9705
+ # Update properties of this object
9706
+ def update!(**args)
9707
+ @start_time = args[:start_time] if args.key?(:start_time)
9708
+ end
9709
+ end
9710
+
9616
9711
  # Response for Schema call
9617
9712
  class GoogleCloudApigeeV1Schema
9618
9713
  include Google::Apis::Core::Hashable
@@ -12637,6 +12732,13 @@ module Google
12637
12732
  # @return [Array<Google::Apis::ApigeeV1::GoogleLongrunningOperation>]
12638
12733
  attr_accessor :operations
12639
12734
 
12735
+ # Unordered list. Unreachable resources. Populated when the request sets `
12736
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
12737
+ # when attempting to list all resources across all supported locations.
12738
+ # Corresponds to the JSON property `unreachable`
12739
+ # @return [Array<String>]
12740
+ attr_accessor :unreachable
12741
+
12640
12742
  def initialize(**args)
12641
12743
  update!(**args)
12642
12744
  end
@@ -12645,6 +12747,7 @@ module Google
12645
12747
  def update!(**args)
12646
12748
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
12647
12749
  @operations = args[:operations] if args.key?(:operations)
12750
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
12648
12751
  end
12649
12752
  end
12650
12753
 
@@ -12942,6 +13045,51 @@ module Google
12942
13045
  @units = args[:units] if args.key?(:units)
12943
13046
  end
12944
13047
  end
13048
+
13049
+ # Represents a time of day. The date and time zone are either not significant or
13050
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
13051
+ # types are google.type.Date and `google.protobuf.Timestamp`.
13052
+ class GoogleTypeTimeOfDay
13053
+ include Google::Apis::Core::Hashable
13054
+
13055
+ # Hours of a day in 24 hour format. Must be greater than or equal to 0 and
13056
+ # typically must be less than or equal to 23. An API may choose to allow the
13057
+ # value "24:00:00" for scenarios like business closing time.
13058
+ # Corresponds to the JSON property `hours`
13059
+ # @return [Fixnum]
13060
+ attr_accessor :hours
13061
+
13062
+ # Minutes of an hour. Must be greater than or equal to 0 and less than or equal
13063
+ # to 59.
13064
+ # Corresponds to the JSON property `minutes`
13065
+ # @return [Fixnum]
13066
+ attr_accessor :minutes
13067
+
13068
+ # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
13069
+ # less than or equal to 999,999,999.
13070
+ # Corresponds to the JSON property `nanos`
13071
+ # @return [Fixnum]
13072
+ attr_accessor :nanos
13073
+
13074
+ # Seconds of a minute. Must be greater than or equal to 0 and typically must be
13075
+ # less than or equal to 59. An API may allow the value 60 if it allows leap-
13076
+ # seconds.
13077
+ # Corresponds to the JSON property `seconds`
13078
+ # @return [Fixnum]
13079
+ attr_accessor :seconds
13080
+
13081
+ def initialize(**args)
13082
+ update!(**args)
13083
+ end
13084
+
13085
+ # Update properties of this object
13086
+ def update!(**args)
13087
+ @hours = args[:hours] if args.key?(:hours)
13088
+ @minutes = args[:minutes] if args.key?(:minutes)
13089
+ @nanos = args[:nanos] if args.key?(:nanos)
13090
+ @seconds = args[:seconds] if args.key?(:seconds)
13091
+ end
13092
+ end
12945
13093
  end
12946
13094
  end
12947
13095
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeV1
18
18
  # Version of the google-apis-apigee_v1 gem
19
- GEM_VERSION = "0.113.0"
19
+ GEM_VERSION = "0.115.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 = "20250908"
25
+ REVISION = "20251016"
26
26
  end
27
27
  end
28
28
  end
@@ -1072,6 +1072,18 @@ module Google
1072
1072
  include Google::Apis::Core::JsonObjectSupport
1073
1073
  end
1074
1074
 
1075
+ class GoogleCloudApigeeV1MaintenanceUpdatePolicy
1076
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1077
+
1078
+ include Google::Apis::Core::JsonObjectSupport
1079
+ end
1080
+
1081
+ class GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow
1082
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1083
+
1084
+ include Google::Apis::Core::JsonObjectSupport
1085
+ end
1086
+
1075
1087
  class GoogleCloudApigeeV1Metadata
1076
1088
  class Representation < Google::Apis::Core::JsonRepresentation; end
1077
1089
 
@@ -1456,6 +1468,12 @@ module Google
1456
1468
  include Google::Apis::Core::JsonObjectSupport
1457
1469
  end
1458
1470
 
1471
+ class GoogleCloudApigeeV1ScheduledMaintenance
1472
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1473
+
1474
+ include Google::Apis::Core::JsonObjectSupport
1475
+ end
1476
+
1459
1477
  class GoogleCloudApigeeV1Schema
1460
1478
  class Representation < Google::Apis::Core::JsonRepresentation; end
1461
1479
 
@@ -1924,6 +1942,12 @@ module Google
1924
1942
  include Google::Apis::Core::JsonObjectSupport
1925
1943
  end
1926
1944
 
1945
+ class GoogleTypeTimeOfDay
1946
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1947
+
1948
+ include Google::Apis::Core::JsonObjectSupport
1949
+ end
1950
+
1927
1951
  class EdgeConfigstoreBundleBadBundle
1928
1952
  # @private
1929
1953
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3338,12 +3362,17 @@ module Google
3338
3362
  property :display_name, as: 'displayName'
3339
3363
  property :host, as: 'host'
3340
3364
  property :ip_range, as: 'ipRange'
3365
+ property :is_version_locked, as: 'isVersionLocked'
3341
3366
  property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
3342
3367
  property :location, as: 'location'
3368
+ property :maintenance_update_policy, as: 'maintenanceUpdatePolicy', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicy, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicy::Representation
3369
+
3343
3370
  property :name, as: 'name'
3344
3371
  property :peering_cidr_range, as: 'peeringCidrRange'
3345
3372
  property :port, as: 'port'
3346
3373
  property :runtime_version, as: 'runtimeVersion'
3374
+ property :scheduled_maintenance, as: 'scheduledMaintenance', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ScheduledMaintenance, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ScheduledMaintenance::Representation
3375
+
3347
3376
  property :service_attachment, as: 'serviceAttachment'
3348
3377
  property :state, as: 'state'
3349
3378
  end
@@ -3809,6 +3838,24 @@ module Google
3809
3838
  end
3810
3839
  end
3811
3840
 
3841
+ class GoogleCloudApigeeV1MaintenanceUpdatePolicy
3842
+ # @private
3843
+ class Representation < Google::Apis::Core::JsonRepresentation
3844
+ property :maintenance_channel, as: 'maintenanceChannel'
3845
+ collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow::Representation
3846
+
3847
+ end
3848
+ end
3849
+
3850
+ class GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow
3851
+ # @private
3852
+ class Representation < Google::Apis::Core::JsonRepresentation
3853
+ property :day, as: 'day'
3854
+ property :start_time, as: 'startTime', class: Google::Apis::ApigeeV1::GoogleTypeTimeOfDay, decorator: Google::Apis::ApigeeV1::GoogleTypeTimeOfDay::Representation
3855
+
3856
+ end
3857
+ end
3858
+
3812
3859
  class GoogleCloudApigeeV1Metadata
3813
3860
  # @private
3814
3861
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4485,6 +4532,13 @@ module Google
4485
4532
  end
4486
4533
  end
4487
4534
 
4535
+ class GoogleCloudApigeeV1ScheduledMaintenance
4536
+ # @private
4537
+ class Representation < Google::Apis::Core::JsonRepresentation
4538
+ property :start_time, as: 'startTime'
4539
+ end
4540
+ end
4541
+
4488
4542
  class GoogleCloudApigeeV1Schema
4489
4543
  # @private
4490
4544
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5246,6 +5300,7 @@ module Google
5246
5300
  property :next_page_token, as: 'nextPageToken'
5247
5301
  collection :operations, as: 'operations', class: Google::Apis::ApigeeV1::GoogleLongrunningOperation, decorator: Google::Apis::ApigeeV1::GoogleLongrunningOperation::Representation
5248
5302
 
5303
+ collection :unreachable, as: 'unreachable'
5249
5304
  end
5250
5305
  end
5251
5306
 
@@ -5319,6 +5374,16 @@ module Google
5319
5374
  property :units, :numeric_string => true, as: 'units'
5320
5375
  end
5321
5376
  end
5377
+
5378
+ class GoogleTypeTimeOfDay
5379
+ # @private
5380
+ class Representation < Google::Apis::Core::JsonRepresentation
5381
+ property :hours, as: 'hours'
5382
+ property :minutes, as: 'minutes'
5383
+ property :nanos, as: 'nanos'
5384
+ property :seconds, as: 'seconds'
5385
+ end
5386
+ end
5322
5387
  end
5323
5388
  end
5324
5389
  end
@@ -1921,6 +1921,85 @@ module Google
1921
1921
  execute_or_queue_command(command, &block)
1922
1922
  end
1923
1923
 
1924
+ # Get the key value map scoped to an organization, environment, or API proxy.
1925
+ # @param [String] name
1926
+ # Required. Scope as indicated by the URI in which to fetch the key value map.
1927
+ # Use **one** of the following structures in your request: * `organizations/`
1928
+ # organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
1929
+ # organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
1930
+ # organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
1931
+ # is under an API Proxy resource that has the `space` attribute set, IAM
1932
+ # permissions are checked against the Space resource path. To learn more, read
1933
+ # the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
1934
+ # system-administration/spaces/apigee-spaces-overview).
1935
+ # @param [String] fields
1936
+ # Selector specifying which fields to include in a partial response.
1937
+ # @param [String] quota_user
1938
+ # Available to use for quota purposes for server-side applications. Can be any
1939
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1940
+ # @param [Google::Apis::RequestOptions] options
1941
+ # Request-specific options
1942
+ #
1943
+ # @yield [result, err] Result & error if block supplied
1944
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
1945
+ # @yieldparam err [StandardError] error object if request failed
1946
+ #
1947
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
1948
+ #
1949
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1950
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1951
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1952
+ def get_organization_api_keyvaluemap(name, fields: nil, quota_user: nil, options: nil, &block)
1953
+ command = make_simple_command(:get, 'v1/{+name}', options)
1954
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
1955
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
1956
+ command.params['name'] = name unless name.nil?
1957
+ command.query['fields'] = fields unless fields.nil?
1958
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1959
+ execute_or_queue_command(command, &block)
1960
+ end
1961
+
1962
+ # Update the key value map scoped to an organization, environment, or API proxy.
1963
+ # @param [String] name
1964
+ # Required. Scope as indicated by the URI in which to fetch the key value map.
1965
+ # Use **one** of the following structures in your request: * `organizations/`
1966
+ # organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
1967
+ # organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
1968
+ # organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
1969
+ # is under an API Proxy resource that has the `space` attribute set, IAM
1970
+ # permissions are checked against the Space resource path. To learn more, read
1971
+ # the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
1972
+ # system-administration/spaces/apigee-spaces-overview).
1973
+ # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
1974
+ # @param [String] fields
1975
+ # Selector specifying which fields to include in a partial response.
1976
+ # @param [String] quota_user
1977
+ # Available to use for quota purposes for server-side applications. Can be any
1978
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1979
+ # @param [Google::Apis::RequestOptions] options
1980
+ # Request-specific options
1981
+ #
1982
+ # @yield [result, err] Result & error if block supplied
1983
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
1984
+ # @yieldparam err [StandardError] error object if request failed
1985
+ #
1986
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
1987
+ #
1988
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1989
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1990
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1991
+ def update_organization_api_keyvaluemap(name, google_cloud_apigee_v1_key_value_map_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1992
+ command = make_simple_command(:put, 'v1/{+name}', options)
1993
+ command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
1994
+ command.request_object = google_cloud_apigee_v1_key_value_map_object
1995
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
1996
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
1997
+ command.params['name'] = name unless name.nil?
1998
+ command.query['fields'] = fields unless fields.nil?
1999
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2000
+ execute_or_queue_command(command, &block)
2001
+ end
2002
+
1924
2003
  # Creates key value entries in a key value map scoped to an organization,
1925
2004
  # environment, or API proxy. **Note**: Supported for Apigee hybrid 1.8.x and
1926
2005
  # higher.
@@ -7713,6 +7792,85 @@ module Google
7713
7792
  execute_or_queue_command(command, &block)
7714
7793
  end
7715
7794
 
7795
+ # Get the key value map scoped to an organization, environment, or API proxy.
7796
+ # @param [String] name
7797
+ # Required. Scope as indicated by the URI in which to fetch the key value map.
7798
+ # Use **one** of the following structures in your request: * `organizations/`
7799
+ # organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
7800
+ # organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
7801
+ # organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
7802
+ # is under an API Proxy resource that has the `space` attribute set, IAM
7803
+ # permissions are checked against the Space resource path. To learn more, read
7804
+ # the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
7805
+ # system-administration/spaces/apigee-spaces-overview).
7806
+ # @param [String] fields
7807
+ # Selector specifying which fields to include in a partial response.
7808
+ # @param [String] quota_user
7809
+ # Available to use for quota purposes for server-side applications. Can be any
7810
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7811
+ # @param [Google::Apis::RequestOptions] options
7812
+ # Request-specific options
7813
+ #
7814
+ # @yield [result, err] Result & error if block supplied
7815
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
7816
+ # @yieldparam err [StandardError] error object if request failed
7817
+ #
7818
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
7819
+ #
7820
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7821
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7822
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7823
+ def get_organization_environment_keyvaluemap(name, fields: nil, quota_user: nil, options: nil, &block)
7824
+ command = make_simple_command(:get, 'v1/{+name}', options)
7825
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
7826
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
7827
+ command.params['name'] = name unless name.nil?
7828
+ command.query['fields'] = fields unless fields.nil?
7829
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7830
+ execute_or_queue_command(command, &block)
7831
+ end
7832
+
7833
+ # Update the key value map scoped to an organization, environment, or API proxy.
7834
+ # @param [String] name
7835
+ # Required. Scope as indicated by the URI in which to fetch the key value map.
7836
+ # Use **one** of the following structures in your request: * `organizations/`
7837
+ # organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
7838
+ # organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
7839
+ # organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
7840
+ # is under an API Proxy resource that has the `space` attribute set, IAM
7841
+ # permissions are checked against the Space resource path. To learn more, read
7842
+ # the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
7843
+ # system-administration/spaces/apigee-spaces-overview).
7844
+ # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
7845
+ # @param [String] fields
7846
+ # Selector specifying which fields to include in a partial response.
7847
+ # @param [String] quota_user
7848
+ # Available to use for quota purposes for server-side applications. Can be any
7849
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7850
+ # @param [Google::Apis::RequestOptions] options
7851
+ # Request-specific options
7852
+ #
7853
+ # @yield [result, err] Result & error if block supplied
7854
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
7855
+ # @yieldparam err [StandardError] error object if request failed
7856
+ #
7857
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
7858
+ #
7859
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7860
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7861
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7862
+ def update_organization_environment_keyvaluemap(name, google_cloud_apigee_v1_key_value_map_object = nil, fields: nil, quota_user: nil, options: nil, &block)
7863
+ command = make_simple_command(:put, 'v1/{+name}', options)
7864
+ command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
7865
+ command.request_object = google_cloud_apigee_v1_key_value_map_object
7866
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
7867
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
7868
+ command.params['name'] = name unless name.nil?
7869
+ command.query['fields'] = fields unless fields.nil?
7870
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7871
+ execute_or_queue_command(command, &block)
7872
+ end
7873
+
7716
7874
  # Creates key value entries in a key value map scoped to an organization,
7717
7875
  # environment, or API proxy. **Note**: Supported for Apigee hybrid 1.8.x and
7718
7876
  # higher.
@@ -10963,6 +11121,85 @@ module Google
10963
11121
  execute_or_queue_command(command, &block)
10964
11122
  end
10965
11123
 
11124
+ # Get the key value map scoped to an organization, environment, or API proxy.
11125
+ # @param [String] name
11126
+ # Required. Scope as indicated by the URI in which to fetch the key value map.
11127
+ # Use **one** of the following structures in your request: * `organizations/`
11128
+ # organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
11129
+ # organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
11130
+ # organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
11131
+ # is under an API Proxy resource that has the `space` attribute set, IAM
11132
+ # permissions are checked against the Space resource path. To learn more, read
11133
+ # the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
11134
+ # system-administration/spaces/apigee-spaces-overview).
11135
+ # @param [String] fields
11136
+ # Selector specifying which fields to include in a partial response.
11137
+ # @param [String] quota_user
11138
+ # Available to use for quota purposes for server-side applications. Can be any
11139
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
11140
+ # @param [Google::Apis::RequestOptions] options
11141
+ # Request-specific options
11142
+ #
11143
+ # @yield [result, err] Result & error if block supplied
11144
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
11145
+ # @yieldparam err [StandardError] error object if request failed
11146
+ #
11147
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
11148
+ #
11149
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
11150
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
11151
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
11152
+ def get_organization_keyvaluemap(name, fields: nil, quota_user: nil, options: nil, &block)
11153
+ command = make_simple_command(:get, 'v1/{+name}', options)
11154
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
11155
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
11156
+ command.params['name'] = name unless name.nil?
11157
+ command.query['fields'] = fields unless fields.nil?
11158
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
11159
+ execute_or_queue_command(command, &block)
11160
+ end
11161
+
11162
+ # Update the key value map scoped to an organization, environment, or API proxy.
11163
+ # @param [String] name
11164
+ # Required. Scope as indicated by the URI in which to fetch the key value map.
11165
+ # Use **one** of the following structures in your request: * `organizations/`
11166
+ # organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
11167
+ # organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
11168
+ # organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
11169
+ # is under an API Proxy resource that has the `space` attribute set, IAM
11170
+ # permissions are checked against the Space resource path. To learn more, read
11171
+ # the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
11172
+ # system-administration/spaces/apigee-spaces-overview).
11173
+ # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
11174
+ # @param [String] fields
11175
+ # Selector specifying which fields to include in a partial response.
11176
+ # @param [String] quota_user
11177
+ # Available to use for quota purposes for server-side applications. Can be any
11178
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
11179
+ # @param [Google::Apis::RequestOptions] options
11180
+ # Request-specific options
11181
+ #
11182
+ # @yield [result, err] Result & error if block supplied
11183
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
11184
+ # @yieldparam err [StandardError] error object if request failed
11185
+ #
11186
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
11187
+ #
11188
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
11189
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
11190
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
11191
+ def update_organization_keyvaluemap(name, google_cloud_apigee_v1_key_value_map_object = nil, fields: nil, quota_user: nil, options: nil, &block)
11192
+ command = make_simple_command(:put, 'v1/{+name}', options)
11193
+ command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
11194
+ command.request_object = google_cloud_apigee_v1_key_value_map_object
11195
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
11196
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
11197
+ command.params['name'] = name unless name.nil?
11198
+ command.query['fields'] = fields unless fields.nil?
11199
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
11200
+ execute_or_queue_command(command, &block)
11201
+ end
11202
+
10966
11203
  # Creates key value entries in a key value map scoped to an organization,
10967
11204
  # environment, or API proxy. **Note**: Supported for Apigee hybrid 1.8.x and
10968
11205
  # higher.
@@ -11221,6 +11458,13 @@ module Google
11221
11458
  # The standard list page size.
11222
11459
  # @param [String] page_token
11223
11460
  # The standard list page token.
11461
+ # @param [Boolean] return_partial_success
11462
+ # When set to `true`, operations that are reachable are returned as normal, and
11463
+ # those that are unreachable are returned in the [ListOperationsResponse.
11464
+ # unreachable] field. This can only be `true` when reading across collections e.
11465
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
11466
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
11467
+ # explicitly documented otherwise in service or product specific documentation.
11224
11468
  # @param [String] fields
11225
11469
  # Selector specifying which fields to include in a partial response.
11226
11470
  # @param [String] quota_user
@@ -11238,7 +11482,7 @@ module Google
11238
11482
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
11239
11483
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
11240
11484
  # @raise [Google::Apis::AuthorizationError] Authorization is required
11241
- def list_organization_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
11485
+ def list_organization_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
11242
11486
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
11243
11487
  command.response_representation = Google::Apis::ApigeeV1::GoogleLongrunningListOperationsResponse::Representation
11244
11488
  command.response_class = Google::Apis::ApigeeV1::GoogleLongrunningListOperationsResponse
@@ -11246,6 +11490,7 @@ module Google
11246
11490
  command.query['filter'] = filter unless filter.nil?
11247
11491
  command.query['pageSize'] = page_size unless page_size.nil?
11248
11492
  command.query['pageToken'] = page_token unless page_token.nil?
11493
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
11249
11494
  command.query['fields'] = fields unless fields.nil?
11250
11495
  command.query['quotaUser'] = quota_user unless quota_user.nil?
11251
11496
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigee_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.113.0
4
+ version: 0.115.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-apigee_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.113.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.115.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
62
62
  rdoc_options: []
63
63
  require_paths: