google-apis-apigee_v1 0.117.0 → 0.118.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: bd64e1e987b13c739d595dad79b52c4b140d7919352f2119f5fc38e954d0aac4
4
- data.tar.gz: 41fb306c54ecd20e6434ac4eb06655be8e910859886b0fad44b9a5cc699c6902
3
+ metadata.gz: 231f4a339a0d7fac4bd833f4ab85c677314191733335f5a5f2c96700977ec243
4
+ data.tar.gz: 0ae666cb6ddec787562e8ea46084231b25646e68d0a8f4edac527edbb9142463
5
5
  SHA512:
6
- metadata.gz: a4d33c479edd428fc84112b322da0e18f7e0e3931f95d6ee01686f47ecc6f5e7c9fe169fa3186df8877713e7ebd933af0e5f95d8c207cb08b856623cf86c7d09
7
- data.tar.gz: 581f65a13d9a259a5c9b1fe505a8930888cbca410f46e25e8e7dafb6faff24f955fd71fa14c661f9721bff1eef248edd57f43e4d8ab93e65fd23f2e20929cb43
6
+ metadata.gz: f48d424fa73768b026b5bacb0f2dd89bd77e34f88a8a0f6fe3d73671cd6204cd7b2bc2d24de904343b0d660d7d353059180be64b1b6cee10a958398b32f6b5fb
7
+ data.tar.gz: 7584fc7f148a49460a019c4f4248d88074c19117a9b8d1c2742ede3a5131026418cca7e5ca265ace4ec27b82563358f7b1105130e121a06e3ba6f9af03ed2116
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.118.0 (2025-12-21)
4
+
5
+ * Regenerated from discovery document revision 20251216
6
+
3
7
  ### v0.117.0 (2025-12-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20251125
@@ -358,6 +358,25 @@ module Google
358
358
  end
359
359
  end
360
360
 
361
+ # Request for AdjustAppGroupBalance.
362
+ class GoogleCloudApigeeV1AdjustAppGroupBalanceRequest
363
+ include Google::Apis::Core::Hashable
364
+
365
+ # Represents an amount of money with its currency type.
366
+ # Corresponds to the JSON property `adjustment`
367
+ # @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
368
+ attr_accessor :adjustment
369
+
370
+ def initialize(**args)
371
+ update!(**args)
372
+ end
373
+
374
+ # Update properties of this object
375
+ def update!(**args)
376
+ @adjustment = args[:adjustment] if args.key?(:adjustment)
377
+ end
378
+ end
379
+
361
380
  # Request for AdjustDeveloperBalance.
362
381
  class GoogleCloudApigeeV1AdjustDeveloperBalanceRequest
363
382
  include Google::Apis::Core::Hashable
@@ -790,6 +809,11 @@ module Google
790
809
  class GoogleCloudApigeeV1ApiDocDocumentation
791
810
  include Google::Apis::Core::Hashable
792
811
 
812
+ # AsyncAPI Specification documentation for a catalog item.
813
+ # Corresponds to the JSON property `asyncApiDocumentation`
814
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AsyncApiDocumentation]
815
+ attr_accessor :async_api_documentation
816
+
793
817
  # GraphQL documentation for a catalog item.
794
818
  # Corresponds to the JSON property `graphqlDocumentation`
795
819
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphqlDocumentation]
@@ -806,6 +830,7 @@ module Google
806
830
 
807
831
  # Update properties of this object
808
832
  def update!(**args)
833
+ @async_api_documentation = args[:async_api_documentation] if args.key?(:async_api_documentation)
809
834
  @graphql_documentation = args[:graphql_documentation] if args.key?(:graphql_documentation)
810
835
  @oas_documentation = args[:oas_documentation] if args.key?(:oas_documentation)
811
836
  end
@@ -1471,6 +1496,160 @@ module Google
1471
1496
  end
1472
1497
  end
1473
1498
 
1499
+ # APIM Service Extension is a resource under an Apigee Organization that is used
1500
+ # to create APIM Service Extension to route traffic to existing X instances.
1501
+ class GoogleCloudApigeeV1ApimServiceExtension
1502
+ include Google::Apis::Core::Hashable
1503
+
1504
+ # Output only. The time that this resource was created on the server.
1505
+ # Corresponds to the JSON property `createTime`
1506
+ # @return [String]
1507
+ attr_accessor :create_time
1508
+
1509
+ # Required. Name of the proxy deployed in the Apigee X instance.
1510
+ # Corresponds to the JSON property `extensionProcessor`
1511
+ # @return [String]
1512
+ attr_accessor :extension_processor
1513
+
1514
+ # Optional. List of extensions that are part of the service extension. Refer to
1515
+ # https://cloud.google.com/service-extensions/docs/quotas#limits for any limits.
1516
+ # Corresponds to the JSON property `extensions`
1517
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApimServiceExtensionExtension>]
1518
+ attr_accessor :extensions
1519
+
1520
+ # Required. Name of the Google Cloud LB forwarding rule. Format: projects/`
1521
+ # project`/regions/`region`/forwardingRules/`forwarding_rule` projects/`project`/
1522
+ # global/forwardingRules/`forwarding_rule`
1523
+ # Corresponds to the JSON property `lbForwardingRule`
1524
+ # @return [String]
1525
+ attr_accessor :lb_forwarding_rule
1526
+
1527
+ # Identifier. unique name of the APIM service extension. The name must conform
1528
+ # with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and
1529
+ # can have a maximum length of 63 characters. Additionally, the first character
1530
+ # must be a letter and the last a letter or a number.
1531
+ # Corresponds to the JSON property `name`
1532
+ # @return [String]
1533
+ attr_accessor :name
1534
+
1535
+ # Required. The network where the forwarding rule is created. Format: projects/`
1536
+ # project`/global/networks/`network`
1537
+ # Corresponds to the JSON property `network`
1538
+ # @return [String]
1539
+ attr_accessor :network
1540
+
1541
+ # Required. List of network configurations for the APIM service extension.
1542
+ # Corresponds to the JSON property `networkConfigs`
1543
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApimServiceExtensionNetworkConfig>]
1544
+ attr_accessor :network_configs
1545
+
1546
+ # Output only. State of the APIM service extension. Values other than `ACTIVE`
1547
+ # mean the resource is not ready to use.
1548
+ # Corresponds to the JSON property `state`
1549
+ # @return [String]
1550
+ attr_accessor :state
1551
+
1552
+ # Output only. The time that this resource was updated on the server.
1553
+ # Corresponds to the JSON property `updateTime`
1554
+ # @return [String]
1555
+ attr_accessor :update_time
1556
+
1557
+ def initialize(**args)
1558
+ update!(**args)
1559
+ end
1560
+
1561
+ # Update properties of this object
1562
+ def update!(**args)
1563
+ @create_time = args[:create_time] if args.key?(:create_time)
1564
+ @extension_processor = args[:extension_processor] if args.key?(:extension_processor)
1565
+ @extensions = args[:extensions] if args.key?(:extensions)
1566
+ @lb_forwarding_rule = args[:lb_forwarding_rule] if args.key?(:lb_forwarding_rule)
1567
+ @name = args[:name] if args.key?(:name)
1568
+ @network = args[:network] if args.key?(:network)
1569
+ @network_configs = args[:network_configs] if args.key?(:network_configs)
1570
+ @state = args[:state] if args.key?(:state)
1571
+ @update_time = args[:update_time] if args.key?(:update_time)
1572
+ end
1573
+ end
1574
+
1575
+ # Extension configuration for Apigee extension processor service extension.
1576
+ class GoogleCloudApigeeV1ApimServiceExtensionExtension
1577
+ include Google::Apis::Core::Hashable
1578
+
1579
+ # Optional. Whether this request should fail open.
1580
+ # Corresponds to the JSON property `failOpen`
1581
+ # @return [Boolean]
1582
+ attr_accessor :fail_open
1583
+ alias_method :fail_open?, :fail_open
1584
+
1585
+ # Required. One of the hostnames of Apigee EnvGroup where the proxy is deployed.
1586
+ # This hostname (i.e FDQN) will be used to route traffic from the specified
1587
+ # forwarding rule to the environment in Apigee X instance where the proxy is
1588
+ # deployed for handling extension traffic. Format: ^([a-zA-Z0-9. _-])+$
1589
+ # Corresponds to the JSON property `hostname`
1590
+ # @return [String]
1591
+ attr_accessor :hostname
1592
+
1593
+ # Optional. Match Condition for CEL expression. Refer to https://cloud.google.
1594
+ # com/service-extensions/docs/cel-matcher-language-reference for more details.
1595
+ # Corresponds to the JSON property `matchCondition`
1596
+ # @return [String]
1597
+ attr_accessor :match_condition
1598
+
1599
+ # Required. Name of the `LbTrafficExtension` resource. The name must conform
1600
+ # with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and
1601
+ # can have a maximum length of 63 characters. Additionally, the first character
1602
+ # must be a letter and the last a letter or a number.
1603
+ # Corresponds to the JSON property `name`
1604
+ # @return [String]
1605
+ attr_accessor :name
1606
+
1607
+ # Optional. Supported events for the Service Extension. If not specified, all
1608
+ # events are supported.
1609
+ # Corresponds to the JSON property `supportedEvents`
1610
+ # @return [Array<String>]
1611
+ attr_accessor :supported_events
1612
+
1613
+ def initialize(**args)
1614
+ update!(**args)
1615
+ end
1616
+
1617
+ # Update properties of this object
1618
+ def update!(**args)
1619
+ @fail_open = args[:fail_open] if args.key?(:fail_open)
1620
+ @hostname = args[:hostname] if args.key?(:hostname)
1621
+ @match_condition = args[:match_condition] if args.key?(:match_condition)
1622
+ @name = args[:name] if args.key?(:name)
1623
+ @supported_events = args[:supported_events] if args.key?(:supported_events)
1624
+ end
1625
+ end
1626
+
1627
+ # Network configuration for the APIM service extension.
1628
+ class GoogleCloudApigeeV1ApimServiceExtensionNetworkConfig
1629
+ include Google::Apis::Core::Hashable
1630
+
1631
+ # Required. The region for the PSC NEG.
1632
+ # Corresponds to the JSON property `region`
1633
+ # @return [String]
1634
+ attr_accessor :region
1635
+
1636
+ # Required. The subnet for the PSC NEG. Format: projects/`project`/regions/`
1637
+ # region`/subnetworks/`subnet`
1638
+ # Corresponds to the JSON property `subnet`
1639
+ # @return [String]
1640
+ attr_accessor :subnet
1641
+
1642
+ def initialize(**args)
1643
+ update!(**args)
1644
+ end
1645
+
1646
+ # Update properties of this object
1647
+ def update!(**args)
1648
+ @region = args[:region] if args.key?(:region)
1649
+ @subnet = args[:subnet] if args.key?(:subnet)
1650
+ end
1651
+ end
1652
+
1474
1653
  #
1475
1654
  class GoogleCloudApigeeV1App
1476
1655
  include Google::Apis::Core::Hashable
@@ -1616,6 +1795,11 @@ module Google
1616
1795
  # @return [String]
1617
1796
  attr_accessor :display_name
1618
1797
 
1798
+ # Optional. Email of the AppGroup.
1799
+ # Corresponds to the JSON property `email`
1800
+ # @return [String]
1801
+ attr_accessor :email
1802
+
1619
1803
  # Output only. Modified time as milliseconds since epoch.
1620
1804
  # Corresponds to the JSON property `lastModifiedAt`
1621
1805
  # @return [Fixnum]
@@ -1651,6 +1835,7 @@ module Google
1651
1835
  @channel_uri = args[:channel_uri] if args.key?(:channel_uri)
1652
1836
  @created_at = args[:created_at] if args.key?(:created_at)
1653
1837
  @display_name = args[:display_name] if args.key?(:display_name)
1838
+ @email = args[:email] if args.key?(:email)
1654
1839
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
1655
1840
  @name = args[:name] if args.key?(:name)
1656
1841
  @organization = args[:organization] if args.key?(:organization)
@@ -1824,6 +2009,125 @@ module Google
1824
2009
  end
1825
2010
  end
1826
2011
 
2012
+ # AppGroupBalance for the AppGroup.
2013
+ class GoogleCloudApigeeV1AppGroupBalance
2014
+ include Google::Apis::Core::Hashable
2015
+
2016
+ # Output only. List of all wallets. Each individual wallet stores the account
2017
+ # balance for a particular currency.
2018
+ # Corresponds to the JSON property `wallets`
2019
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupBalanceWallet>]
2020
+ attr_accessor :wallets
2021
+
2022
+ def initialize(**args)
2023
+ update!(**args)
2024
+ end
2025
+
2026
+ # Update properties of this object
2027
+ def update!(**args)
2028
+ @wallets = args[:wallets] if args.key?(:wallets)
2029
+ end
2030
+ end
2031
+
2032
+ # Wallet used to manage an account balance for a particular currency.
2033
+ class GoogleCloudApigeeV1AppGroupBalanceWallet
2034
+ include Google::Apis::Core::Hashable
2035
+
2036
+ # Represents an amount of money with its currency type.
2037
+ # Corresponds to the JSON property `balance`
2038
+ # @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
2039
+ attr_accessor :balance
2040
+
2041
+ # Output only. Time at which the AppGroup last added credit to the account in
2042
+ # milliseconds since epoch.
2043
+ # Corresponds to the JSON property `lastCreditTime`
2044
+ # @return [Fixnum]
2045
+ attr_accessor :last_credit_time
2046
+
2047
+ def initialize(**args)
2048
+ update!(**args)
2049
+ end
2050
+
2051
+ # Update properties of this object
2052
+ def update!(**args)
2053
+ @balance = args[:balance] if args.key?(:balance)
2054
+ @last_credit_time = args[:last_credit_time] if args.key?(:last_credit_time)
2055
+ end
2056
+ end
2057
+
2058
+ # Monetization configuration for the AppGroup.
2059
+ class GoogleCloudApigeeV1AppGroupMonetizationConfig
2060
+ include Google::Apis::Core::Hashable
2061
+
2062
+ # Required. Billing type.
2063
+ # Corresponds to the JSON property `billingType`
2064
+ # @return [String]
2065
+ attr_accessor :billing_type
2066
+
2067
+ def initialize(**args)
2068
+ update!(**args)
2069
+ end
2070
+
2071
+ # Update properties of this object
2072
+ def update!(**args)
2073
+ @billing_type = args[:billing_type] if args.key?(:billing_type)
2074
+ end
2075
+ end
2076
+
2077
+ # AppGroup Subscription details.
2078
+ class GoogleCloudApigeeV1AppGroupSubscription
2079
+ include Google::Apis::Core::Hashable
2080
+
2081
+ # Required. Name of the API product for which the appgroup is purchasing a
2082
+ # subscription.
2083
+ # Corresponds to the JSON property `apiproduct`
2084
+ # @return [String]
2085
+ attr_accessor :apiproduct
2086
+
2087
+ # Output only. Time when the API product subscription was created in
2088
+ # milliseconds since epoch.
2089
+ # Corresponds to the JSON property `createdAt`
2090
+ # @return [Fixnum]
2091
+ attr_accessor :created_at
2092
+
2093
+ # Output only. Time when the API product subscription ends in milliseconds since
2094
+ # epoch.
2095
+ # Corresponds to the JSON property `endTime`
2096
+ # @return [Fixnum]
2097
+ attr_accessor :end_time
2098
+
2099
+ # Output only. Time when the API product subscription was last modified in
2100
+ # milliseconds since epoch.
2101
+ # Corresponds to the JSON property `lastModifiedAt`
2102
+ # @return [Fixnum]
2103
+ attr_accessor :last_modified_at
2104
+
2105
+ # Output only. Name of the API product subscription.
2106
+ # Corresponds to the JSON property `name`
2107
+ # @return [String]
2108
+ attr_accessor :name
2109
+
2110
+ # Output only. Time when the API product subscription starts in milliseconds
2111
+ # since epoch.
2112
+ # Corresponds to the JSON property `startTime`
2113
+ # @return [Fixnum]
2114
+ attr_accessor :start_time
2115
+
2116
+ def initialize(**args)
2117
+ update!(**args)
2118
+ end
2119
+
2120
+ # Update properties of this object
2121
+ def update!(**args)
2122
+ @apiproduct = args[:apiproduct] if args.key?(:apiproduct)
2123
+ @created_at = args[:created_at] if args.key?(:created_at)
2124
+ @end_time = args[:end_time] if args.key?(:end_time)
2125
+ @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
2126
+ @name = args[:name] if args.key?(:name)
2127
+ @start_time = args[:start_time] if args.key?(:start_time)
2128
+ end
2129
+ end
2130
+
1827
2131
  # Archive Deployment information.
1828
2132
  class GoogleCloudApigeeV1ArchiveDeployment
1829
2133
  include Google::Apis::Core::Hashable
@@ -1884,6 +2188,25 @@ module Google
1884
2188
  end
1885
2189
  end
1886
2190
 
2191
+ # AsyncAPI Specification documentation for a catalog item.
2192
+ class GoogleCloudApigeeV1AsyncApiDocumentation
2193
+ include Google::Apis::Core::Hashable
2194
+
2195
+ # Documentation file contents for a catalog item.
2196
+ # Corresponds to the JSON property `spec`
2197
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DocumentationFile]
2198
+ attr_accessor :spec
2199
+
2200
+ def initialize(**args)
2201
+ update!(**args)
2202
+ end
2203
+
2204
+ # Update properties of this object
2205
+ def update!(**args)
2206
+ @spec = args[:spec] if args.key?(:spec)
2207
+ end
2208
+ end
2209
+
1887
2210
  #
1888
2211
  class GoogleCloudApigeeV1AsyncQuery
1889
2212
  include Google::Apis::Core::Hashable
@@ -2812,6 +3135,33 @@ module Google
2812
3135
  end
2813
3136
  end
2814
3137
 
3138
+ # Request for CreditAppGroupBalance.
3139
+ class GoogleCloudApigeeV1CreditAppGroupBalanceRequest
3140
+ include Google::Apis::Core::Hashable
3141
+
3142
+ # Represents an amount of money with its currency type.
3143
+ # Corresponds to the JSON property `transactionAmount`
3144
+ # @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
3145
+ attr_accessor :transaction_amount
3146
+
3147
+ # Required. Each transaction_id uniquely identifies a credit balance request. If
3148
+ # multiple requests are received with the same transaction_id, only one of them
3149
+ # will be considered.
3150
+ # Corresponds to the JSON property `transactionId`
3151
+ # @return [String]
3152
+ attr_accessor :transaction_id
3153
+
3154
+ def initialize(**args)
3155
+ update!(**args)
3156
+ end
3157
+
3158
+ # Update properties of this object
3159
+ def update!(**args)
3160
+ @transaction_amount = args[:transaction_amount] if args.key?(:transaction_amount)
3161
+ @transaction_id = args[:transaction_id] if args.key?(:transaction_id)
3162
+ end
3163
+ end
3164
+
2815
3165
  # Request for CreditDeveloperBalance.
2816
3166
  class GoogleCloudApigeeV1CreditDeveloperBalanceRequest
2817
3167
  include Google::Apis::Core::Hashable
@@ -5011,6 +5361,19 @@ module Google
5011
5361
  end
5012
5362
  end
5013
5363
 
5364
+ # Request for ExpireAppGroupSubscription.
5365
+ class GoogleCloudApigeeV1ExpireAppGroupSubscriptionRequest
5366
+ include Google::Apis::Core::Hashable
5367
+
5368
+ def initialize(**args)
5369
+ update!(**args)
5370
+ end
5371
+
5372
+ # Update properties of this object
5373
+ def update!(**args)
5374
+ end
5375
+ end
5376
+
5014
5377
  # Request for ExpireDeveloperSubscription.
5015
5378
  class GoogleCloudApigeeV1ExpireDeveloperSubscriptionRequest
5016
5379
  include Google::Apis::Core::Hashable
@@ -6227,6 +6590,32 @@ module Google
6227
6590
  end
6228
6591
  end
6229
6592
 
6593
+ # Response for list service extensions.
6594
+ class GoogleCloudApigeeV1ListApimServiceExtensionsResponse
6595
+ include Google::Apis::Core::Hashable
6596
+
6597
+ # service extension in a given organization.
6598
+ # Corresponds to the JSON property `apimServiceExtensions`
6599
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApimServiceExtension>]
6600
+ attr_accessor :apim_service_extensions
6601
+
6602
+ # Page token that you can include in an `ListApimServiceExtensions` request to
6603
+ # retrieve the next page. If omitted, no subsequent pages exist.
6604
+ # Corresponds to the JSON property `nextPageToken`
6605
+ # @return [String]
6606
+ attr_accessor :next_page_token
6607
+
6608
+ def initialize(**args)
6609
+ update!(**args)
6610
+ end
6611
+
6612
+ # Update properties of this object
6613
+ def update!(**args)
6614
+ @apim_service_extensions = args[:apim_service_extensions] if args.key?(:apim_service_extensions)
6615
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
6616
+ end
6617
+ end
6618
+
6230
6619
  # Response for ListAppGroupApps
6231
6620
  class GoogleCloudApigeeV1ListAppGroupAppsResponse
6232
6621
  include Google::Apis::Core::Hashable
@@ -6253,6 +6642,32 @@ module Google
6253
6642
  end
6254
6643
  end
6255
6644
 
6645
+ # Response for ListAppGroupSubscriptions.
6646
+ class GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse
6647
+ include Google::Apis::Core::Hashable
6648
+
6649
+ # The list of subscriptions for an AppGroup.
6650
+ # Corresponds to the JSON property `appGroupSubscriptions`
6651
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupSubscription>]
6652
+ attr_accessor :app_group_subscriptions
6653
+
6654
+ # Value that can be sent as `pageToken` to retrieve the next page of content. If
6655
+ # this field is omitted, there are no subsequent pages.
6656
+ # Corresponds to the JSON property `nextPageToken`
6657
+ # @return [String]
6658
+ attr_accessor :next_page_token
6659
+
6660
+ def initialize(**args)
6661
+ update!(**args)
6662
+ end
6663
+
6664
+ # Update properties of this object
6665
+ def update!(**args)
6666
+ @app_group_subscriptions = args[:app_group_subscriptions] if args.key?(:app_group_subscriptions)
6667
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
6668
+ end
6669
+ end
6670
+
6256
6671
  # ListAppGroupsResponse contains the 0 or more AppGroups, along with the
6257
6672
  # optional page token and the total count of apps.
6258
6673
  class GoogleCloudApigeeV1ListAppGroupsResponse
@@ -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.117.0"
19
+ GEM_VERSION = "0.118.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 = "20251125"
25
+ REVISION = "20251216"
26
26
  end
27
27
  end
28
28
  end