katello 3.7.1.1 → 3.8.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +8 -7
- data/app/assets/javascripts/katello/common/index.js +0 -1
- data/app/assets/javascripts/katello/sync_management/index.js +0 -1
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +477 -0
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +1 -1
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +2 -2
- data/app/controllers/katello/api/v2/api_controller.rb +3 -1
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +15 -1
- data/app/controllers/katello/api/v2/environments_controller.rb +5 -2
- data/app/controllers/katello/api/v2/errata_controller.rb +48 -34
- data/app/controllers/katello/api/v2/gpg_keys_controller.rb +1 -1
- data/app/controllers/katello/api/v2/host_collections_controller.rb +1 -1
- data/app/controllers/katello/api/v2/host_packages_controller.rb +5 -1
- data/app/controllers/katello/api/v2/organizations_controller.rb +1 -1
- data/app/controllers/katello/api/v2/packages_controller.rb +33 -22
- data/app/controllers/katello/api/v2/products_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +6 -5
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +1 -10
- data/app/controllers/katello/api/v2/sync_plans_controller.rb +1 -1
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +20 -12
- data/app/controllers/katello/remote_execution_controller.rb +6 -6
- data/app/helpers/katello/hosts_and_hostgroups_helper.rb +9 -37
- data/app/lib/actions/katello/content_view/promote.rb +6 -2
- data/app/lib/actions/katello/content_view_version/after_promote_hook.rb +11 -0
- data/app/lib/actions/katello/content_view_version/before_promote_hook.rb +11 -0
- data/app/lib/actions/katello/host/remove_subscriptions.rb +1 -1
- data/app/lib/actions/pulp/consumer/abstract_content_action.rb +0 -12
- data/app/lib/actions/pulp/consumer/content_install.rb +1 -1
- data/app/lib/actions/pulp/consumer/content_uninstall.rb +1 -1
- data/app/lib/actions/pulp/consumer/content_update.rb +1 -1
- data/app/lib/katello/resources/registry.rb +40 -0
- data/app/lib/katello/util/package.rb +9 -4
- data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -1
- data/app/models/katello/content_view.rb +4 -12
- data/app/models/katello/content_view_version.rb +26 -0
- data/app/models/katello/glue/candlepin/owner.rb +8 -0
- data/app/models/katello/glue/candlepin/pool.rb +11 -11
- data/app/models/katello/glue/candlepin/repository.rb +1 -1
- data/app/models/katello/glue/pulp/repos.rb +1 -0
- data/app/models/katello/host/content_facet.rb +1 -2
- data/app/models/katello/kt_environment.rb +6 -0
- data/app/models/katello/product_content.rb +1 -4
- data/app/models/katello/repository.rb +2 -0
- data/app/models/katello/rpm.rb +118 -14
- data/app/services/katello/puppet_class_importer_extensions.rb +17 -20
- data/app/services/katello/ui_notifications/pulp/proxy_disk_space.rb +1 -3
- data/app/views/katello/api/v2/common/copy.json.rabl +3 -0
- data/app/views/katello/api/v2/environments/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -0
- data/app/views/katello/api/v2/repositories/show.json.rabl +4 -2
- data/app/views/overrides/activation_keys/_host_environment_select.html.erb +3 -2
- data/config/katello.yaml +89 -0
- data/config/routes.rb +0 -1
- data/config/routes/api/registry.rb +29 -0
- data/config/routes/api/v2.rb +1 -1
- data/db/migrate/20180612163403_add_foreign_key_to_hypervisor_id.rb +0 -3
- data/db/migrate/20180614184822_add_unauthenticated_pull.rb +9 -0
- data/db/migrate/20180618195941_add_description_to_repository.rb +5 -0
- data/db/seeds.d/75-job_templates.rb +2 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-repository-sets-modal.controller.js +3 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-subscriptions-modal.controller.js +1 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-subscriptions.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +32 -18
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html +32 -23
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +6 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +8 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
- data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +0 -5
- data/lib/katello/engine.rb +1 -0
- data/lib/katello/permission_creator.rb +2 -0
- data/lib/katello/permissions/registry_permissions.rb +20 -0
- data/lib/katello/plugin.rb +1 -0
- data/lib/katello/tasks/clean_backend_objects.rake +3 -12
- data/lib/katello/version.rb +1 -1
- data/package.json +7 -10
- data/webpack/components/Search/Search.test.js +1 -3
- data/webpack/containers/Application/config.js +2 -9
- data/webpack/containers/Application/index.js +2 -4
- data/webpack/mockRequest.js +3 -3
- data/webpack/move_to_foreman/common/helpers.js +8 -45
- data/webpack/move_to_foreman/components/common/{EmptyState → emptyState}/index.js +3 -16
- data/webpack/move_to_foreman/components/common/table/components/Table.js +1 -1
- data/webpack/move_to_foreman/components/common/table/components/__snapshots__/CollapseSubscriptionGroupButton.test.js.snap +2 -2
- data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionCell.test.js.snap +1 -1
- data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionHeaderCell.test.js.snap +1 -1
- data/webpack/move_to_pf/LoadingState/LoadingState.js +14 -27
- data/webpack/move_to_pf/LoadingState/LoadingState.test.js +4 -8
- data/webpack/move_to_pf/react-bootstrap-select/index.js +1 -12
- data/webpack/redux/actions/RedHatRepositories/enabled.js +1 -0
- data/webpack/redux/actions/RedHatRepositories/helpers.js +5 -5
- data/webpack/redux/actions/RedHatRepositories/sets.js +1 -1
- data/webpack/redux/consts.js +0 -6
- data/webpack/redux/reducers/index.js +0 -2
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository.js +23 -14
- data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository.js +1 -1
- data/webpack/scenes/RedHatRepositories/components/SearchBar.js +0 -1
- data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +1 -3
- data/webpack/scenes/RedHatRepositories/index.js +3 -7
- data/webpack/scenes/RedHatRepositories/index.scss +0 -1
- data/webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js +8 -3
- data/webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js +1 -30
- data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +28 -111
- data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailReducer.test.js +1 -3
- data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetails.test.js +1 -6
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +424 -519
- data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +4 -7
- data/webpack/scenes/Subscriptions/Details/index.js +3 -5
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +34 -78
- data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +24 -5
- data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js +1 -9
- data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -3
- data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js +8 -20
- data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js +1 -3
- data/webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap +7 -34
- data/webpack/scenes/Subscriptions/Manifest/__tests__/manifest.fixtures.js +16 -9
- data/webpack/scenes/Subscriptions/Manifest/index.js +0 -1
- data/webpack/scenes/Subscriptions/SubscriptionActions.js +26 -5
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +0 -1
- data/webpack/scenes/Subscriptions/SubscriptionHelpers.js +0 -3
- data/webpack/scenes/Subscriptions/SubscriptionReducer.js +4 -11
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +36 -31
- data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsActions.js +12 -3
- data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +27 -57
- data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsReducer.js +3 -2
- data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js +5 -10
- data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsActions.test.js +5 -10
- data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +4 -49
- data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsReducer.test.js +3 -8
- data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +11 -21
- data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/upstreamSubscriptions.fixtures.js +8 -5
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -2
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsReducer.test.js +3 -9
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +2 -14
- data/webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js +17 -11
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/EntitlementsInlineEditFormatter.js +5 -8
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +58 -45
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +4 -11
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -2
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +3 -16
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +365 -392
- data/webpack/scenes/Subscriptions/index.js +0 -1
- data/webpack/services/api/fixtures.js +353 -0
- data/webpack/services/api/index.js +1 -17
- data/webpack/test_setup.js +0 -2
- metadata +16 -37
- data/config/katello.yml +0 -59
- data/webpack/__mocks__/foremanReact/components/BreadcrumbBar.js +0 -3
- data/webpack/__mocks__/foremanReact/redux.js +0 -3
- data/webpack/__mocks__/foremanReact/redux/actions/toasts.js +0 -8
- data/webpack/components/SelectOrg/SelectOrg.scss +0 -3
- data/webpack/components/SelectOrg/SelectOrgAction.js +0 -41
- data/webpack/components/SelectOrg/SelectOrgReducer.js +0 -33
- data/webpack/components/SelectOrg/SetOrganization.js +0 -116
- data/webpack/components/WithOrganization/withOrganization.js +0 -28
- data/webpack/global_test_setup.js +0 -6
- data/webpack/helpers/caret.js +0 -6
- data/webpack/move_to_pf/Select/Select.js +0 -40
- data/webpack/scenes/Products/ProductActions.js +0 -24
- data/webpack/scenes/Products/ProductConstants.js +0 -3
- data/webpack/scenes/Products/__tests__/ProductActions.test.js +0 -40
- data/webpack/scenes/Products/__tests__/products.fixtures.js +0 -90
- data/webpack/scenes/RedHatRepositories/components/EnabledRepositoryContent.js +0 -34
- data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepository.test.js +0 -36
- data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepositoryContent.test.js +0 -27
- data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepository.test.js.snap +0 -25
- data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepositoryContent.test.js.snap +0 -47
- data/webpack/scenes/Subscriptions/Details/SubscriptionDetailEnabledProducts.js +0 -54
- data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProduct.js +0 -29
- data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.scss +0 -9
- data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailEnabledProducts.test.js +0 -18
- data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProduct.test.js +0 -13
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailEnabledProducts.test.js.snap +0 -45
- data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProduct.test.js.snap +0 -67
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/EntitlementsInlineEditFormatter.test.js +0 -110
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +0 -228
- data/webpack/scenes/Tasks/helpers.js +0 -52
- data/webpack/services/api/testHelpers.js +0 -28
@@ -5,9 +5,7 @@ import SubscriptionDetails from '../SubscriptionDetails';
|
|
5
5
|
import SubscriptionDetailAssociations from '../SubscriptionDetailAssociations';
|
6
6
|
import SubscriptionDetailInfo from '../SubscriptionDetailInfo';
|
7
7
|
import SubscriptionDetailProducts from '../SubscriptionDetailProducts';
|
8
|
-
import SubscriptionDetailEnabledProducts from '../SubscriptionDetailEnabledProducts';
|
9
8
|
import { loadSubscriptionDetails } from '../SubscriptionDetailActions';
|
10
|
-
import { loadProducts } from '../../../Products/ProductActions';
|
11
9
|
import { successState } from './subscriptionDetails.fixtures';
|
12
10
|
|
13
11
|
jest.mock('../../../../move_to_foreman/foreman_toast_notifications');
|
@@ -15,19 +13,16 @@ jest.mock('../../../../move_to_foreman/foreman_toast_notifications');
|
|
15
13
|
describe('subscriptions details page', () => {
|
16
14
|
it('should render and contain appropiate components', async () => {
|
17
15
|
const match = { params: { id: 1 } };
|
18
|
-
const noop = () => {};
|
19
16
|
|
20
17
|
const wrapper = shallow(<SubscriptionDetails
|
21
18
|
loadSubscriptionDetails={loadSubscriptionDetails}
|
22
|
-
loadProducts={loadProducts}
|
23
19
|
subscriptionDetails={successState}
|
24
|
-
history={{ push: noop }}
|
25
20
|
match={match}
|
26
21
|
/>);
|
22
|
+
expect(wrapper.find('h1').text()).toEqual(successState.name);
|
27
23
|
expect(wrapper.find(SubscriptionDetailAssociations)).toHaveLength(1);
|
28
24
|
expect(wrapper.find(SubscriptionDetailInfo)).toHaveLength(1);
|
29
25
|
expect(wrapper.find(SubscriptionDetailProducts)).toHaveLength(1);
|
30
|
-
expect(wrapper.find(SubscriptionDetailEnabledProducts)).toHaveLength(1);
|
31
26
|
expect(toJson(wrapper)).toMatchSnapshot();
|
32
27
|
});
|
33
28
|
});
|
data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap
CHANGED
@@ -1,527 +1,432 @@
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
2
|
|
3
3
|
exports[`subscriptions details page should render and contain appropiate components 1`] = `
|
4
|
-
<
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
"isSwitchable": true,
|
18
|
-
"resource": Object {
|
19
|
-
"nameField": "name",
|
20
|
-
"resourceUrl": "/katello/api/v2/subscriptions",
|
21
|
-
"switcherItemUrl": "/subscriptions/:id",
|
22
|
-
},
|
23
|
-
}
|
24
|
-
}
|
25
|
-
onSwitcherItemClick={[Function]}
|
26
|
-
/>
|
27
|
-
<Uncontrolled(TabContainer)
|
28
|
-
defaultActiveKey={1}
|
29
|
-
id="subscription-tabs-container"
|
30
|
-
>
|
31
|
-
<div>
|
32
|
-
<LoadingState
|
33
|
-
loading={false}
|
34
|
-
loadingText="Loading"
|
35
|
-
timeout={300}
|
4
|
+
<Grid
|
5
|
+
bsClass="container-fluid"
|
6
|
+
componentClass="div"
|
7
|
+
fluid={false}
|
8
|
+
>
|
9
|
+
<div>
|
10
|
+
<LoadingState
|
11
|
+
loading={false}
|
12
|
+
loadingText="Loading"
|
13
|
+
>
|
14
|
+
<Row
|
15
|
+
bsClass="row"
|
16
|
+
componentClass="div"
|
36
17
|
>
|
37
|
-
<
|
38
|
-
bsClass="
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
18
|
+
<Col
|
19
|
+
bsClass="col"
|
20
|
+
componentClass="div"
|
21
|
+
sm={12}
|
22
|
+
>
|
23
|
+
<h1>
|
24
|
+
OpenShift Employee Subscription
|
25
|
+
</h1>
|
26
|
+
</Col>
|
27
|
+
</Row>
|
28
|
+
<Row
|
29
|
+
bsClass="row"
|
30
|
+
componentClass="div"
|
31
|
+
>
|
32
|
+
<Col
|
33
|
+
bsClass="col"
|
34
|
+
componentClass="div"
|
35
|
+
sm={6}
|
43
36
|
>
|
44
|
-
<
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
37
|
+
<SubscriptionDetailInfo
|
38
|
+
subscriptionDetails={
|
39
|
+
Object {
|
40
|
+
"account_number": 1212729,
|
41
|
+
"activation_keys": Array [],
|
42
|
+
"arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
|
43
|
+
"available": 1,
|
44
|
+
"consumed": 0,
|
45
|
+
"contract_number": 10126160,
|
46
|
+
"cores": 4,
|
47
|
+
"cp_id": "4028f92a6317cfbd0163b419377f3bee",
|
48
|
+
"description": "OpenShift Enterprise",
|
49
|
+
"end_date": "2021-12-31 23:59:59 -0500",
|
50
|
+
"error": null,
|
51
|
+
"host_count": 0,
|
52
|
+
"id": 48,
|
53
|
+
"instance_multiplier": 1,
|
54
|
+
"loading": false,
|
55
|
+
"multi_entitlement": true,
|
56
|
+
"name": "OpenShift Employee Subscription",
|
57
|
+
"product_id": "SER0421",
|
58
|
+
"product_name": "OpenShift Employee Subscription",
|
59
|
+
"provided_products": Array [
|
60
|
+
Object {
|
61
|
+
"id": 1,
|
62
|
+
"name": "Red Hat OpenShift Container Platform",
|
63
|
+
},
|
64
|
+
Object {
|
65
|
+
"id": 2,
|
66
|
+
"name": "Oracle Java for RHEL Server",
|
67
|
+
},
|
68
|
+
Object {
|
69
|
+
"id": 3,
|
70
|
+
"name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
|
71
|
+
},
|
72
|
+
Object {
|
73
|
+
"id": 4,
|
74
|
+
"name": "Red Hat CloudForms Beta",
|
75
|
+
},
|
76
|
+
Object {
|
77
|
+
"id": 5,
|
78
|
+
"name": "Red Hat CloudForms",
|
79
|
+
},
|
80
|
+
Object {
|
81
|
+
"id": 6,
|
82
|
+
"name": "Red Hat OpenShift Enterprise Client Tools",
|
83
|
+
},
|
84
|
+
Object {
|
85
|
+
"id": 7,
|
86
|
+
"name": "Red Hat Enterprise Linux Atomic Host",
|
87
|
+
},
|
88
|
+
Object {
|
89
|
+
"id": 8,
|
90
|
+
"name": "JBoss Enterprise Application Platform",
|
91
|
+
},
|
92
|
+
Object {
|
93
|
+
"id": 9,
|
94
|
+
"name": "Red Hat JBoss AMQ Clients",
|
95
|
+
},
|
96
|
+
Object {
|
97
|
+
"id": 10,
|
98
|
+
"name": "Red Hat Beta",
|
99
|
+
},
|
100
|
+
Object {
|
101
|
+
"id": 11,
|
102
|
+
"name": "Red Hat OpenShift Enterprise Infrastructure",
|
103
|
+
},
|
104
|
+
Object {
|
105
|
+
"id": 12,
|
106
|
+
"name": "Red Hat Enterprise Linux Fast Datapath Beta",
|
107
|
+
},
|
108
|
+
Object {
|
109
|
+
"id": 13,
|
110
|
+
"name": "Red Hat Ansible Engine",
|
111
|
+
},
|
112
|
+
Object {
|
113
|
+
"id": 14,
|
114
|
+
"name": "Red Hat OpenShift Enterprise Application Node",
|
115
|
+
},
|
116
|
+
Object {
|
117
|
+
"id": 15,
|
118
|
+
"name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
|
119
|
+
},
|
120
|
+
Object {
|
121
|
+
"id": 16,
|
122
|
+
"name": "Red Hat Software Collections Beta for RHEL Server",
|
123
|
+
},
|
124
|
+
Object {
|
125
|
+
"id": 17,
|
126
|
+
"name": "Red Hat Software Collections for RHEL Server",
|
127
|
+
},
|
128
|
+
Object {
|
129
|
+
"id": 18,
|
130
|
+
"name": "Red Hat Enterprise Linux Fast Datapath",
|
131
|
+
},
|
132
|
+
Object {
|
133
|
+
"id": 19,
|
134
|
+
"name": "Red Hat Enterprise Linux Server",
|
135
|
+
},
|
136
|
+
Object {
|
137
|
+
"id": 20,
|
138
|
+
"name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
|
139
|
+
},
|
140
|
+
Object {
|
141
|
+
"id": 21,
|
142
|
+
"name": "JBoss Enterprise Web Server",
|
143
|
+
},
|
144
|
+
Object {
|
145
|
+
"id": 22,
|
146
|
+
"name": "Red Hat JBoss Core Services",
|
147
|
+
},
|
148
|
+
],
|
149
|
+
"quantity": 1,
|
150
|
+
"ram": null,
|
151
|
+
"sockets": null,
|
152
|
+
"stacking_id": "SER0421",
|
153
|
+
"start_date": "2013-03-01 00:00:00 -0500",
|
154
|
+
"subscription_id": 3,
|
155
|
+
"support_level": "Self-Support",
|
156
|
+
"support_type": "L1-L3",
|
157
|
+
"type": "NORMAL",
|
158
|
+
"unmapped_guest": false,
|
159
|
+
"upstream": true,
|
160
|
+
"virt_only": false,
|
161
|
+
"virt_who": false,
|
162
|
+
}
|
163
|
+
}
|
164
|
+
/>
|
165
|
+
</Col>
|
166
|
+
<Col
|
167
|
+
bsClass="col"
|
65
168
|
componentClass="div"
|
66
|
-
|
169
|
+
sm={6}
|
67
170
|
>
|
68
|
-
<
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
},
|
330
|
-
Object {
|
331
|
-
"id": 20,
|
332
|
-
"name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
|
333
|
-
},
|
334
|
-
Object {
|
335
|
-
"id": 21,
|
336
|
-
"name": "JBoss Enterprise Web Server",
|
337
|
-
},
|
338
|
-
Object {
|
339
|
-
"id": 22,
|
340
|
-
"name": "Red Hat JBoss Core Services",
|
341
|
-
},
|
342
|
-
],
|
343
|
-
"quantity": 1,
|
344
|
-
"ram": null,
|
345
|
-
"sockets": null,
|
346
|
-
"stacking_id": "SER0421",
|
347
|
-
"start_date": "2013-03-01 00:00:00 -0500",
|
348
|
-
"subscription_id": 3,
|
349
|
-
"support_level": "Self-Support",
|
350
|
-
"support_type": "L1-L3",
|
351
|
-
"type": "NORMAL",
|
352
|
-
"unmapped_guest": false,
|
353
|
-
"upstream": true,
|
354
|
-
"virt_only": false,
|
355
|
-
"virt_who": false,
|
356
|
-
}
|
357
|
-
}
|
358
|
-
/>
|
359
|
-
<SubscriptionDetailProducts
|
360
|
-
subscriptionDetails={
|
361
|
-
Object {
|
362
|
-
"account_number": 1212729,
|
363
|
-
"activation_keys": Array [],
|
364
|
-
"arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
|
365
|
-
"available": 1,
|
366
|
-
"consumed": 0,
|
367
|
-
"contract_number": 10126160,
|
368
|
-
"cores": 4,
|
369
|
-
"cp_id": "4028f92a6317cfbd0163b419377f3bee",
|
370
|
-
"description": "OpenShift Enterprise",
|
371
|
-
"enabledProducts": Object {
|
372
|
-
"results": Array [],
|
373
|
-
"total": 0,
|
374
|
-
},
|
375
|
-
"end_date": "2021-12-31 23:59:59 -0500",
|
376
|
-
"error": null,
|
377
|
-
"host_count": 0,
|
378
|
-
"id": 48,
|
379
|
-
"instance_multiplier": 1,
|
380
|
-
"loading": false,
|
381
|
-
"multi_entitlement": true,
|
382
|
-
"name": "OpenShift Employee Subscription",
|
383
|
-
"product_id": "SER0421",
|
384
|
-
"product_name": "OpenShift Employee Subscription",
|
385
|
-
"provided_products": Array [
|
386
|
-
Object {
|
387
|
-
"id": 1,
|
388
|
-
"name": "Red Hat OpenShift Container Platform",
|
389
|
-
},
|
390
|
-
Object {
|
391
|
-
"id": 2,
|
392
|
-
"name": "Oracle Java for RHEL Server",
|
393
|
-
},
|
394
|
-
Object {
|
395
|
-
"id": 3,
|
396
|
-
"name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
|
397
|
-
},
|
398
|
-
Object {
|
399
|
-
"id": 4,
|
400
|
-
"name": "Red Hat CloudForms Beta",
|
401
|
-
},
|
402
|
-
Object {
|
403
|
-
"id": 5,
|
404
|
-
"name": "Red Hat CloudForms",
|
405
|
-
},
|
406
|
-
Object {
|
407
|
-
"id": 6,
|
408
|
-
"name": "Red Hat OpenShift Enterprise Client Tools",
|
409
|
-
},
|
410
|
-
Object {
|
411
|
-
"id": 7,
|
412
|
-
"name": "Red Hat Enterprise Linux Atomic Host",
|
413
|
-
},
|
414
|
-
Object {
|
415
|
-
"id": 8,
|
416
|
-
"name": "JBoss Enterprise Application Platform",
|
417
|
-
},
|
418
|
-
Object {
|
419
|
-
"id": 9,
|
420
|
-
"name": "Red Hat JBoss AMQ Clients",
|
421
|
-
},
|
422
|
-
Object {
|
423
|
-
"id": 10,
|
424
|
-
"name": "Red Hat Beta",
|
425
|
-
},
|
426
|
-
Object {
|
427
|
-
"id": 11,
|
428
|
-
"name": "Red Hat OpenShift Enterprise Infrastructure",
|
429
|
-
},
|
430
|
-
Object {
|
431
|
-
"id": 12,
|
432
|
-
"name": "Red Hat Enterprise Linux Fast Datapath Beta",
|
433
|
-
},
|
434
|
-
Object {
|
435
|
-
"id": 13,
|
436
|
-
"name": "Red Hat Ansible Engine",
|
437
|
-
},
|
438
|
-
Object {
|
439
|
-
"id": 14,
|
440
|
-
"name": "Red Hat OpenShift Enterprise Application Node",
|
441
|
-
},
|
442
|
-
Object {
|
443
|
-
"id": 15,
|
444
|
-
"name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
|
445
|
-
},
|
446
|
-
Object {
|
447
|
-
"id": 16,
|
448
|
-
"name": "Red Hat Software Collections Beta for RHEL Server",
|
449
|
-
},
|
450
|
-
Object {
|
451
|
-
"id": 17,
|
452
|
-
"name": "Red Hat Software Collections for RHEL Server",
|
453
|
-
},
|
454
|
-
Object {
|
455
|
-
"id": 18,
|
456
|
-
"name": "Red Hat Enterprise Linux Fast Datapath",
|
457
|
-
},
|
458
|
-
Object {
|
459
|
-
"id": 19,
|
460
|
-
"name": "Red Hat Enterprise Linux Server",
|
461
|
-
},
|
462
|
-
Object {
|
463
|
-
"id": 20,
|
464
|
-
"name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
|
465
|
-
},
|
466
|
-
Object {
|
467
|
-
"id": 21,
|
468
|
-
"name": "JBoss Enterprise Web Server",
|
469
|
-
},
|
470
|
-
Object {
|
471
|
-
"id": 22,
|
472
|
-
"name": "Red Hat JBoss Core Services",
|
473
|
-
},
|
474
|
-
],
|
475
|
-
"quantity": 1,
|
476
|
-
"ram": null,
|
477
|
-
"sockets": null,
|
478
|
-
"stacking_id": "SER0421",
|
479
|
-
"start_date": "2013-03-01 00:00:00 -0500",
|
480
|
-
"subscription_id": 3,
|
481
|
-
"support_level": "Self-Support",
|
482
|
-
"support_type": "L1-L3",
|
483
|
-
"type": "NORMAL",
|
484
|
-
"unmapped_guest": false,
|
485
|
-
"upstream": true,
|
486
|
-
"virt_only": false,
|
487
|
-
"virt_who": false,
|
488
|
-
}
|
489
|
-
}
|
490
|
-
/>
|
491
|
-
</Col>
|
492
|
-
</Row>
|
493
|
-
</div>
|
494
|
-
</TabPane>
|
495
|
-
<TabPane
|
496
|
-
bsClass="tab-pane"
|
497
|
-
eventKey={2}
|
498
|
-
>
|
499
|
-
<div>
|
500
|
-
<Row
|
501
|
-
bsClass="row"
|
502
|
-
componentClass="div"
|
503
|
-
>
|
504
|
-
<Col
|
505
|
-
bsClass="col"
|
506
|
-
componentClass="div"
|
507
|
-
sm={12}
|
508
|
-
>
|
509
|
-
<SubscriptionDetailEnabledProducts
|
510
|
-
enabledProducts={
|
511
|
-
Object {
|
512
|
-
"results": Array [],
|
513
|
-
"total": 0,
|
514
|
-
}
|
515
|
-
}
|
516
|
-
/>
|
517
|
-
</Col>
|
518
|
-
</Row>
|
519
|
-
</div>
|
520
|
-
</TabPane>
|
521
|
-
</TabContent>
|
522
|
-
</Grid>
|
523
|
-
</LoadingState>
|
524
|
-
</div>
|
525
|
-
</Uncontrolled(TabContainer)>
|
526
|
-
</div>
|
171
|
+
<SubscriptionDetailAssociations
|
172
|
+
subscriptionDetails={
|
173
|
+
Object {
|
174
|
+
"account_number": 1212729,
|
175
|
+
"activation_keys": Array [],
|
176
|
+
"arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
|
177
|
+
"available": 1,
|
178
|
+
"consumed": 0,
|
179
|
+
"contract_number": 10126160,
|
180
|
+
"cores": 4,
|
181
|
+
"cp_id": "4028f92a6317cfbd0163b419377f3bee",
|
182
|
+
"description": "OpenShift Enterprise",
|
183
|
+
"end_date": "2021-12-31 23:59:59 -0500",
|
184
|
+
"error": null,
|
185
|
+
"host_count": 0,
|
186
|
+
"id": 48,
|
187
|
+
"instance_multiplier": 1,
|
188
|
+
"loading": false,
|
189
|
+
"multi_entitlement": true,
|
190
|
+
"name": "OpenShift Employee Subscription",
|
191
|
+
"product_id": "SER0421",
|
192
|
+
"product_name": "OpenShift Employee Subscription",
|
193
|
+
"provided_products": Array [
|
194
|
+
Object {
|
195
|
+
"id": 1,
|
196
|
+
"name": "Red Hat OpenShift Container Platform",
|
197
|
+
},
|
198
|
+
Object {
|
199
|
+
"id": 2,
|
200
|
+
"name": "Oracle Java for RHEL Server",
|
201
|
+
},
|
202
|
+
Object {
|
203
|
+
"id": 3,
|
204
|
+
"name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
|
205
|
+
},
|
206
|
+
Object {
|
207
|
+
"id": 4,
|
208
|
+
"name": "Red Hat CloudForms Beta",
|
209
|
+
},
|
210
|
+
Object {
|
211
|
+
"id": 5,
|
212
|
+
"name": "Red Hat CloudForms",
|
213
|
+
},
|
214
|
+
Object {
|
215
|
+
"id": 6,
|
216
|
+
"name": "Red Hat OpenShift Enterprise Client Tools",
|
217
|
+
},
|
218
|
+
Object {
|
219
|
+
"id": 7,
|
220
|
+
"name": "Red Hat Enterprise Linux Atomic Host",
|
221
|
+
},
|
222
|
+
Object {
|
223
|
+
"id": 8,
|
224
|
+
"name": "JBoss Enterprise Application Platform",
|
225
|
+
},
|
226
|
+
Object {
|
227
|
+
"id": 9,
|
228
|
+
"name": "Red Hat JBoss AMQ Clients",
|
229
|
+
},
|
230
|
+
Object {
|
231
|
+
"id": 10,
|
232
|
+
"name": "Red Hat Beta",
|
233
|
+
},
|
234
|
+
Object {
|
235
|
+
"id": 11,
|
236
|
+
"name": "Red Hat OpenShift Enterprise Infrastructure",
|
237
|
+
},
|
238
|
+
Object {
|
239
|
+
"id": 12,
|
240
|
+
"name": "Red Hat Enterprise Linux Fast Datapath Beta",
|
241
|
+
},
|
242
|
+
Object {
|
243
|
+
"id": 13,
|
244
|
+
"name": "Red Hat Ansible Engine",
|
245
|
+
},
|
246
|
+
Object {
|
247
|
+
"id": 14,
|
248
|
+
"name": "Red Hat OpenShift Enterprise Application Node",
|
249
|
+
},
|
250
|
+
Object {
|
251
|
+
"id": 15,
|
252
|
+
"name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
|
253
|
+
},
|
254
|
+
Object {
|
255
|
+
"id": 16,
|
256
|
+
"name": "Red Hat Software Collections Beta for RHEL Server",
|
257
|
+
},
|
258
|
+
Object {
|
259
|
+
"id": 17,
|
260
|
+
"name": "Red Hat Software Collections for RHEL Server",
|
261
|
+
},
|
262
|
+
Object {
|
263
|
+
"id": 18,
|
264
|
+
"name": "Red Hat Enterprise Linux Fast Datapath",
|
265
|
+
},
|
266
|
+
Object {
|
267
|
+
"id": 19,
|
268
|
+
"name": "Red Hat Enterprise Linux Server",
|
269
|
+
},
|
270
|
+
Object {
|
271
|
+
"id": 20,
|
272
|
+
"name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
|
273
|
+
},
|
274
|
+
Object {
|
275
|
+
"id": 21,
|
276
|
+
"name": "JBoss Enterprise Web Server",
|
277
|
+
},
|
278
|
+
Object {
|
279
|
+
"id": 22,
|
280
|
+
"name": "Red Hat JBoss Core Services",
|
281
|
+
},
|
282
|
+
],
|
283
|
+
"quantity": 1,
|
284
|
+
"ram": null,
|
285
|
+
"sockets": null,
|
286
|
+
"stacking_id": "SER0421",
|
287
|
+
"start_date": "2013-03-01 00:00:00 -0500",
|
288
|
+
"subscription_id": 3,
|
289
|
+
"support_level": "Self-Support",
|
290
|
+
"support_type": "L1-L3",
|
291
|
+
"type": "NORMAL",
|
292
|
+
"unmapped_guest": false,
|
293
|
+
"upstream": true,
|
294
|
+
"virt_only": false,
|
295
|
+
"virt_who": false,
|
296
|
+
}
|
297
|
+
}
|
298
|
+
/>
|
299
|
+
<SubscriptionDetailProducts
|
300
|
+
subscriptionDetails={
|
301
|
+
Object {
|
302
|
+
"account_number": 1212729,
|
303
|
+
"activation_keys": Array [],
|
304
|
+
"arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
|
305
|
+
"available": 1,
|
306
|
+
"consumed": 0,
|
307
|
+
"contract_number": 10126160,
|
308
|
+
"cores": 4,
|
309
|
+
"cp_id": "4028f92a6317cfbd0163b419377f3bee",
|
310
|
+
"description": "OpenShift Enterprise",
|
311
|
+
"end_date": "2021-12-31 23:59:59 -0500",
|
312
|
+
"error": null,
|
313
|
+
"host_count": 0,
|
314
|
+
"id": 48,
|
315
|
+
"instance_multiplier": 1,
|
316
|
+
"loading": false,
|
317
|
+
"multi_entitlement": true,
|
318
|
+
"name": "OpenShift Employee Subscription",
|
319
|
+
"product_id": "SER0421",
|
320
|
+
"product_name": "OpenShift Employee Subscription",
|
321
|
+
"provided_products": Array [
|
322
|
+
Object {
|
323
|
+
"id": 1,
|
324
|
+
"name": "Red Hat OpenShift Container Platform",
|
325
|
+
},
|
326
|
+
Object {
|
327
|
+
"id": 2,
|
328
|
+
"name": "Oracle Java for RHEL Server",
|
329
|
+
},
|
330
|
+
Object {
|
331
|
+
"id": 3,
|
332
|
+
"name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
|
333
|
+
},
|
334
|
+
Object {
|
335
|
+
"id": 4,
|
336
|
+
"name": "Red Hat CloudForms Beta",
|
337
|
+
},
|
338
|
+
Object {
|
339
|
+
"id": 5,
|
340
|
+
"name": "Red Hat CloudForms",
|
341
|
+
},
|
342
|
+
Object {
|
343
|
+
"id": 6,
|
344
|
+
"name": "Red Hat OpenShift Enterprise Client Tools",
|
345
|
+
},
|
346
|
+
Object {
|
347
|
+
"id": 7,
|
348
|
+
"name": "Red Hat Enterprise Linux Atomic Host",
|
349
|
+
},
|
350
|
+
Object {
|
351
|
+
"id": 8,
|
352
|
+
"name": "JBoss Enterprise Application Platform",
|
353
|
+
},
|
354
|
+
Object {
|
355
|
+
"id": 9,
|
356
|
+
"name": "Red Hat JBoss AMQ Clients",
|
357
|
+
},
|
358
|
+
Object {
|
359
|
+
"id": 10,
|
360
|
+
"name": "Red Hat Beta",
|
361
|
+
},
|
362
|
+
Object {
|
363
|
+
"id": 11,
|
364
|
+
"name": "Red Hat OpenShift Enterprise Infrastructure",
|
365
|
+
},
|
366
|
+
Object {
|
367
|
+
"id": 12,
|
368
|
+
"name": "Red Hat Enterprise Linux Fast Datapath Beta",
|
369
|
+
},
|
370
|
+
Object {
|
371
|
+
"id": 13,
|
372
|
+
"name": "Red Hat Ansible Engine",
|
373
|
+
},
|
374
|
+
Object {
|
375
|
+
"id": 14,
|
376
|
+
"name": "Red Hat OpenShift Enterprise Application Node",
|
377
|
+
},
|
378
|
+
Object {
|
379
|
+
"id": 15,
|
380
|
+
"name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
|
381
|
+
},
|
382
|
+
Object {
|
383
|
+
"id": 16,
|
384
|
+
"name": "Red Hat Software Collections Beta for RHEL Server",
|
385
|
+
},
|
386
|
+
Object {
|
387
|
+
"id": 17,
|
388
|
+
"name": "Red Hat Software Collections for RHEL Server",
|
389
|
+
},
|
390
|
+
Object {
|
391
|
+
"id": 18,
|
392
|
+
"name": "Red Hat Enterprise Linux Fast Datapath",
|
393
|
+
},
|
394
|
+
Object {
|
395
|
+
"id": 19,
|
396
|
+
"name": "Red Hat Enterprise Linux Server",
|
397
|
+
},
|
398
|
+
Object {
|
399
|
+
"id": 20,
|
400
|
+
"name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
|
401
|
+
},
|
402
|
+
Object {
|
403
|
+
"id": 21,
|
404
|
+
"name": "JBoss Enterprise Web Server",
|
405
|
+
},
|
406
|
+
Object {
|
407
|
+
"id": 22,
|
408
|
+
"name": "Red Hat JBoss Core Services",
|
409
|
+
},
|
410
|
+
],
|
411
|
+
"quantity": 1,
|
412
|
+
"ram": null,
|
413
|
+
"sockets": null,
|
414
|
+
"stacking_id": "SER0421",
|
415
|
+
"start_date": "2013-03-01 00:00:00 -0500",
|
416
|
+
"subscription_id": 3,
|
417
|
+
"support_level": "Self-Support",
|
418
|
+
"support_type": "L1-L3",
|
419
|
+
"type": "NORMAL",
|
420
|
+
"unmapped_guest": false,
|
421
|
+
"upstream": true,
|
422
|
+
"virt_only": false,
|
423
|
+
"virt_who": false,
|
424
|
+
}
|
425
|
+
}
|
426
|
+
/>
|
427
|
+
</Col>
|
428
|
+
</Row>
|
429
|
+
</LoadingState>
|
430
|
+
</div>
|
431
|
+
</Grid>
|
527
432
|
`;
|